aboutsummaryrefslogtreecommitdiff
path: root/src/taskbar.h
blob: e65600f96f19b3d397c35d0a4f0fb966c462a853 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/**
 * @file taskbar.h
 * @author Joe Wingbermuehle
 * @date 2005-2006
 *
 * @brief Task list tray component.
 *
 */

#ifndef TASKBAR_H
#define TASKBAR_H

struct ClientNode;
struct TimeType;

/*@{*/
void InitializeTaskBar();
void StartupTaskBar();
void ShutdownTaskBar();
void DestroyTaskBar();
/*@}*/

/** Create a new task bar tray component. */
struct TrayComponentType *CreateTaskBar();

/** Add a client to the task bar(s).
 * @param np The client to add.
 */
void AddClientToTaskBar(struct ClientNode *np);

/** Remove a client from the task bar(s).
 * @param np The client to remove.
 */
void RemoveClientFromTaskBar(struct ClientNode *np);

void UpdateTaskBar();

void SignalTaskbar(const struct TimeType *now, int x, int y);

/** Focus the next client in the task bar. */
void FocusNext();

/** Focus the previous client in the task bar. */
void FocusPrevious();

/** Focus the next stacked client. */
void FocusNextStackedCircular();

/** Set the maximum width of task bar items.
 * @param cp The task bar component.
 * @param value The maximum width.
 */
void SetMaxTaskBarItemWidth(struct TrayComponentType *cp, const char *value);

/** Set the insertion mode for task bars.
 * @param mode The insertion mode (either right or left).
 */
void SetTaskBarInsertMode(const char *mode);

/** Update the _NET_CLIENT_LIST property. */
void UpdateNetClientList();

#endif