]> Dogcows Code - chaz/tint2/blob - src/panel.h
play with vertical panel
[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
36 //panel mode
37 enum { SINGLE_DESKTOP=0, MULTI_DESKTOP };
38 extern int panel_mode;
39 extern int wm_menu;
40
41 //panel position
42 enum { LEFT=0x01, RIGHT=0x02, CENTER=0X04, TOP=0X08, BOTTOM=0x10 };
43 extern int panel_position;
44 extern int panel_horizontal;
45
46 extern int panel_refresh;
47
48 extern Task *task_active;
49 extern Task *task_drag;
50 extern Task *task_urgent;
51 extern int tick_urgent;
52 extern int max_tick_urgent;
53
54
55 typedef struct {
56 // always start with area
57 // area.list own all objects of the panel according to config file
58 Area area;
59
60 // --------------------------------------------------
61 // panel
62 Window main_win;
63 Pixmap temp_pmap;
64
65 // position relative to root window
66 int posx, posy;
67 int marginx, marginy;
68 float initial_width, initial_height;
69 int pourcentx, pourcenty;
70 // location of the panel (monitor number)
71 int monitor;
72
73 // --------------------------------------------------
74 // task and taskbar parameter per panel
75 Area g_taskbar;
76 Global_task g_task;
77
78 // --------------------------------------------------
79 // taskbar point to the first taskbar in panel.area.list.
80 // number of tasbar == nb_desktop
81 Taskbar *taskbar;
82 int nb_desktop;
83
84 // --------------------------------------------------
85 // clock
86 Clock clock;
87
88 // --------------------------------------------------
89 // battery
90 #ifdef ENABLE_BATTERY
91 Battery battery;
92 #endif
93 } Panel;
94
95
96 extern Panel *panel1;
97 extern int nb_panel;
98
99
100 void init_panel();
101 void cleanup_panel();
102 void resize_panel(void *obj);
103
104 void set_panel_properties(Panel *p);
105 void visible_object();
106
107 // draw background panel
108 void set_panel_background(Panel *p);
109
110 // detect witch panel
111 Panel *get_panel(Window win);
112
113 #endif
114
This page took 0.039562 seconds and 5 git commands to generate.