2010-08-07 18:05:16 +02:00
|
|
|
/*
|
2011-10-25 22:19:38 +02:00
|
|
|
* vim:ts=4:sw=4:expandtab
|
2010-08-07 18:05:16 +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)
|
2010-08-07 18:05:16 +02:00
|
|
|
*
|
|
|
|
*/
|
2013-12-29 03:11:50 +01:00
|
|
|
#pragma once
|
2010-07-22 01:15:18 +02:00
|
|
|
|
2011-08-17 00:05:05 +02:00
|
|
|
#include <stdbool.h>
|
2012-02-17 00:27:11 +01:00
|
|
|
#include <xcb/xcb.h>
|
|
|
|
#include <xcb/xproto.h>
|
2012-08-07 19:46:23 +02:00
|
|
|
#include "libi3.h"
|
2012-02-17 00:27:11 +01:00
|
|
|
#include "queue.h"
|
2011-08-17 00:05:05 +02:00
|
|
|
|
2010-08-04 03:34:18 +02:00
|
|
|
typedef struct rect_t rect;
|
2010-07-22 01:15:18 +02:00
|
|
|
|
2014-06-19 11:20:32 +02:00
|
|
|
struct ev_loop *main_loop;
|
2010-07-22 01:15:18 +02:00
|
|
|
|
|
|
|
struct rect_t {
|
2011-08-12 18:43:09 +02:00
|
|
|
int x;
|
|
|
|
int y;
|
|
|
|
int w;
|
|
|
|
int h;
|
2010-07-22 01:15:18 +02:00
|
|
|
};
|
|
|
|
|
2012-12-02 13:20:06 +01:00
|
|
|
typedef enum {
|
2014-12-02 21:38:30 +01:00
|
|
|
/* First value to make it the default. */
|
2012-12-02 13:20:06 +01:00
|
|
|
ALIGN_LEFT,
|
|
|
|
ALIGN_CENTER,
|
|
|
|
ALIGN_RIGHT
|
|
|
|
} blockalign_t;
|
|
|
|
|
2012-02-17 00:27:11 +01:00
|
|
|
/* This data structure represents one JSON dictionary, multiple of these make
|
|
|
|
* up one status line. */
|
|
|
|
struct status_block {
|
2012-08-07 19:46:23 +02:00
|
|
|
i3String *full_text;
|
2015-03-21 21:33:38 +01:00
|
|
|
i3String *short_text;
|
2012-02-17 00:27:11 +01:00
|
|
|
|
|
|
|
char *color;
|
2015-03-24 07:27:38 +01:00
|
|
|
|
|
|
|
/* min_width can be specified either as a numeric value (in pixels) or as a
|
|
|
|
* string. For strings, we set min_width to the measured text width of
|
|
|
|
* min_width_str. */
|
2012-12-02 13:20:06 +01:00
|
|
|
uint32_t min_width;
|
2015-03-24 07:27:38 +01:00
|
|
|
char *min_width_str;
|
|
|
|
|
2012-12-02 13:20:06 +01:00
|
|
|
blockalign_t align;
|
2012-02-17 00:27:11 +01:00
|
|
|
|
2012-08-21 13:52:15 +02:00
|
|
|
bool urgent;
|
2013-01-27 21:27:21 +01:00
|
|
|
bool no_separator;
|
2015-03-24 07:27:38 +01:00
|
|
|
bool is_markup;
|
2013-01-27 21:27:21 +01:00
|
|
|
|
|
|
|
/* The amount of pixels necessary to render a separater after the block. */
|
|
|
|
uint32_t sep_block_width;
|
2012-08-21 13:52:15 +02:00
|
|
|
|
2012-12-02 13:20:06 +01:00
|
|
|
/* The amount of pixels necessary to render this block. These variables are
|
2012-02-17 00:27:11 +01:00
|
|
|
* only temporarily used in refresh_statusline(). */
|
|
|
|
uint32_t width;
|
2012-12-02 13:20:06 +01:00
|
|
|
uint32_t x_offset;
|
|
|
|
uint32_t x_append;
|
2012-02-17 00:27:11 +01:00
|
|
|
|
2013-03-21 11:48:27 +01:00
|
|
|
/* Optional */
|
|
|
|
char *name;
|
|
|
|
char *instance;
|
|
|
|
|
2012-02-17 00:27:11 +01:00
|
|
|
TAILQ_ENTRY(status_block) blocks;
|
|
|
|
};
|
|
|
|
|
|
|
|
TAILQ_HEAD(statusline_head, status_block) statusline_head;
|
|
|
|
|
2010-08-05 05:09:59 +02:00
|
|
|
#include "child.h"
|
|
|
|
#include "ipc.h"
|
|
|
|
#include "outputs.h"
|
|
|
|
#include "util.h"
|
|
|
|
#include "workspaces.h"
|
2012-11-10 13:41:39 +01:00
|
|
|
#include "mode.h"
|
2011-08-15 15:57:52 +02:00
|
|
|
#include "trayclients.h"
|
2010-08-05 05:09:59 +02:00
|
|
|
#include "xcb.h"
|
2010-11-04 12:27:10 +01:00
|
|
|
#include "config.h"
|
2011-10-21 20:30:46 +02:00
|
|
|
#include "libi3.h"
|
2012-08-22 17:02:02 +02:00
|
|
|
#include "parse_json_header.h"
|