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