1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
|
/*
* HardInfo - Displays System Information
* Copyright (C) 2003-2006 Leandro A. F. Pereira <leandro@linuxmag.com.br>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, version 2.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef __SHELL_H__
#define __SHELL_H__
#include <gtk/gtk.h>
#include <loadgraph.h>
typedef struct _Shell Shell;
typedef struct _ShellTree ShellTree;
typedef struct _ShellInfoTree ShellInfoTree;
typedef struct _ShellModule ShellModule;
typedef struct _ShellModuleEntry ShellModuleEntry;
typedef struct _ShellFieldUpdate ShellFieldUpdate;
typedef enum {
SHELL_PACK_RESIZE = 1 << 0,
SHELL_PACK_SHRINK = 1 << 1
} ShellPackOptions;
typedef enum {
SHELL_VIEW_NORMAL,
SHELL_VIEW_DUAL,
SHELL_VIEW_LOAD_GRAPH,
} ShellViewType;
typedef enum {
TREE_COL_PBUF,
TREE_COL_NAME,
TREE_COL_DATA,
TREE_COL_SEL,
TREE_NCOL
} ShellTreeColumns;
typedef enum {
INFO_TREE_COL_NAME,
INFO_TREE_COL_VALUE,
INFO_TREE_COL_DATA,
INFO_TREE_COL_PBUF,
INFO_TREE_NCOL
} ShellInfoTreeColumns;
struct _Shell {
GtkWidget *window, *vbox;
GtkWidget *status, *progress;
GtkWidget *notebook;
GtkWidget *hpaned, *vpaned;
ShellTree *tree;
ShellInfoTree *info, *moreinfo;
ShellModuleEntry *selected;
LoadGraph *loadgraph;
GtkActionGroup *action_group;
GtkUIManager *ui_manager;
ShellViewType view_type;
gint _pulses;
};
struct _ShellTree {
GtkWidget *scroll;
GtkWidget *view;
GtkTreeModel *model;
GSList *modules;
};
struct _ShellInfoTree {
GtkWidget *scroll;
GtkWidget *view;
GtkTreeModel *model;
};
struct _ShellModule {
gchar *name;
GdkPixbuf *icon;
GModule *dll;
GSList *entries;
};
struct _ShellModuleEntry {
gchar *name;
gint number;
GdkPixbuf *icon;
gboolean selected;
gchar *(*func) (gint entry);
gchar *(*reloadfunc) (gint entry);
gchar *(*fieldfunc) (gchar * entry);
gchar *(*morefunc) (gchar * entry);
};
struct _ShellFieldUpdate {
ShellModuleEntry *entry;
gchar *field_name;
gboolean loadgraph;
};
void shell_init(void);
void shell_do_reload(void);
Shell *shell_get_main_shell();
void shell_action_set_enabled(const gchar *action_name,
gboolean setting);
gboolean shell_action_get_active(const gchar *action_name);
void shell_action_set_active(const gchar *action_name,
gboolean setting);
void shell_action_set_property(const gchar *action_name,
const gchar *property,
gboolean setting);
void shell_set_side_pane_visible(gboolean setting);
void shell_ui_manager_set_visible(const gchar *path,
gboolean setting);
void shell_status_update(const gchar *message);
void shell_status_pulse(void);
void shell_status_set_percentage(gint percentage);
void shell_status_set_enabled(gboolean setting);
void shell_view_set_enabled(gboolean setting);
#endif /* __SHELL_H__ */
|