]> git.lizzy.rs Git - bspwm.git/blob - bspwm.h
New setting: persistent_monitors
[bspwm.git] / bspwm.h
1 /* Copyright (c) 2012-2014, 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  * The views and conclusions contained in the software and documentation are those
25  * of the authors and should not be interpreted as representing official policies,
26  * either expressed or implied, of the FreeBSD Project.
27  */
28
29 #ifndef BSPWM_BSPWM_H
30 #define BSPWM_BSPWM_H
31
32 #include "types.h"
33
34 #define ROOT_EVENT_MASK     (XCB_EVENT_MASK_SUBSTRUCTURE_REDIRECT | XCB_EVENT_MASK_SUBSTRUCTURE_NOTIFY)
35 #define CLIENT_EVENT_MASK   (XCB_EVENT_MASK_PROPERTY_CHANGE | XCB_EVENT_MASK_FOCUS_CHANGE)
36
37 xcb_connection_t *dpy;
38 int default_screen, screen_width, screen_height;
39 uint32_t num_clients;
40 uint32_t num_desktops;
41 unsigned int num_monitors;
42 unsigned int monitor_uid;
43 unsigned int desktop_uid;
44 xcb_screen_t *screen;
45 xcb_window_t root;
46 uint8_t root_depth;
47 char config_path[MAXLEN];
48
49 monitor_t *mon;
50 monitor_t *mon_head;
51 monitor_t *mon_tail;
52 monitor_t *pri_mon;
53 history_t *history_head;
54 history_t *history_tail;
55 history_t *history_needle;
56 rule_t *rule_head;
57 rule_t *rule_tail;
58 stacking_list_t *stack_head;
59 stacking_list_t *stack_tail;
60 subscriber_list_t *subscribe_head;
61 subscriber_list_t *subscribe_tail;
62 pending_rule_t *pending_rule_head;
63 pending_rule_t *pending_rule_tail;
64
65 pointer_state_t *frozen_pointer;
66 xcb_window_t motion_recorder;
67 xcb_atom_t WM_TAKE_FOCUS;
68 xcb_atom_t WM_DELETE_WINDOW;
69 xcb_atom_t _BSPWM_FLOATING_WINDOW;
70 int exit_status;
71
72 bool visible;
73 bool auto_raise;
74 bool sticky_still;
75 bool record_history;
76 bool running;
77 bool randr;
78
79 void init(void);
80 void setup(void);
81 void register_events(void);
82 void cleanup(void);
83 void put_status(void);
84 void sig_handler(int sig);
85
86 #endif