2010-08-07 20:05:16 +04:00
|
|
|
/*
|
2011-10-26 00:19:38 +04:00
|
|
|
* vim:ts=4:sw=4:expandtab
|
2010-08-07 20:05:16 +04:00
|
|
|
*
|
2011-10-26 00: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 20:05:16 +04:00
|
|
|
*
|
|
|
|
*/
|
2010-07-22 03:15:18 +04:00
|
|
|
#ifndef COMMON_H_
|
|
|
|
#define COMMON_H_
|
|
|
|
|
2011-08-17 02:05:05 +04:00
|
|
|
#include <stdbool.h>
|
2012-02-17 03:27:11 +04:00
|
|
|
#include <xcb/xcb.h>
|
|
|
|
#include <xcb/xproto.h>
|
2012-08-07 21:46:23 +04:00
|
|
|
#include "libi3.h"
|
2012-02-17 03:27:11 +04:00
|
|
|
#include "queue.h"
|
2011-08-17 02:05:05 +04:00
|
|
|
|
2010-08-04 05:34:18 +04:00
|
|
|
typedef struct rect_t rect;
|
2010-07-22 03:15:18 +04:00
|
|
|
|
2010-08-04 05:34:18 +04:00
|
|
|
struct ev_loop* main_loop;
|
|
|
|
char *statusline;
|
2011-01-03 03:39:49 +03:00
|
|
|
char *statusline_buffer;
|
2010-07-22 03:15:18 +04:00
|
|
|
|
|
|
|
struct rect_t {
|
2011-08-12 20:43:09 +04:00
|
|
|
int x;
|
|
|
|
int y;
|
|
|
|
int w;
|
|
|
|
int h;
|
2010-07-22 03:15:18 +04:00
|
|
|
};
|
|
|
|
|
2012-12-02 16:20:06 +04:00
|
|
|
typedef enum {
|
|
|
|
ALIGN_LEFT,
|
|
|
|
ALIGN_CENTER,
|
|
|
|
ALIGN_RIGHT
|
|
|
|
} blockalign_t;
|
|
|
|
|
2012-02-17 03:27:11 +04:00
|
|
|
/* This data structure represents one JSON dictionary, multiple of these make
|
|
|
|
* up one status line. */
|
|
|
|
struct status_block {
|
2012-08-07 21:46:23 +04:00
|
|
|
i3String *full_text;
|
2012-02-17 03:27:11 +04:00
|
|
|
|
|
|
|
char *color;
|
2012-12-02 16:20:06 +04:00
|
|
|
uint32_t min_width;
|
|
|
|
blockalign_t align;
|
2012-02-17 03:27:11 +04:00
|
|
|
|
2012-08-21 15:52:15 +04:00
|
|
|
bool urgent;
|
|
|
|
|
2012-12-02 16:20:06 +04:00
|
|
|
/* The amount of pixels necessary to render this block. These variables are
|
2012-02-17 03:27:11 +04:00
|
|
|
* only temporarily used in refresh_statusline(). */
|
|
|
|
uint32_t width;
|
2012-12-02 16:20:06 +04:00
|
|
|
uint32_t x_offset;
|
|
|
|
uint32_t x_append;
|
2012-02-17 03:27:11 +04:00
|
|
|
|
|
|
|
TAILQ_ENTRY(status_block) blocks;
|
|
|
|
};
|
|
|
|
|
|
|
|
TAILQ_HEAD(statusline_head, status_block) statusline_head;
|
|
|
|
|
2010-08-05 07:09:59 +04:00
|
|
|
#include "child.h"
|
|
|
|
#include "ipc.h"
|
|
|
|
#include "outputs.h"
|
|
|
|
#include "util.h"
|
|
|
|
#include "workspaces.h"
|
2012-11-10 16:41:39 +04:00
|
|
|
#include "mode.h"
|
2011-08-15 17:57:52 +04:00
|
|
|
#include "trayclients.h"
|
2010-08-05 07:09:59 +04:00
|
|
|
#include "xcb.h"
|
2010-11-04 14:27:10 +03:00
|
|
|
#include "config.h"
|
2011-10-21 22:30:46 +04:00
|
|
|
#include "libi3.h"
|
2012-08-22 19:02:02 +04:00
|
|
|
#include "parse_json_header.h"
|
2010-08-05 07:09:59 +04:00
|
|
|
|
2010-07-22 03:15:18 +04:00
|
|
|
#endif
|