aboutsummaryrefslogtreecommitdiff
path: root/hardinfo2/shell.h
diff options
context:
space:
mode:
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);