]> Dogcows Code - chaz/tint2/blob - src/taskbar/taskbar.h
add another padding parameter in config file, update documentation and sample config...
[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 int monitor;
20
21 // task parameters
22 int task_width;
23 int task_modulo;
24 int text_width;
25 } Taskbar;
26
27
28 // --------------------------------------------------
29 // global taskbar parameter
30 Area g_taskbar;
31
32
33 Task *task_get_task (Window win);
34 void task_refresh_tasklist ();
35
36 // return 1 if task_width changed
37 int resize_tasks (Taskbar *tskbar);
38
39 void resize_taskbar();
40
41 //void add_taskbar(Area *a);
42
43 #endif
44
This page took 0.035706 seconds and 5 git commands to generate.