source: trunk/third/gnome-core/panel/panel_config_global.h @ 17167

Revision 17167, 1.7 KB checked in by ghudson, 23 years ago (diff)
Merge with gnome-core 1.4.0.6.
Line 
1#include "panel-widget.h"
2#include "panel-types.h"
3
4#ifndef PANEL_CONFIG_GLOBAL_H
5#define PANEL_CONFIG_GLOBAL_H
6
7typedef struct _GlobalConfig GlobalConfig;
8struct _GlobalConfig {
9        int auto_hide_step_size;
10        int explicit_hide_step_size;
11        int drawer_step_size;
12        int minimized_size;
13        int minimize_delay;
14        int maximize_delay;
15        gboolean tooltips_enabled;
16        /*gboolean show_small_icons;*/
17        gboolean show_dot_buttons;
18        gboolean show_menu_titles;
19        gboolean hungry_menus;
20        gboolean off_panel_popups;
21        PanelMovementType movement_type;
22        gboolean disable_animations;
23        int applet_padding;
24        int applet_border_padding;
25        gboolean autoraise;
26        gboolean keep_bottom;
27        gboolean normal_layer;
28        gboolean drawer_auto_close;
29        gboolean simple_movement;
30        gboolean tiles_enabled[LAST_TILE];
31        char *tile_up[LAST_TILE];
32        char *tile_down[LAST_TILE];
33        int tile_border[LAST_TILE];
34        int tile_depth[LAST_TILE];
35        gboolean hide_panel_frame;
36        gboolean tile_when_over;
37        gboolean saturate_when_over;
38        gboolean confirm_panel_remove;
39        gboolean keys_enabled;
40        char *menu_key;
41          guint menu_keysym;  /* these are not really properties but */
42          guint menu_state;   /* from the above */
43        char *run_key;
44          guint run_keysym;   /* these are not really properties but */
45          guint run_state;    /* from the above */
46        char *screenshot_key;
47          guint screenshot_keysym;   /* these are not really properties but */
48          guint screenshot_state;    /* from the above */
49        char *window_screenshot_key;
50          guint window_screenshot_keysym; /* these are not really properties */
51          guint window_screenshot_state;  /* but from the above */
52        int menu_flags;
53        gboolean use_large_icons;
54        gboolean merge_menus;
55        gboolean fast_button_scaling;
56        gboolean avoid_collisions;
57        gboolean menu_check;
58};
59
60#endif /* PANEL_CONFIG_GLOBAL_H */
Note: See TracBrowser for help on using the repository browser.