]> git.lizzy.rs Git - bspwm.git/blob - src/bspwm.h
35bded5de3ab7fc4ac3f67187b8d03dd4a75bcfe
[bspwm.git] / src / bspwm.h
1 /* Copyright (c) 2012, Bastien Dejean
2  * All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are met:
6  *
7  * 1. Redistributions of source code must retain the above copyright notice, this
8  *    list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright notice,
10  *    this list of conditions and the following disclaimer in the documentation
11  *    and/or other materials provided with the distribution.
12  *
13  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
14  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
15  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
16  * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
17  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
18  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
19  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
20  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
22  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23  */
24
25 #ifndef BSPWM_BSPWM_H
26 #define BSPWM_BSPWM_H
27
28 #include "types.h"
29
30 #define WM_NAME                  "bspwm"
31 #define CONFIG_NAME              WM_NAME "rc"
32 #define CONFIG_HOME_ENV          "XDG_CONFIG_HOME"
33 #define RUNTIME_DIR_ENV          "XDG_RUNTIME_DIR"
34
35 #define STATE_PATH_TPL           "/tmp/bspwm%s_%i_%i-state"
36
37 #define ROOT_EVENT_MASK     (XCB_EVENT_MASK_SUBSTRUCTURE_REDIRECT | XCB_EVENT_MASK_SUBSTRUCTURE_NOTIFY | XCB_EVENT_MASK_STRUCTURE_NOTIFY | XCB_EVENT_MASK_BUTTON_PRESS)
38 #define CLIENT_EVENT_MASK   (XCB_EVENT_MASK_PROPERTY_CHANGE | XCB_EVENT_MASK_FOCUS_CHANGE)
39 #define BSPWM_CLASS_NAME    "Bspwm"
40 #define META_WINDOW_IC      "wm\0" BSPWM_CLASS_NAME
41 #define ROOT_WINDOW_IC      "root\0" BSPWM_CLASS_NAME
42 #define PRESEL_FEEDBACK_I   "presel_feedback"
43 #define PRESEL_FEEDBACK_IC  PRESEL_FEEDBACK_I "\0" BSPWM_CLASS_NAME
44 #define MOTION_RECORDER_I   "motion_recorder"
45 #define MOTION_RECORDER_IC  MOTION_RECORDER_I "\0" BSPWM_CLASS_NAME
46
47 xcb_connection_t *dpy;
48 int default_screen, screen_width, screen_height;
49 uint32_t clients_count;
50 xcb_screen_t *screen;
51 xcb_window_t root;
52 char config_path[MAXLEN];
53
54 monitor_t *mon;
55 monitor_t *mon_head;
56 monitor_t *mon_tail;
57 monitor_t *pri_mon;
58 history_t *history_head;
59 history_t *history_tail;
60 history_t *history_needle;
61 rule_t *rule_head;
62 rule_t *rule_tail;
63 stacking_list_t *stack_head;
64 stacking_list_t *stack_tail;
65 subscriber_list_t *subscribe_head;
66 subscriber_list_t *subscribe_tail;
67 pending_rule_t *pending_rule_head;
68 pending_rule_t *pending_rule_tail;
69
70 xcb_window_t meta_window;
71 struct {
72         xcb_window_t id;
73         uint16_t sequence;
74         bool enabled;
75 } motion_recorder;
76 xcb_atom_t WM_STATE;
77 xcb_atom_t WM_TAKE_FOCUS;
78 xcb_atom_t WM_DELETE_WINDOW;
79 int exit_status;
80
81 bool auto_raise;
82 bool sticky_still;
83 bool hide_sticky;
84 bool record_history;
85 bool running;
86 bool restart;
87 bool randr;
88
89 void init(void);
90 void setup(void);
91 void register_events(void);
92 void cleanup(void);
93 bool check_connection (xcb_connection_t *dpy);
94 void sig_handler(int sig);
95 uint32_t get_color_pixel(const char *color);
96
97 #endif