]> git.sur5r.net Git - i3/i3/blobdiff - i3bar/include/common.h
Merge branch 'next'
[i3/i3] / i3bar / include / common.h
index bce31a4df22cd5c267d3bf9626b97025d424f2cb..1365082f54591c0720712ce346ce7c37373ff36d 100644 (file)
@@ -9,6 +9,10 @@
 #define COMMON_H_
 
 #include <stdbool.h>
+#include <xcb/xcb.h>
+#include <xcb/xproto.h>
+#include "libi3.h"
+#include "queue.h"
 
 typedef struct rect_t rect;
 
@@ -23,15 +27,48 @@ struct rect_t {
     int h;
 };
 
-#include "queue.h"
+typedef enum {
+    ALIGN_LEFT,
+    ALIGN_CENTER,
+    ALIGN_RIGHT
+} blockalign_t;
+
+/* This data structure represents one JSON dictionary, multiple of these make
+ * up one status line. */
+struct status_block {
+    i3String *full_text;
+
+    char *color;
+    uint32_t min_width;
+    blockalign_t align;
+
+    bool urgent;
+    bool no_separator;
+
+    /* The amount of pixels necessary to render a separater after the block. */
+    uint32_t sep_block_width;
+
+    /* The amount of pixels necessary to render this block. These variables are
+     * only temporarily used in refresh_statusline(). */
+    uint32_t width;
+    uint32_t x_offset;
+    uint32_t x_append;
+
+    TAILQ_ENTRY(status_block) blocks;
+};
+
+TAILQ_HEAD(statusline_head, status_block) statusline_head;
+
 #include "child.h"
 #include "ipc.h"
 #include "outputs.h"
 #include "util.h"
 #include "workspaces.h"
+#include "mode.h"
 #include "trayclients.h"
 #include "xcb.h"
 #include "config.h"
 #include "libi3.h"
+#include "parse_json_header.h"
 
 #endif