2 * globalconf.h - basic globalconf.header
4 * Copyright © 2007-2009 Julien Danjou <julien@danjou.info>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 #ifndef AWESOME_GLOBALCONF_H
23 #define AWESOME_GLOBALCONF_H
25 #define SN_API_NOT_YET_FROZEN
30 #include <xcb/xcb_icccm.h>
31 #include <xcb/xcb_keysyms.h>
36 #include "common/xembed.h"
38 typedef struct wibox_t wibox_t
;
39 typedef struct a_screen screen_t
;
40 typedef struct button_t button_t
;
41 typedef struct widget_t widget_t
;
42 typedef struct client_t client_t
;
43 typedef struct tag tag_t
;
45 ARRAY_TYPE(button_t
*, button
)
46 ARRAY_TYPE(tag_t
*, tag
)
47 ARRAY_TYPE(screen_t
, screen
)
48 ARRAY_TYPE(client_t
*, client
)
49 ARRAY_TYPE(wibox_t
*, wibox
)
51 /** Main configuration structure */
55 xcb_connection_t
*connection
;
56 /** Default screen number */
58 /** Keys symbol table */
59 xcb_key_symbols_t
*keysyms
;
60 /** Logical screens */
61 screen_array_t screens
;
62 /** True if xinerama is active */
63 bool xinerama_is_active
;
64 /** Root window key bindings */
66 /** Root window mouse bindings */
67 button_array_t buttons
;
68 /** Modifiers masks */
69 uint16_t numlockmask
, shiftlockmask
, capslockmask
, modeswitchmask
;
70 /** Check for XTest extension */
73 client_array_t clients
;
74 /** Embedded windows */
75 xembed_window_array_t embedded
;
76 /** Path to config file */
78 /** Stack client history */
80 /** Command line passed to awesome */
93 /** Command to execute when spawning a new client */
95 /** Command to execute when unmanaging client */
97 /** Command to execute when giving focus to a client */
99 /** Command to execute when removing focus to a client */
101 /** Command to run when mouse enter a client */
103 /** Command to run when mouse leave a client */
105 /** Command to run when client list changes */
107 /** Command to run on numbers of tag changes */
109 /** Command to run when client gets (un)tagged */
111 /** Command to run on property change */
113 /** Command to run on time */
115 /** Command to run on awesome exit */
118 /** The event loop */
119 struct ev_loop
*loop
;
120 /** The timeout after which we need to stop select() */
121 struct ev_timer timer
;
122 /** The key grabber function */
124 /** The mouse pointer grabber function */
126 /** Focused screen */
127 screen_t
*screen_focus
;
128 /** Need to call client_stack_refresh() */
129 bool client_need_stack_refresh
;
131 wibox_array_t wiboxes
;
132 /** The startup notification display struct */
133 SnDisplay
*sndisplay
;
134 /** Latest timestamp we got from the X server */
135 xcb_timestamp_t timestamp
;
138 extern awesome_t globalconf
;
141 // vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80