]> Dogcows Code - chaz/tint2/blob - src/panel.h
SIGUSR1 does now a full restat of tint2
[chaz/tint2] / src / panel.h
1 /**************************************************************************
2 * Copyright (C) 2008 Pål Staurland (staura@gmail.com)
3 * Modified (C) 2008/2009 thierry lorthiois (lorthiois@bbsoft.fr)
4 *
5 * panel :
6 * - draw panel and all objects according to panel_layout
7 *
8 *
9 **************************************************************************/
10
11 #ifndef PANEL_H
12 #define PANEL_H
13
14 #include <pango/pangocairo.h>
15 #include <sys/time.h>
16
17 #include "common.h"
18 #include "clock.h"
19 #include "task.h"
20 #include "taskbar.h"
21 #include "systraybar.h"
22
23 #ifdef ENABLE_BATTERY
24 #include "battery.h"
25 #endif
26
27
28 extern int signal_pending;
29 // --------------------------------------------------
30 // mouse events
31 extern int mouse_middle;
32 extern int mouse_right;
33 extern int mouse_scroll_up;
34 extern int mouse_scroll_down;
35 extern int mouse_tilt_left;
36 extern int mouse_tilt_right;
37
38 //panel mode
39 enum { SINGLE_DESKTOP=0, MULTI_DESKTOP };
40 enum { BOTTOM_LAYER, NORMAL_LAYER, TOP_LAYER };
41 extern int panel_mode;
42 extern int wm_menu;
43 extern int panel_dock;
44 extern int panel_layer;
45
46 //panel position
47 enum { LEFT=0x01, RIGHT=0x02, CENTER=0X04, TOP=0X08, BOTTOM=0x10 };
48 extern int panel_position;
49 extern int panel_horizontal;
50
51 extern int panel_refresh;
52 extern int task_dragged;
53
54 //panel autohide
55 enum { STRUT_MINIMUM, STRUT_FOLLOW_SIZE, STRUT_NONE };
56 extern int panel_autohide;
57 extern int panel_autohide_show_timeout;
58 extern int panel_autohide_hide_timeout;
59 extern int panel_autohide_height; // for vertical panels this is of course the width
60 extern int panel_strut_policy;
61
62 extern Task *task_active;
63 extern Task *task_drag;
64 extern int max_tick_urgent;
65
66 extern GArray* backgrounds;
67
68 extern Imlib_Image default_icon;
69
70
71 // tint2 use one panel per monitor and one taskbar per desktop.
72 typedef struct {
73 // always start with area
74 // area.list own all objects of the panel according to config file
75 Area area;
76
77 // --------------------------------------------------
78 // panel
79 Window main_win;
80 Pixmap temp_pmap;
81
82 // position relative to root window
83 int posx, posy;
84 int marginx, marginy;
85 int pourcentx, pourcenty;
86 // location of the panel (monitor number)
87 int monitor;
88
89 // --------------------------------------------------
90 // task and taskbar parameter per panel
91 Global_taskbar g_taskbar;
92 Global_task g_task;
93
94 // --------------------------------------------------
95 // taskbar point to the first taskbar in panel.area.list.
96 // number of tasbar == nb_desktop. taskbar[i] is for desktop(i).
97 // taskbar[i] is used to loop over taskbar,
98 // while panel->area.list is used to loop over all panel's objects
99 Taskbar *taskbar;
100 int nb_desktop;
101
102 // --------------------------------------------------
103 // clock
104 Clock clock;
105
106 // --------------------------------------------------
107 // battery
108 #ifdef ENABLE_BATTERY
109 Battery battery;
110 #endif
111
112 // autohide
113 int is_hidden;
114 int hidden_width, hidden_height;
115 Pixmap hidden_pixmap;
116 timeout* autohide_timeout;
117 } Panel;
118
119
120 extern Panel panel_config;
121 extern Panel *panel1;
122 extern int nb_panel;
123
124
125 // default global data
126 void default_panel();
127
128 // freed memory
129 void cleanup_panel();
130
131 // realloc panels according to number of monitor
132 // use panel_config as default value
133 void init_panel();
134
135 void init_panel_size_and_position(Panel *panel);
136 void resize_panel(void *obj);
137
138 void set_panel_properties(Panel *p);
139 void visible_object();
140
141 // draw background panel
142 void set_panel_background(Panel *p);
143
144 // detect witch panel
145 Panel *get_panel(Window win);
146
147 Taskbar *click_taskbar (Panel *panel, int x, int y);
148 Task *click_task (Panel *panel, int x, int y);
149 int click_padding(Panel *panel, int x, int y);
150 int click_clock(Panel *panel, int x, int y);
151 Area* click_area(Panel *panel, int x, int y);
152
153 void autohide_trigger_show();
154 void autohide_trigger_hide();
155
156 #endif
This page took 0.049211 seconds and 5 git commands to generate.