Mercurial > dwm-meillo
annotate wm.c @ 27:f96fb3fd8203
added grid mode on Mod1Mask g
author | Anselm R. Garbe <garbeam@wmii.de> |
---|---|
date | Wed, 12 Jul 2006 16:00:51 +0200 |
parents | e8f627998d6f |
children | 2e0fb4130bfb |
rev | line source |
---|---|
0 | 1 /* |
2 * (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com> | |
3 * See LICENSE file for license details. | |
4 */ | |
5 | |
14 | 6 #include <errno.h> |
7 | |
0 | 8 #include <stdarg.h> |
9 #include <stdio.h> | |
10 #include <stdlib.h> | |
11 | |
14 | 12 #include <sys/types.h> |
13 #include <sys/time.h> | |
14 | |
0 | 15 #include <X11/cursorfont.h> |
16 #include <X11/Xatom.h> | |
17 #include <X11/Xproto.h> | |
18 | |
19 #include "wm.h" | |
20 | |
3
e969f3575b7a
several new changes, made gridmenu working
Anselm R. Garbe <garbeam@wmii.de>
parents:
2
diff
changeset
|
21 /* X structs */ |
0 | 22 Display *dpy; |
5 | 23 Window root, barwin; |
13
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
24 Atom wm_atom[WMLast], net_atom[NetLast]; |
0 | 25 Cursor cursor[CurLast]; |
5 | 26 Bool running = True; |
13
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
27 Bool sel_screen; |
3
e969f3575b7a
several new changes, made gridmenu working
Anselm R. Garbe <garbeam@wmii.de>
parents:
2
diff
changeset
|
28 |
16
359b6e563b95
several changes, new stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
14
diff
changeset
|
29 char statustext[1024], tag[256]; |
26
e8f627998d6f
simplified several portions of code through replacing rect structs with x,y,h,w counterparts (much more readable)
Anselm R. Garbe <garbeam@wmii.de>
parents:
21
diff
changeset
|
30 int screen, sx, sy, sw, sh, bx, by, bw, bh; |
3
e969f3575b7a
several new changes, made gridmenu working
Anselm R. Garbe <garbeam@wmii.de>
parents:
2
diff
changeset
|
31 |
e969f3575b7a
several new changes, made gridmenu working
Anselm R. Garbe <garbeam@wmii.de>
parents:
2
diff
changeset
|
32 Brush brush = {0}; |
10
703255003abb
changed how manage client works
Anselm R. Garbe <garbeam@wmii.de>
parents:
9
diff
changeset
|
33 Client *clients = NULL; |
13
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
34 Client *stack = NULL; |
0 | 35 |
36 static Bool other_wm_running; | |
16
359b6e563b95
several changes, new stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
14
diff
changeset
|
37 static const char version[] = "gridwm - " VERSION ", (C)opyright MMVI Anselm R. Garbe\n"; |
0 | 38 static int (*x_error_handler) (Display *, XErrorEvent *); |
39 | |
16
359b6e563b95
several changes, new stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
14
diff
changeset
|
40 static const char *status[] = { |
26
e8f627998d6f
simplified several portions of code through replacing rect structs with x,y,h,w counterparts (much more readable)
Anselm R. Garbe <garbeam@wmii.de>
parents:
21
diff
changeset
|
41 "sh", "-c", "echo -n `date '+%Y-%m-%d %H:%M'`" |
16
359b6e563b95
several changes, new stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
14
diff
changeset
|
42 " `uptime | sed 's/.*://; s/,//g'`" |
359b6e563b95
several changes, new stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
14
diff
changeset
|
43 " `acpi | awk '{print $4}' | sed 's/,//'`", 0 |
359b6e563b95
several changes, new stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
14
diff
changeset
|
44 }; |
359b6e563b95
several changes, new stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
14
diff
changeset
|
45 |
0 | 46 static void |
47 usage() | |
48 { | |
49 fputs("usage: gridwm [-v]\n", stderr); | |
50 exit(1); | |
51 } | |
52 | |
53 static void | |
54 scan_wins() | |
55 { | |
56 unsigned int i, num; | |
57 Window *wins; | |
58 XWindowAttributes wa; | |
59 Window d1, d2; | |
60 | |
61 if(XQueryTree(dpy, root, &d1, &d2, &wins, &num)) { | |
62 for(i = 0; i < num; i++) { | |
63 if(!XGetWindowAttributes(dpy, wins[i], &wa)) | |
64 continue; | |
65 if(wa.override_redirect || XGetTransientForHint(dpy, wins[i], &d1)) | |
66 continue; | |
67 if(wa.map_state == IsViewable) | |
10
703255003abb
changed how manage client works
Anselm R. Garbe <garbeam@wmii.de>
parents:
9
diff
changeset
|
68 manage(wins[i], &wa); |
0 | 69 } |
70 } | |
71 if(wins) | |
72 XFree(wins); | |
73 } | |
74 | |
13
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
75 static int |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
76 win_property(Window w, Atom a, Atom t, long l, unsigned char **prop) |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
77 { |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
78 Atom real; |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
79 int format; |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
80 unsigned long res, extra; |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
81 int status; |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
82 |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
83 status = XGetWindowProperty(dpy, w, a, 0L, l, False, t, &real, &format, |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
84 &res, &extra, prop); |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
85 |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
86 if(status != Success || *prop == 0) { |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
87 return 0; |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
88 } |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
89 if(res == 0) { |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
90 free((void *) *prop); |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
91 } |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
92 return res; |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
93 } |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
94 |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
95 int |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
96 win_proto(Window w) |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
97 { |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
98 Atom *protocols; |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
99 long res; |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
100 int protos = 0; |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
101 int i; |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
102 |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
103 res = win_property(w, wm_atom[WMProtocols], XA_ATOM, 20L, |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
104 ((unsigned char **) &protocols)); |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
105 if(res <= 0) { |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
106 return protos; |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
107 } |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
108 for(i = 0; i < res; i++) { |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
109 if(protocols[i] == wm_atom[WMDelete]) |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
110 protos |= WM_PROTOCOL_DELWIN; |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
111 } |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
112 free((char *) protocols); |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
113 return protos; |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
114 } |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
115 |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
116 void |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
117 send_message(Window w, Atom a, long value) |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
118 { |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
119 XEvent e; |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
120 |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
121 e.type = ClientMessage; |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
122 e.xclient.window = w; |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
123 e.xclient.message_type = a; |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
124 e.xclient.format = 32; |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
125 e.xclient.data.l[0] = value; |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
126 e.xclient.data.l[1] = CurrentTime; |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
127 XSendEvent(dpy, w, False, NoEventMask, &e); |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
128 XFlush(dpy); |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
129 } |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
130 |
0 | 131 /* |
132 * There's no way to check accesses to destroyed windows, thus | |
133 * those cases are ignored (especially on UnmapNotify's). | |
134 * Other types of errors call Xlib's default error handler, which | |
135 * calls exit(). | |
136 */ | |
10
703255003abb
changed how manage client works
Anselm R. Garbe <garbeam@wmii.de>
parents:
9
diff
changeset
|
137 int |
0 | 138 error_handler(Display *dpy, XErrorEvent *error) |
139 { | |
140 if(error->error_code == BadWindow | |
141 || (error->request_code == X_SetInputFocus | |
142 && error->error_code == BadMatch) | |
143 || (error->request_code == X_PolyText8 | |
144 && error->error_code == BadDrawable) | |
145 || (error->request_code == X_PolyFillRectangle | |
146 && error->error_code == BadDrawable) | |
147 || (error->request_code == X_PolySegment | |
148 && error->error_code == BadDrawable) | |
149 || (error->request_code == X_ConfigureWindow | |
150 && error->error_code == BadMatch) | |
151 || (error->request_code == X_GrabKey | |
152 && error->error_code == BadAccess)) | |
153 return 0; | |
154 fprintf(stderr, "gridwm: fatal error: request code=%d, error code=%d\n", | |
155 error->request_code, error->error_code); | |
156 return x_error_handler(dpy, error); /* may call exit() */ | |
157 } | |
158 | |
159 /* | |
160 * Startup Error handler to check if another window manager | |
161 * is already running. | |
162 */ | |
163 static int | |
164 startup_error_handler(Display *dpy, XErrorEvent *error) | |
165 { | |
166 other_wm_running = True; | |
167 return -1; | |
168 } | |
169 | |
170 static void | |
171 cleanup() | |
172 { | |
14 | 173 while(clients) |
174 unmanage(clients); | |
0 | 175 XSetInputFocus(dpy, PointerRoot, RevertToPointerRoot, CurrentTime); |
176 } | |
177 | |
27
f96fb3fd8203
added grid mode on Mod1Mask g
Anselm R. Garbe <garbeam@wmii.de>
parents:
26
diff
changeset
|
178 void |
f96fb3fd8203
added grid mode on Mod1Mask g
Anselm R. Garbe <garbeam@wmii.de>
parents:
26
diff
changeset
|
179 run(void *aux) |
f96fb3fd8203
added grid mode on Mod1Mask g
Anselm R. Garbe <garbeam@wmii.de>
parents:
26
diff
changeset
|
180 { |
f96fb3fd8203
added grid mode on Mod1Mask g
Anselm R. Garbe <garbeam@wmii.de>
parents:
26
diff
changeset
|
181 spawn(dpy, aux); |
f96fb3fd8203
added grid mode on Mod1Mask g
Anselm R. Garbe <garbeam@wmii.de>
parents:
26
diff
changeset
|
182 } |
f96fb3fd8203
added grid mode on Mod1Mask g
Anselm R. Garbe <garbeam@wmii.de>
parents:
26
diff
changeset
|
183 |
f96fb3fd8203
added grid mode on Mod1Mask g
Anselm R. Garbe <garbeam@wmii.de>
parents:
26
diff
changeset
|
184 void |
f96fb3fd8203
added grid mode on Mod1Mask g
Anselm R. Garbe <garbeam@wmii.de>
parents:
26
diff
changeset
|
185 quit(void *aux) |
f96fb3fd8203
added grid mode on Mod1Mask g
Anselm R. Garbe <garbeam@wmii.de>
parents:
26
diff
changeset
|
186 { |
f96fb3fd8203
added grid mode on Mod1Mask g
Anselm R. Garbe <garbeam@wmii.de>
parents:
26
diff
changeset
|
187 running = False; |
f96fb3fd8203
added grid mode on Mod1Mask g
Anselm R. Garbe <garbeam@wmii.de>
parents:
26
diff
changeset
|
188 } |
f96fb3fd8203
added grid mode on Mod1Mask g
Anselm R. Garbe <garbeam@wmii.de>
parents:
26
diff
changeset
|
189 |
0 | 190 int |
191 main(int argc, char *argv[]) | |
192 { | |
193 int i; | |
194 XSetWindowAttributes wa; | |
195 unsigned int mask; | |
196 Window w; | |
5 | 197 XEvent ev; |
14 | 198 fd_set fds; |
199 struct timeval t, timeout = { | |
200 .tv_usec = 0, | |
201 .tv_sec = STATUSDELAY, | |
202 }; | |
0 | 203 |
204 /* command line args */ | |
205 for(i = 1; (i < argc) && (argv[i][0] == '-'); i++) { | |
206 switch (argv[i][1]) { | |
207 case 'v': | |
208 fprintf(stdout, "%s", version); | |
209 exit(0); | |
210 break; | |
211 default: | |
212 usage(); | |
213 break; | |
214 } | |
215 } | |
216 | |
217 dpy = XOpenDisplay(0); | |
218 if(!dpy) | |
219 error("gridwm: cannot connect X server\n"); | |
220 | |
221 screen = DefaultScreen(dpy); | |
222 root = RootWindow(dpy, screen); | |
223 | |
224 /* check if another WM is already running */ | |
225 other_wm_running = False; | |
226 XSetErrorHandler(startup_error_handler); | |
227 /* this causes an error if some other WM is running */ | |
228 XSelectInput(dpy, root, SubstructureRedirectMask); | |
3
e969f3575b7a
several new changes, made gridmenu working
Anselm R. Garbe <garbeam@wmii.de>
parents:
2
diff
changeset
|
229 XFlush(dpy); |
0 | 230 |
231 if(other_wm_running) | |
232 error("gridwm: another window manager is already running\n"); | |
233 | |
26
e8f627998d6f
simplified several portions of code through replacing rect structs with x,y,h,w counterparts (much more readable)
Anselm R. Garbe <garbeam@wmii.de>
parents:
21
diff
changeset
|
234 sx = sy = 0; |
e8f627998d6f
simplified several portions of code through replacing rect structs with x,y,h,w counterparts (much more readable)
Anselm R. Garbe <garbeam@wmii.de>
parents:
21
diff
changeset
|
235 sw = DisplayWidth(dpy, screen); |
e8f627998d6f
simplified several portions of code through replacing rect structs with x,y,h,w counterparts (much more readable)
Anselm R. Garbe <garbeam@wmii.de>
parents:
21
diff
changeset
|
236 sh = DisplayHeight(dpy, screen); |
0 | 237 sel_screen = XQueryPointer(dpy, root, &w, &w, &i, &i, &i, &i, &mask); |
238 | |
239 XSetErrorHandler(0); | |
240 x_error_handler = XSetErrorHandler(error_handler); | |
241 | |
242 /* init atoms */ | |
13
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
243 wm_atom[WMProtocols] = XInternAtom(dpy, "WM_PROTOCOLS", False); |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
244 wm_atom[WMDelete] = XInternAtom(dpy, "WM_DELETE_WINDOW", False); |
0 | 245 net_atom[NetSupported] = XInternAtom(dpy, "_NET_SUPPORTED", False); |
246 net_atom[NetWMName] = XInternAtom(dpy, "_NET_WM_NAME", False); | |
247 | |
248 XChangeProperty(dpy, root, net_atom[NetSupported], XA_ATOM, 32, | |
249 PropModeReplace, (unsigned char *) net_atom, NetLast); | |
250 | |
251 | |
252 /* init cursors */ | |
253 cursor[CurNormal] = XCreateFontCursor(dpy, XC_left_ptr); | |
254 cursor[CurResize] = XCreateFontCursor(dpy, XC_sizing); | |
255 cursor[CurMove] = XCreateFontCursor(dpy, XC_fleur); | |
256 | |
8 | 257 update_keys(); |
0 | 258 |
5 | 259 /* style */ |
260 loadcolors(dpy, screen, &brush, BGCOLOR, FGCOLOR, BORDERCOLOR); | |
261 loadfont(dpy, &brush.font, FONT); | |
262 | |
263 wa.override_redirect = 1; | |
264 wa.background_pixmap = ParentRelative; | |
265 wa.event_mask = ExposureMask; | |
266 | |
26
e8f627998d6f
simplified several portions of code through replacing rect structs with x,y,h,w counterparts (much more readable)
Anselm R. Garbe <garbeam@wmii.de>
parents:
21
diff
changeset
|
267 bx = by = 0; |
e8f627998d6f
simplified several portions of code through replacing rect structs with x,y,h,w counterparts (much more readable)
Anselm R. Garbe <garbeam@wmii.de>
parents:
21
diff
changeset
|
268 bw = sw; |
e8f627998d6f
simplified several portions of code through replacing rect structs with x,y,h,w counterparts (much more readable)
Anselm R. Garbe <garbeam@wmii.de>
parents:
21
diff
changeset
|
269 bh = texth(&brush.font); |
e8f627998d6f
simplified several portions of code through replacing rect structs with x,y,h,w counterparts (much more readable)
Anselm R. Garbe <garbeam@wmii.de>
parents:
21
diff
changeset
|
270 barwin = XCreateWindow(dpy, root, bx, by, bw, bh, 0, DefaultDepth(dpy, screen), |
5 | 271 CopyFromParent, DefaultVisual(dpy, screen), |
272 CWOverrideRedirect | CWBackPixmap | CWEventMask, &wa); | |
273 XDefineCursor(dpy, barwin, cursor[CurNormal]); | |
274 XMapRaised(dpy, barwin); | |
21
3ef108a5ca0a
implemented draw_client stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
16
diff
changeset
|
275 |
26
e8f627998d6f
simplified several portions of code through replacing rect structs with x,y,h,w counterparts (much more readable)
Anselm R. Garbe <garbeam@wmii.de>
parents:
21
diff
changeset
|
276 brush.drawable = XCreatePixmap(dpy, root, sw, bh, DefaultDepth(dpy, screen)); |
21
3ef108a5ca0a
implemented draw_client stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
16
diff
changeset
|
277 brush.gc = XCreateGC(dpy, root, 0, 0); |
3ef108a5ca0a
implemented draw_client stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
16
diff
changeset
|
278 |
16
359b6e563b95
several changes, new stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
14
diff
changeset
|
279 pipe_spawn(statustext, sizeof(statustext), dpy, (char **)status); |
5 | 280 draw_bar(); |
0 | 281 |
9
d567f430a81d
fixed several stuff (gridwm gets better and better)
Anselm R. Garbe <garbeam@wmii.de>
parents:
8
diff
changeset
|
282 wa.event_mask = SubstructureRedirectMask | EnterWindowMask \ |
d567f430a81d
fixed several stuff (gridwm gets better and better)
Anselm R. Garbe <garbeam@wmii.de>
parents:
8
diff
changeset
|
283 | LeaveWindowMask; |
0 | 284 wa.cursor = cursor[CurNormal]; |
285 XChangeWindowAttributes(dpy, root, CWEventMask | CWCursor, &wa); | |
286 | |
5 | 287 scan_wins(); |
3
e969f3575b7a
several new changes, made gridmenu working
Anselm R. Garbe <garbeam@wmii.de>
parents:
2
diff
changeset
|
288 |
5 | 289 while(running) { |
14 | 290 if(XPending(dpy) > 0) { |
291 XNextEvent(dpy, &ev); | |
292 if(handler[ev.type]) | |
293 (handler[ev.type]) (&ev); /* call handler */ | |
294 continue; | |
295 } | |
296 FD_ZERO(&fds); | |
297 FD_SET(ConnectionNumber(dpy), &fds); | |
298 t = timeout; | |
299 if(select(ConnectionNumber(dpy) + 1, &fds, NULL, NULL, &t) > 0) | |
300 continue; | |
16
359b6e563b95
several changes, new stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
14
diff
changeset
|
301 else if(errno != EINTR) { |
359b6e563b95
several changes, new stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
14
diff
changeset
|
302 pipe_spawn(statustext, sizeof(statustext), dpy, (char **)status); |
14 | 303 draw_bar(); |
16
359b6e563b95
several changes, new stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
14
diff
changeset
|
304 } |
5 | 305 } |
0 | 306 |
307 cleanup(); | |
308 XCloseDisplay(dpy); | |
309 | |
310 return 0; | |
311 } |