]> Dogcows Code - chaz/tint2/blob - src/panel.h
*fix* better internal urgent task handling
[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 extern int panel_mode;
41 extern int wm_menu;
42 extern int panel_dock;
43
44 //panel position
45 enum { LEFT=0x01, RIGHT=0x02, CENTER=0X04, TOP=0X08, BOTTOM=0x10 };
46 extern int panel_position;
47 extern int panel_horizontal;
48
49 extern int panel_refresh;
50
51 extern Task *task_active;
52 extern Task *task_drag;
53 extern int max_tick_urgent;
54
55 extern Imlib_Image default_icon;
56
57
58 // tint2 use one panel per monitor and one taskbar per desktop.
59 typedef struct {
60 // always start with area
61 // area.list own all objects of the panel according to config file
62 Area area;
63
64 // --------------------------------------------------
65 // panel
66 Window main_win;
67 Pixmap temp_pmap;
68
69 // position relative to root window
70 int posx, posy;
71 int marginx, marginy;
72 int pourcentx, pourcenty;
73 // location of the panel (monitor number)
74 int monitor;
75
76 // --------------------------------------------------
77 // task and taskbar parameter per panel
78 Area g_taskbar;
79 Global_task g_task;
80
81 // --------------------------------------------------
82 // taskbar point to the first taskbar in panel.area.list.
83 // number of tasbar == nb_desktop. taskbar[i] is for desktop(i).
84 // taskbar[i] is used to loop over taskbar,
85 // while panel->area.list is used to loop over all panel's objects
86 Taskbar *taskbar;
87 int nb_desktop;
88
89 // --------------------------------------------------
90 // clock
91 Clock clock;
92
93 // --------------------------------------------------
94 // battery
95 #ifdef ENABLE_BATTERY
96 Battery battery;
97 #endif
98 } Panel;
99
100
101 extern Panel panel_config;
102 extern Panel *panel1;
103 extern int nb_panel;
104
105 // realloc panels according to number of monitor
106 // use panel_config as default value
107 void init_panel();
108
109 void init_panel_size_and_position(Panel *panel);
110 void cleanup_panel();
111 void resize_panel(void *obj);
112
113 void set_panel_properties(Panel *p);
114 void visible_object();
115
116 // draw background panel
117 void set_panel_background(Panel *p);
118
119 // detect witch panel
120 Panel *get_panel(Window win);
121
122 Taskbar *click_taskbar (Panel *panel, int x, int y);
123 Task *click_task (Panel *panel, int x, int y);
124 int click_padding(Panel *panel, int x, int y);
125 int click_clock(Panel *panel, int x, int y);
126 Area* click_area(Panel *panel, int x, int y);
127
128 #endif
This page took 0.041037 seconds and 5 git commands to generate.