bug fix: move/resize with tiled windows
[awesome.git] / config.h
blob58988c925935697691eed216e655e724e767f59b
1 /*
2 * config.h - configuration management header
3 *
4 * Copyright © 2007 Julien Danjou <julien@danjou.info>
5 *
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_CONFIG_H
23 #define AWESOME_CONFIG_H
25 #define AWESOME_CONFIG_FILE ".awesomerc"
27 #include <X11/Xlib.h>
29 /** Bar possible position */
30 enum
31 { BarTop, BarBot, BarOff };
33 enum
34 { ColBorder, ColFG, ColBG, ColLast }; /* color */
36 enum
37 { CurNormal, CurResize, CurMove, CurLast }; /* cursor */
39 typedef struct
41 int x, y, w, h;
42 unsigned long norm[ColLast];
43 unsigned long sel[ColLast];
44 GC gc;
45 Cursor cursor[CurLast];
46 struct
48 int ascent;
49 int descent;
50 int height;
51 XFontSet set;
52 XFontStruct *xfont;
53 } font;
54 } DC;
56 typedef struct
58 const char *prop;
59 const char *tags;
60 Bool isfloating;
61 } Rule;
63 typedef struct awesome_config awesome_config;
65 typedef struct
67 const char *symbol;
68 void (*arrange) (Display *, int, awesome_config *);
69 } Layout;
71 typedef struct
73 unsigned long mod;
74 KeySym keysym;
75 void (*func) (Display *, int, DC *, awesome_config *, const char *);
76 const char *arg;
77 } Key;
79 /** Status bar */
80 typedef struct
82 /** Bar width */
83 int width;
84 /** Bar height */
85 int height;
86 /** Bar position */
87 int position;
88 /** Window */
89 Window window;
90 /** Drawable object */
91 Drawable drawable;
92 /** Screen */
93 int screen;
94 } Statusbar;
96 /** Main configuration structure */
97 struct awesome_config
99 /** Tag list */
100 const char **tags;
101 /** Selected tags */
102 Bool *selected_tags;
103 /* Previously selected tags */
104 Bool *prev_selected_tags;
105 /** Number of tags in **tags */
106 int ntags;
107 /** Layout list */
108 Layout *layouts;
109 /** Number of layouts in *layouts */
110 int nlayouts;
111 /** Store layout for eatch tag */
112 Layout **tag_layouts;
113 /** Rules list */
114 Rule *rules;
115 /** Number of rules in *rules */
116 int nrules;
117 /** Keys binding list */
118 Key *keys;
119 /** Number of keys binding in *keys */
120 int nkeys;
121 /** Default modkey */
122 KeySym modkey;
123 /** Numlock mask */
124 unsigned int numlockmask;
125 /** Default status bar position */
126 int statusbar_default_position;
127 /** Border size */
128 int borderpx;
129 /** Master width factor */
130 double mwfact;
131 /** Number of pixels to snap windows */
132 int snap;
133 /** Number of master windows */
134 int nmaster;
135 /** Number of columns in tile layout */
136 int ncols;
137 /** Transparency of unfocused clients */
138 int opacity_unfocused;
139 /** Respect resize hints */
140 Bool resize_hints;
141 /** Text displayed in bar */
142 char statustext[256];
143 /** Current layout */
144 Layout * current_layout;
145 /** Status bar */
146 Statusbar statusbar;
147 /** Check for XShape extension */
148 Bool have_shape;
149 /** Check for XRandR extension */
150 Bool have_randr;
153 void parse_config(Display *, int, DC *, awesome_config *); /* parse configuration file */
155 #endif