]> git.sur5r.net Git - i3/i3/blob - i3bar/include/outputs.h
switch to clang-format-3.8 (#2547)
[i3/i3] / i3bar / include / outputs.h
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3bar - an xcb-based status- and ws-bar for i3
5  * © 2010 Axel Wagner and contributors (see also: LICENSE)
6  *
7  * outputs.c: Maintaining the outputs list
8  *
9  */
10 #pragma once
11
12 #include <config.h>
13
14 #include <xcb/xcb.h>
15 #include <cairo/cairo-xcb.h>
16
17 #include "common.h"
18
19 typedef struct i3_output i3_output;
20
21 SLIST_HEAD(outputs_head, i3_output);
22 struct outputs_head* outputs;
23
24 /*
25  * Start parsing the received JSON string
26  *
27  */
28 void parse_outputs_json(char* json);
29
30 /*
31  * Initiate the outputs list
32  *
33  */
34 void init_outputs(void);
35
36 /*
37  * Returns the output with the given name
38  *
39  */
40 i3_output* get_output_by_name(char* name);
41
42 /*
43  * Returns true if the output has the currently focused workspace
44  *
45  */
46 bool output_has_focus(i3_output* output);
47
48 struct i3_output {
49     char* name;   /* Name of the output */
50     bool active;  /* If the output is active */
51     bool primary; /* If it is the primary output */
52     bool visible; /* If the bar is visible on this output */
53     int ws;       /* The number of the currently visible ws */
54     rect rect;    /* The rect (relative to the root window) */
55
56     /* Off-screen buffer for preliminary rendering of the bar. */
57     surface_t buffer;
58     /* Off-screen buffer for pre-rendering the statusline, separated to make clipping easier. */
59     surface_t statusline_buffer;
60     /* How much of statusline_buffer's horizontal space was used on last statusline render. */
61     int statusline_width;
62     /* Whether statusline block short texts where used on last statusline render. */
63     bool statusline_short_text;
64     /* The actual window on which we draw. */
65     surface_t bar;
66
67     struct ws_head* workspaces;  /* The workspaces on this output */
68     struct tc_head* trayclients; /* The tray clients on this output */
69
70     SLIST_ENTRY(i3_output)
71     slist; /* Pointer for the SLIST-Macro */
72 };