]> Dogcows Code - chaz/tint2/blob - src/panel.h
big change : panel_monitor = all will draw one panel per monitor, panel_size accept...
[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
24
25 extern int signal_pending;
26 // --------------------------------------------------
27 // mouse events
28 extern int mouse_middle;
29 extern int mouse_right;
30 extern int mouse_scroll_up;
31 extern int mouse_scroll_down;
32
33 //panel mode
34 enum { SINGLE_DESKTOP=0, MULTI_DESKTOP, SINGLE_MONITOR };
35 extern int panel_mode;
36
37 //panel position
38 enum { LEFT=0x01, RIGHT=0x02, CENTER=0X04, TOP=0X08, BOTTOM=0x10 };
39 extern int panel_position;
40
41 extern int panel_refresh;
42
43 extern Task *task_active;
44 extern Task *task_drag;
45
46
47 typedef struct {
48 // always start with area
49 Area area;
50
51 // --------------------------------------------------
52 // panel
53 Window main_win;
54 Pixmap root_pmap;
55 // position relative to root window
56 int posx, posy;
57 int marginx, marginy;
58 float initial_width, initial_height;
59 int pourcentx, pourcenty;
60 // location of the panel (monitor number)
61 int monitor;
62
63 // --------------------------------------------------
64 // task annd taskbar parameter per panel
65 Area g_taskbar;
66 Global_task g_task;
67
68 // --------------------------------------------------
69 // taskbar point to the first taskbar in panel.area.list.
70 // number of tasbar == nb_desktop
71 Taskbar *taskbar;
72 int nb_desktop;
73
74 // --------------------------------------------------
75 // clock
76 Clock clock;
77
78 // --------------------------------------------------
79 // systray
80 Systraybar systraybar;
81 } Panel;
82
83
84 extern Panel *panel1;
85 extern int nb_panel;
86
87
88 void init_panel();
89 void cleanup_panel();
90 void visual_refresh(Panel *p);
91 void set_panel_properties(Panel *p);
92 void visible_object();
93
94 // draw background panel
95 void set_panel_background(Panel *p);
96
97 Panel *get_panel(Window win);
98
99 #endif
100
This page took 0.042082 seconds and 5 git commands to generate.