aboutsummaryrefslogtreecommitdiff
path: root/hardinfo2/shell.h
diff options
context:
space:
mode:
authorLeandro A. F. Pereira <leandro@hardinfo.org>2007-01-06 12:47:33 +0000
committerLeandro A. F. Pereira <leandro@hardinfo.org>2007-01-06 12:47:33 +0000
commit5862c823a3dca7a95027134b05b731d46d0db1d7 (patch)
treed02cb0811f08442cb5fa6eaeeead159f69b1ac06 /hardinfo2/shell.h
parentbe3013df51de306e4494419c595727569ad2c284 (diff)
Let the fun begin! :)
Diffstat (limited to 'hardinfo2/shell.h')
-rw-r--r--hardinfo2/shell.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/hardinfo2/shell.h b/hardinfo2/shell.h
index ff096e5f..a90ccf8f 100644
--- a/hardinfo2/shell.h
+++ b/hardinfo2/shell.h
@@ -24,6 +24,7 @@
typedef struct _Shell Shell;
typedef struct _ShellTree ShellTree;
typedef struct _ShellInfoTree ShellInfoTree;
+typedef struct _ShellNote ShellNote;
typedef struct _ShellModule ShellModule;
typedef struct _ShellModuleMethod ShellModuleMethod;
@@ -75,6 +76,7 @@ struct _Shell {
ShellTree *tree;
ShellInfoTree *info, *moreinfo;
ShellModuleEntry *selected;
+ ShellNote *note;
LoadGraph *loadgraph;
GtkActionGroup *action_group;
@@ -104,6 +106,11 @@ struct _ShellInfoTree {
GtkTreeViewColumn *col_progress, *col_value;
};
+struct _ShellNote {
+ GtkWidget *frame;
+ GtkWidget *label;
+};
+
struct _ShellModule {
gchar *name;
GdkPixbuf *icon;
@@ -154,6 +161,7 @@ void shell_action_set_property(const gchar *action_name,
gboolean setting);
void shell_set_side_pane_visible(gboolean setting);
+void shell_set_note_from_entry(ShellModuleEntry *entry);
void shell_ui_manager_set_visible(const gchar *path,
gboolean setting);