]> git.sur5r.net Git - i3/i3/blob - i3bar/include/trayclients.h
normalize file headers across **/*.{h,c}
[i3/i3] / i3bar / include / trayclients.h
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3bar - an xcb-based status- and ws-bar for i3
5  * © 2010-2011 Axel Wagner and contributors (see also: LICENSE)
6  *
7  */
8 #ifndef TRAYCLIENT_H_
9 #define TRAYCLIENT_H_
10
11 #include "common.h"
12
13 typedef struct trayclient trayclient;
14
15 TAILQ_HEAD(tc_head, trayclient);
16
17 struct trayclient {
18     xcb_window_t       win;         /* The window ID of the tray client */
19     bool               mapped;      /* Whether this window is mapped */
20     int                xe_version;  /* The XEMBED version supported by the client */
21
22     TAILQ_ENTRY(trayclient) tailq;  /* Pointer for the TAILQ-Macro */
23 };
24
25 #endif