]> Dogcows Code - chaz/tint2/blob - src/panel.h
add comment
[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 #include "launcher.h"
23
24 #ifdef ENABLE_BATTERY
25 #include "battery.h"
26 #endif
27
28
29 extern int signal_pending;
30 // --------------------------------------------------
31 // mouse events
32 extern int mouse_middle;
33 extern int mouse_right;
34 extern int mouse_scroll_up;
35 extern int mouse_scroll_down;
36 extern int mouse_tilt_left;
37 extern int mouse_tilt_right;
38
39 //panel mode
40 enum { SINGLE_DESKTOP=0, MULTI_DESKTOP };
41 enum { BOTTOM_LAYER, NORMAL_LAYER, TOP_LAYER };
42 extern int panel_mode;
43 extern int wm_menu;
44 extern int panel_dock;
45 extern int panel_layer;
46
47 //panel position
48 enum { LEFT=0x01, RIGHT=0x02, CENTER=0X04, TOP=0X08, BOTTOM=0x10 };
49 extern int panel_position;
50 extern int panel_horizontal;
51
52 extern int panel_refresh;
53 extern int task_dragged;
54
55 //panel autohide
56 enum { STRUT_MINIMUM, STRUT_FOLLOW_SIZE, STRUT_NONE };
57 extern int panel_autohide;
58 extern int panel_autohide_show_timeout;
59 extern int panel_autohide_hide_timeout;
60 extern int panel_autohide_height; // for vertical panels this is of course the width
61 extern int panel_strut_policy;
62
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 Launcher launcher;
112
113 // autohide
114 int is_hidden;
115 int hidden_width, hidden_height;
116 Pixmap hidden_pixmap;
117 timeout* autohide_timeout;
118 } Panel;
119
120
121 extern Panel panel_config;
122 extern Panel *panel1;
123 extern int nb_panel;
124
125
126 // default global data
127 void default_panel();
128
129 // freed memory
130 void cleanup_panel();
131
132 // realloc panels according to number of monitor
133 // use panel_config as default value
134 void init_panel();
135
136 void init_panel_size_and_position(Panel *panel);
137 int resize_panel(void *obj);
138
139 void set_panel_properties(Panel *p);
140 void visible_object();
141
142 // draw background panel
143 void set_panel_background(Panel *p);
144
145 // detect witch panel
146 Panel *get_panel(Window win);
147
148 Taskbar *click_taskbar (Panel *panel, int x, int y);
149 Task *click_task (Panel *panel, int x, int y);
150 Launcher *click_launcher (Panel *panel, int x, int y);
151 LauncherIcon *click_launcher_icon (Panel *panel, int x, int y);
152 int click_padding(Panel *panel, int x, int y);
153 int click_clock(Panel *panel, int x, int y);
154 Area* click_area(Panel *panel, int x, int y);
155
156 void autohide_show(void* p);
157 void autohide_hide(void* p);
158 void autohide_trigger_show(Panel* p);
159 void autohide_trigger_hide(Panel* p);
160
161 #endif
This page took 0.038269 seconds and 4 git commands to generate.