2 * structs.h - basic structs header
4 * Copyright © 2007-2008 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_STRUCTS_H
23 #define AWESOME_STRUCTS_H
25 #define SN_API_NOT_YET_FROZEN
28 #include <xcb/xcb_icccm.h>
29 #include <xcb/xcb_keysyms.h>
33 #include "common/xembed.h"
35 typedef struct wibox_t wibox_t
;
36 typedef struct a_screen screen_t
;
37 typedef struct button_t button_t
;
38 typedef struct widget_t widget_t
;
39 typedef struct widget_node_t widget_node_t
;
40 typedef struct client_t client_t
;
41 typedef struct client_node client_node_t
;
42 typedef struct tag tag_t
;
43 typedef struct tag_client_node_t tag_client_node_t
;
44 typedef struct awesome_t awesome_t
;
46 ARRAY_TYPE(widget_node_t
, widget_node
)
47 ARRAY_TYPE(button_t
*, button
)
48 ARRAY_TYPE(tag_t
*, tag
)
49 ARRAY_TYPE(screen_t
, screen
)
50 ARRAY_TYPE(client_t
*, client
)
52 /** Main configuration structure */
56 xcb_connection_t
*connection
;
57 /** Event and error handlers */
58 xcb_event_handlers_t evenths
;
59 /** Property change handler */
60 xcb_property_handlers_t prophs
;
61 /** Default screen number */
63 /** Keys symbol table */
64 xcb_key_symbols_t
*keysyms
;
65 /** Logical screens */
66 screen_array_t screens
;
67 /** True if xinerama is active */
68 bool xinerama_is_active
;
69 /** Root window key bindings */
71 /** Root window mouse bindings */
72 button_array_t buttons
;
73 /** Check for XRandR extension */
75 /** Check for XTest extension */
78 client_array_t clients
;
79 /** Embedded windows */
80 xembed_window_array_t embedded
;
81 /** Path to config file */
83 /** Stack client history */
85 /** Command line passed to awesome */
98 /** Command to execute when spawning a new client */
100 /** Command to execute when unmanaging client */
102 /** Command to execute when giving focus to a client */
104 /** Command to execute when removing focus to a client */
106 /** Command to run when mouse enter a client */
107 luaA_ref mouse_enter
;
108 /** Command to run when mouse leave a client */
109 luaA_ref mouse_leave
;
110 /** Command to run on arrange */
112 /** Command to run when client list changes */
114 /** Command to run on numbers of tag changes */
116 /** Command to run when client gets (un)tagged */
118 /** Command to run on property change */
120 /** Command to run on time */
122 /** Startup notification hooks */
123 luaA_ref startup_notification
;
125 /** Command to run on dbus events */
129 /** The event loop */
130 struct ev_loop
*loop
;
131 /** The timeout after which we need to stop select() */
132 struct ev_timer timer
;
133 /** The key grabber function */
135 /** The mouse pointer grabber function */
136 luaA_ref mousegrabber
;
137 /** Focused screen */
138 screen_t
*screen_focus
;
139 /** Need to call client_stack_refresh() */
140 bool client_need_stack_refresh
;
141 /** The startup notification display struct */
142 SnDisplay
*sndisplay
;
145 extern awesome_t globalconf
;
148 // vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80