]> git.lizzy.rs Git - bspwm.git/blob - bspwm.h
Asynchronously parse rule command output
[bspwm.git] / bspwm.h
1 /* * Copyright (c) 2012-2013 Bastien Dejean
2  * All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without modification,
5  * are permitted provided that the following conditions are met:
6  *
7  *  * Redistributions of source code must retain the above copyright notice, this
8  * list of conditions and the following disclaimer.
9  *  * Redistributions in binary form must reproduce the above copyright notice,
10  * this list of conditions and the following disclaimer in the documentation and/or
11  * other materials provided with the distribution.
12  *
13  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS''
14  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
16  * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER 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 ON
20  * 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 ROOT_EVENT_MASK        (XCB_EVENT_MASK_SUBSTRUCTURE_REDIRECT | XCB_EVENT_MASK_SUBSTRUCTURE_NOTIFY)
31 #define CLIENT_EVENT_MASK      (XCB_EVENT_MASK_PROPERTY_CHANGE | XCB_EVENT_MASK_FOCUS_CHANGE)
32
33 xcb_connection_t *dpy;
34 int default_screen, screen_width, screen_height;
35 uint32_t num_clients;
36 uint32_t num_desktops;
37 unsigned int num_monitors;
38 unsigned int monitor_uid;
39 unsigned int desktop_uid;
40 xcb_screen_t *screen;
41 xcb_window_t root;
42 uint8_t root_depth;
43 char config_path[MAXLEN];
44
45 monitor_t *mon;
46 monitor_t *mon_head;
47 monitor_t *mon_tail;
48 monitor_t *pri_mon;
49 history_t *history_head;
50 history_t *history_tail;
51 history_t *history_needle;
52 stacking_list_t *stack_head;
53 stacking_list_t *stack_tail;
54 subscriber_list_t *subscribe_head;
55 subscriber_list_t *subscribe_tail;
56 pending_rule_t *pending_rule_head;
57 pending_rule_t *pending_rule_tail;
58
59 pointer_state_t *frozen_pointer;
60 xcb_window_t motion_recorder;
61 xcb_atom_t WM_TAKE_FOCUS;
62 xcb_atom_t WM_DELETE_WINDOW;
63 xcb_atom_t _NET_WM_WINDOW_OPACITY;
64 xcb_atom_t _BSPWM_FLOATING_WINDOW;
65 int exit_status;
66
67 bool visible;
68 bool auto_raise;
69 bool sticky_still;
70 bool record_history;
71 bool running;
72 bool randr;
73
74 void init(void);
75 void setup(void);
76 void register_events(void);
77 void quit(void);
78 void cleanup(void);
79 void put_status(void);
80
81 #endif