2011-08-15 15:57:52 +02:00
|
|
|
/*
|
2011-10-25 22:19:38 +02:00
|
|
|
* vim:ts=4:sw=4:expandtab
|
2011-08-15 15:57:52 +02:00
|
|
|
*
|
2011-10-25 22:19:38 +02:00
|
|
|
* i3bar - an xcb-based status- and ws-bar for i3
|
2015-04-04 02:17:56 +02:00
|
|
|
* © 2010 Axel Wagner and contributors (see also: LICENSE)
|
2011-08-15 15:57:52 +02:00
|
|
|
*
|
|
|
|
*/
|
2013-12-29 03:11:50 +01:00
|
|
|
#pragma once
|
2011-08-15 15:57:52 +02:00
|
|
|
|
|
|
|
#include "common.h"
|
|
|
|
|
|
|
|
typedef struct trayclient trayclient;
|
|
|
|
|
|
|
|
TAILQ_HEAD(tc_head, trayclient);
|
|
|
|
|
|
|
|
struct trayclient {
|
2014-06-19 11:20:32 +02:00
|
|
|
xcb_window_t win; /* The window ID of the tray client */
|
|
|
|
bool mapped; /* Whether this window is mapped */
|
|
|
|
int xe_version; /* The XEMBED version supported by the client */
|
2011-08-15 15:57:52 +02:00
|
|
|
|
2016-11-08 22:46:43 +01:00
|
|
|
TAILQ_ENTRY(trayclient)
|
|
|
|
tailq; /* Pointer for the TAILQ-Macro */
|
2011-08-15 15:57:52 +02:00
|
|
|
};
|