Revision 15821,
1.1 KB
checked in by ghudson, 24 years ago
(diff) |
This commit was generated by cvs2svn to compensate for changes in r15820,
which included commits to RCS files with non-trunk default branches.
|
Line | |
---|
1 | #ifndef PANEL_H |
---|
2 | #define PANEL_H |
---|
3 | |
---|
4 | #include <gtk/gtk.h> |
---|
5 | #include "panel-widget.h" |
---|
6 | #include "applet.h" |
---|
7 | |
---|
8 | BEGIN_GNOME_DECLS |
---|
9 | |
---|
10 | typedef struct _PanelData PanelData; |
---|
11 | struct _PanelData { |
---|
12 | PanelType type; |
---|
13 | GtkWidget *panel; |
---|
14 | GtkWidget *menu; |
---|
15 | int menu_age; |
---|
16 | }; |
---|
17 | |
---|
18 | void freeze_changes (AppletInfo *info); |
---|
19 | void thaw_changes (AppletInfo *info); |
---|
20 | |
---|
21 | void orientation_change(AppletInfo *info, PanelWidget *panel); |
---|
22 | void size_change(AppletInfo *info, PanelWidget *panel); |
---|
23 | void back_change(AppletInfo *info, PanelWidget *panel); |
---|
24 | |
---|
25 | PanelOrientType get_applet_orient(PanelWidget *panel); |
---|
26 | |
---|
27 | void panel_setup(GtkWidget *panel); |
---|
28 | void basep_pos_connect_signals (BasePWidget *basep); |
---|
29 | |
---|
30 | /*send state change to all the panels*/ |
---|
31 | void send_state_change(void); |
---|
32 | |
---|
33 | void panel_freeze_changes(PanelWidget *panel); |
---|
34 | |
---|
35 | void panel_thaw_changes(PanelWidget *panel); |
---|
36 | |
---|
37 | GtkWidget * make_popup_panel_menu (PanelWidget *panel); |
---|
38 | |
---|
39 | PanelData * panel_data_by_id (int id); |
---|
40 | void panel_set_id (GtkWidget *widget, int id); |
---|
41 | |
---|
42 | void status_unparent (GtkWidget *widget); |
---|
43 | |
---|
44 | |
---|
45 | |
---|
46 | #define get_panel_parent(appletw) \ |
---|
47 | (PANEL_WIDGET(GTK_WIDGET(appletw)->parent)->panel_parent) |
---|
48 | |
---|
49 | |
---|
50 | END_GNOME_DECLS |
---|
51 | |
---|
52 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.