]> Dogcows Code - chaz/tint2/blob - src/taskbar/taskbar.h
New import
[chaz/tint2] / src / taskbar / taskbar.h
1
2 #ifndef TASKBAR_H
3 #define TASKBAR_H
4
5 #include "task.h"
6
7
8 // --------------------------------------------------
9 // taskbar parameter
10 typedef struct {
11 // --------------------------------------------------
12 // always start with area
13 Area area;
14
15 int desktop;
16 int monitor;
17
18 // task parameters
19 int task_width;
20 int task_modulo;
21 int text_width;
22 } Taskbar;
23
24
25 // --------------------------------------------------
26 // global taskbar parameter
27 Area g_taskbar;
28
29
30 Task *task_get_task (Window win);
31 void task_refresh_tasklist ();
32
33 // return 1 if task_width changed
34 int resize_tasks (Taskbar *tskbar);
35
36 //void add_taskbar(Area *a);
37
38 #endif
39
This page took 0.034517 seconds and 5 git commands to generate.