2010-08-07 12:05:16 -04:00
|
|
|
/*
|
2011-10-25 16:19:38 -04:00
|
|
|
* vim:ts=4:sw=4:expandtab
|
2010-08-07 12:05:16 -04:00
|
|
|
*
|
2011-10-25 16:19:38 -04:00
|
|
|
* i3bar - an xcb-based status- and ws-bar for i3
|
|
|
|
* © 2010-2011 Axel Wagner and contributors (see also: LICENSE)
|
2010-08-07 12:05:16 -04:00
|
|
|
*
|
|
|
|
*/
|
2010-07-21 19:15:18 -04:00
|
|
|
#ifndef COMMON_H_
|
|
|
|
#define COMMON_H_
|
|
|
|
|
2011-08-16 18:05:05 -04:00
|
|
|
#include <stdbool.h>
|
2012-02-16 18:27:11 -05:00
|
|
|
#include <xcb/xcb.h>
|
|
|
|
#include <xcb/xproto.h>
|
|
|
|
#include "queue.h"
|
2011-08-16 18:05:05 -04:00
|
|
|
|
2010-08-03 21:34:18 -04:00
|
|
|
typedef struct rect_t rect;
|
2010-07-21 19:15:18 -04:00
|
|
|
|
2010-08-03 21:34:18 -04:00
|
|
|
struct ev_loop* main_loop;
|
|
|
|
char *statusline;
|
2011-01-02 19:39:49 -05:00
|
|
|
char *statusline_buffer;
|
2010-07-21 19:15:18 -04:00
|
|
|
|
|
|
|
struct rect_t {
|
2011-08-12 12:43:09 -04:00
|
|
|
int x;
|
|
|
|
int y;
|
|
|
|
int w;
|
|
|
|
int h;
|
2010-07-21 19:15:18 -04:00
|
|
|
};
|
|
|
|
|
2012-02-16 18:27:11 -05:00
|
|
|
/* This data structure represents one JSON dictionary, multiple of these make
|
|
|
|
* up one status line. */
|
|
|
|
struct status_block {
|
|
|
|
char *full_text;
|
|
|
|
|
|
|
|
char *color;
|
|
|
|
|
|
|
|
/* full_text, but converted to UCS-2. This variable is only temporarily
|
|
|
|
* used in refresh_statusline(). */
|
|
|
|
xcb_char2b_t *ucs2_full_text;
|
|
|
|
size_t glyph_count_full_text;
|
|
|
|
|
|
|
|
/* The amount of pixels necessary to render this block. This variable is
|
|
|
|
* only temporarily used in refresh_statusline(). */
|
|
|
|
uint32_t width;
|
|
|
|
|
|
|
|
TAILQ_ENTRY(status_block) blocks;
|
|
|
|
};
|
|
|
|
|
|
|
|
TAILQ_HEAD(statusline_head, status_block) statusline_head;
|
|
|
|
|
2010-08-04 23:09:59 -04:00
|
|
|
#include "child.h"
|
|
|
|
#include "ipc.h"
|
|
|
|
#include "outputs.h"
|
|
|
|
#include "util.h"
|
|
|
|
#include "workspaces.h"
|
2011-08-15 09:57:52 -04:00
|
|
|
#include "trayclients.h"
|
2010-08-04 23:09:59 -04:00
|
|
|
#include "xcb.h"
|
2010-11-04 07:27:10 -04:00
|
|
|
#include "config.h"
|
2011-10-21 14:30:46 -04:00
|
|
|
#include "libi3.h"
|
2010-08-04 23:09:59 -04:00
|
|
|
|
2010-07-21 19:15:18 -04:00
|
|
|
#endif
|