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
|
2015-04-04 03:17:56 +03:00
|
|
|
* © 2010 Axel Wagner and contributors (see also: LICENSE)
|
2010-08-07 20:05:16 +04:00
|
|
|
*
|
|
|
|
*/
|
2013-12-29 06:11:50 +04:00
|
|
|
#pragma once
|
2010-07-22 03:15:18 +04:00
|
|
|
|
2016-10-11 10:13:35 +03:00
|
|
|
#include <config.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
|
|
|
|
2014-06-19 13:20:32 +04:00
|
|
|
struct ev_loop *main_loop;
|
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 {
|
2014-12-02 23:38:30 +03:00
|
|
|
/* First value to make it the default. */
|
2012-12-02 16:20:06 +04:00
|
|
|
ALIGN_LEFT,
|
|
|
|
ALIGN_CENTER,
|
|
|
|
ALIGN_RIGHT
|
|
|
|
} blockalign_t;
|
|
|
|
|
2015-10-26 18:27:09 +03:00
|
|
|
/* This data structure describes the way a status block should be rendered. These
|
|
|
|
* variables are updated each time the statusline is re-rendered. */
|
|
|
|
struct status_block_render_desc {
|
|
|
|
uint32_t width;
|
|
|
|
uint32_t x_offset;
|
|
|
|
uint32_t x_append;
|
|
|
|
};
|
|
|
|
|
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;
|
2015-03-21 23:33:38 +03:00
|
|
|
i3String *short_text;
|
2012-02-17 03:27:11 +04:00
|
|
|
|
|
|
|
char *color;
|
2015-10-22 17:11:08 +03:00
|
|
|
char *background;
|
|
|
|
char *border;
|
2015-03-24 09:27:38 +03: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 16:20:06 +04:00
|
|
|
uint32_t min_width;
|
2015-03-24 09:27:38 +03:00
|
|
|
char *min_width_str;
|
|
|
|
|
2012-12-02 16:20:06 +04:00
|
|
|
blockalign_t align;
|
2012-02-17 03:27:11 +04:00
|
|
|
|
2012-08-21 15:52:15 +04:00
|
|
|
bool urgent;
|
2013-01-28 00:27:21 +04:00
|
|
|
bool no_separator;
|
2015-10-13 10:29:50 +03:00
|
|
|
bool pango_markup;
|
2013-01-28 00:27:21 +04:00
|
|
|
|
|
|
|
/* The amount of pixels necessary to render a separater after the block. */
|
|
|
|
uint32_t sep_block_width;
|
2012-08-21 15:52:15 +04:00
|
|
|
|
2015-10-26 18:27:09 +03:00
|
|
|
/* Continuously-updated information on how to render this status block. */
|
|
|
|
struct status_block_render_desc full_render;
|
|
|
|
struct status_block_render_desc short_render;
|
2012-02-17 03:27:11 +04:00
|
|
|
|
2013-03-21 14:48:27 +04:00
|
|
|
/* Optional */
|
|
|
|
char *name;
|
|
|
|
char *instance;
|
|
|
|
|
2016-11-09 00:46:43 +03:00
|
|
|
TAILQ_ENTRY(status_block)
|
|
|
|
blocks;
|
2012-02-17 03:27:11 +04:00
|
|
|
};
|
|
|
|
|
2016-11-09 00:46:43 +03:00
|
|
|
TAILQ_HEAD(statusline_head, status_block)
|
|
|
|
statusline_head;
|
2012-02-17 03:27:11 +04:00
|
|
|
|
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"
|
2016-10-07 14:33:58 +03:00
|
|
|
#include "configuration.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"
|