]> Dogcows Code - chaz/tint2/blob - src/taskbar/taskbar.h
tint2 looks good for me. if you see bugs, report it.
[chaz/tint2] / src / taskbar / taskbar.h
1 /**************************************************************************
2 * Copyright (C) 2008 thierry lorthiois (lorthiois@bbsoft.fr)
3 *
4 * taskbar
5 *
6 **************************************************************************/
7
8 #ifndef TASKBAR_H
9 #define TASKBAR_H
10
11 #include "task.h"
12
13
14 typedef struct {
15 // always start with area
16 Area area;
17
18 int desktop;
19
20 // task parameters
21 int task_width;
22 int task_modulo;
23 int text_width;
24 } Taskbar;
25
26
27
28 void init_taskbar();
29 void cleanup_taskbar();
30
31 Task *task_get_task (Window win);
32 void task_refresh_tasklist ();
33
34 void resize_taskbar(void *obj);
35
36
37 #endif
38
This page took 0.031386 seconds and 5 git commands to generate.