awful.placement.no_overlap: Honor original position
[awesome.git] / globalconf.h
bloba1575c5cb199857ea6fb03e44de02ab3ec04d884
1 /*
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
26 #include <libsn/sn.h>
28 #include <ev.h>
30 #include <xcb/xcb_icccm.h>
31 #include <xcb/xcb_keysyms.h>
33 #include "key.h"
34 #include "color.h"
35 #include "font.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 */
52 typedef struct
54 /** Connection ref */
55 xcb_connection_t *connection;
56 /** Default screen number */
57 int default_screen;
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 */
65 key_array_t keys;
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 */
71 bool have_xtest;
72 /** Clients list */
73 client_array_t clients;
74 /** Embedded windows */
75 xembed_window_array_t embedded;
76 /** Path to config file */
77 char *conffile;
78 /** Stack client history */
79 client_array_t stack;
80 /** Command line passed to awesome */
81 char *argv;
82 /** Lua VM state */
83 lua_State *L;
84 /** Default colors */
85 struct
87 xcolor_t fg, bg;
88 } colors;
89 /** Default font */
90 font_t *font;
91 struct
93 /** Command to execute when spawning a new client */
94 int manage;
95 /** Command to execute when unmanaging client */
96 int unmanage;
97 /** Command to execute when giving focus to a client */
98 int focus;
99 /** Command to execute when removing focus to a client */
100 int unfocus;
101 /** Command to run when mouse enter a client */
102 int mouse_enter;
103 /** Command to run when mouse leave a client */
104 int mouse_leave;
105 /** Command to run when client list changes */
106 int clients;
107 /** Command to run on numbers of tag changes */
108 int tags;
109 /** Command to run when client gets (un)tagged */
110 int tagged;
111 /** Command to run on property change */
112 int property;
113 /** Command to run on time */
114 int timer;
115 /** Command to run on awesome exit */
116 int exit;
117 } hooks;
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 */
123 int keygrabber;
124 /** The mouse pointer grabber function */
125 int mousegrabber;
126 /** Focused screen */
127 screen_t *screen_focus;
128 /** Need to call client_stack_refresh() */
129 bool client_need_stack_refresh;
130 /** Wiboxes */
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;
136 } awesome_t;
138 extern awesome_t globalconf;
140 #endif
141 // vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80