]> Dogcows Code - chaz/tint2/blob - src/panel.h
*add* more task states (normal, active, iconified, urgent), with each an own backgrou...
[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
53 //panel autohide
54 enum { STRUT_MINIMUM, STRUT_FOLLOW_SIZE };
55 extern int panel_autohide;
56 extern int panel_autohide_show_timeout;
57 extern int panel_autohide_hide_timeout;
58 extern int panel_autohide_height; // for vertical panels this is of course the width
59 extern int panel_strut_policy;
60
61 extern Task *task_active;
62 extern Task *task_drag;
63 extern int max_tick_urgent;
64
65 extern GArray* backgrounds;
66
67 extern Imlib_Image default_icon;
68
69
70 // tint2 use one panel per monitor and one taskbar per desktop.
71 typedef struct {
72 // always start with area
73 // area.list own all objects of the panel according to config file
74 Area area;
75
76 // --------------------------------------------------
77 // panel
78 Window main_win;
79 Pixmap temp_pmap;
80
81 // position relative to root window
82 int posx, posy;
83 int marginx, marginy;
84 int pourcentx, pourcenty;
85 // location of the panel (monitor number)
86 int monitor;
87
88 // --------------------------------------------------
89 // task and taskbar parameter per panel
90 Global_taskbar g_taskbar;
91 Global_task g_task;
92
93 // --------------------------------------------------
94 // taskbar point to the first taskbar in panel.area.list.
95 // number of tasbar == nb_desktop. taskbar[i] is for desktop(i).
96 // taskbar[i] is used to loop over taskbar,
97 // while panel->area.list is used to loop over all panel's objects
98 Taskbar *taskbar;
99 int nb_desktop;
100
101 // --------------------------------------------------
102 // clock
103 Clock clock;
104
105 // --------------------------------------------------
106 // battery
107 #ifdef ENABLE_BATTERY
108 Battery battery;
109 #endif
110
111 // autohide
112 int is_hidden;
113 int hidden_width, hidden_height;
114 Pixmap hidden_pixmap;
115 timeout* autohide_timeout;
116 } Panel;
117
118
119 extern Panel panel_config;
120 extern Panel *panel1;
121 extern int nb_panel;
122
123 // realloc panels according to number of monitor
124 // use panel_config as default value
125 void init_panel();
126
127 void init_panel_size_and_position(Panel *panel);
128 void cleanup_panel();
129 void resize_panel(void *obj);
130
131 void set_panel_properties(Panel *p);
132 void visible_object();
133
134 // draw background panel
135 void set_panel_background(Panel *p);
136
137 // detect witch panel
138 Panel *get_panel(Window win);
139
140 Taskbar *click_taskbar (Panel *panel, int x, int y);
141 Task *click_task (Panel *panel, int x, int y);
142 int click_padding(Panel *panel, int x, int y);
143 int click_clock(Panel *panel, int x, int y);
144 Area* click_area(Panel *panel, int x, int y);
145
146 void autohide_trigger_show();
147 void autohide_trigger_hide();
148
149 #endif
This page took 0.041582 seconds and 5 git commands to generate.