about summary refs log tree commit diff stats
path: root/dwm.h
diff options
context:
space:
mode:
Diffstat (limited to 'dwm.h')
-rw-r--r--dwm.h106
1 files changed, 53 insertions, 53 deletions
diff --git a/dwm.h b/dwm.h
index d795c84..56b8433 100644
--- a/dwm.h
+++ b/dwm.h
@@ -78,72 +78,72 @@ typedef struct {
 	void (*arrange)(void);
 } Layout;
 
-extern const char *tags[];			/* all tags */
-extern char stext[256];				/* status text */
-extern int screen, sx, sy, sw, sh;		/* screen geometry */
-extern int wax, way, wah, waw;			/* windowarea geometry */
-extern unsigned int bh, blw;			/* bar height, bar layout label width */
-extern unsigned int ntags, numlockmask;		/* number of tags, dynamic lock mask */
-extern void (*handler[LASTEvent])(XEvent *);	/* event handler */
-extern Atom wmatom[WMLast], netatom[NetLast];
-extern Bool selscreen, *seltag;			/* seltag is array of Bool */
-extern Client *clients, *sel, *stack;		/* global client list and stack */
-extern Cursor cursor[CurLast];
-extern DC dc;					/* global draw context */
-extern Display *dpy;
-extern Layout *lt;
-extern Window root, barwin;
+extern const char *tags[];		/* all tags */
+char stext[256];			/* status text */
+int screen, sx, sy, sw, sh;		/* screen geometry */
+int wax, way, wah, waw;			/* windowarea geometry */
+unsigned int bh, blw;			/* bar height, bar layout label width */
+unsigned int ntags, numlockmask;	/* number of tags, dynamic lock mask */
+void (*handler[LASTEvent])(XEvent *);	/* event handler */
+Atom wmatom[WMLast], netatom[NetLast];
+Bool selscreen, *seltag;		/* seltag is array of Bool */
+Client *clients, *sel, *stack;		/* global client list and stack */
+Cursor cursor[CurLast];
+DC dc;					/* global draw context */
+Display *dpy;
+Layout *lt;
+Window root, barwin;
 
 /* client.c */
-extern void attach(Client *c);			/* attaches c to global client list */
-extern void configure(Client *c);		/* send synthetic configure event */
-extern void detach(Client *c);			/* detaches c from global client list */
-extern void focus(Client *c);			/* focus c, c may be NULL */
-extern void killclient(const char *arg);		/* kill c nicely */
-extern void manage(Window w, XWindowAttributes *wa);	/* manage new client */
-extern void resize(Client *c, int x, int y,
+void attach(Client *c);			/* attaches c to global client list */
+void configure(Client *c);		/* send synthetic configure event */
+void detach(Client *c);			/* detaches c from global client list */
+void focus(Client *c);			/* focus c, c may be NULL */
+void killclient(const char *arg);		/* kill c nicely */
+void manage(Window w, XWindowAttributes *wa);	/* manage new client */
+void resize(Client *c, int x, int y,
 		int w, int h, Bool sizehints);	/* resize with given coordinates c*/
-extern void togglefloating(const char *arg);	/* toggles focused client between floating/tiled state */
-extern void updatesizehints(Client *c);		/* update the size hint variables of c */
-extern void updatetitle(Client *c);		/* update the name of c */
-extern void unmanage(Client *c);		/* destroy c */
+void togglefloating(const char *arg);	/* toggles focused client between floating/tiled state */
+void updatesizehints(Client *c);		/* update the size hint variables of c */
+void updatetitle(Client *c);		/* update the name of c */
+void unmanage(Client *c);		/* destroy c */
 
 /* draw.c */
-extern void drawstatus(void);			/* draw the bar */
-extern void drawtext(const char *text, unsigned long col[ColLast]);	/* draw text */
-extern unsigned int textw(const char *text);	/* return the width of text in px*/
+void drawstatus(void);			/* draw the bar */
+void drawtext(const char *text, unsigned long col[ColLast]);	/* draw text */
+unsigned int textw(const char *text);	/* return the width of text in px*/
 
 /* event.c */
-extern void grabkeys(void);			/* grab all keys defined in config.h */
+void grabkeys(void);			/* grab all keys defined in config.h */
 
 /* layout.c */
-extern void floating(void);			/* arranges all windows floating */
-extern void focusclient(const char *arg);	/* focuses next(1)/previous(-1) visible client */
-extern void incmasterw(const char *arg);	/* increments the master width with arg's index value */
-extern void incnmaster(const char *arg);	/* increments nmaster with arg's index value */
-extern void initlayouts(void);			/* initialize layout array */
-extern Client *nexttiled(Client *c);		/* returns tiled successor of c */
-extern void restack(void);			/* restores z layers of all clients */
-extern void setlayout(const char *arg);		/* sets layout, -1 toggles */
-extern void togglemax(const char *arg);		/* toggles maximization of floating client */
-extern void zoom(const char *arg);		/* zooms the focused client to master area, arg is ignored */
+void floating(void);			/* arranges all windows floating */
+void focusclient(const char *arg);	/* focuses next(1)/previous(-1) visible client */
+void incmasterw(const char *arg);	/* increments the master width with arg's index value */
+void incnmaster(const char *arg);	/* increments nmaster with arg's index value */
+void initlayouts(void);			/* initialize layout array */
+Client *nexttiled(Client *c);		/* returns tiled successor of c */
+void restack(void);			/* restores z layers of all clients */
+void setlayout(const char *arg);		/* sets layout, -1 toggles */
+void togglemax(const char *arg);		/* toggles maximization of floating client */
+void zoom(const char *arg);		/* zooms the focused client to master area, arg is ignored */
 
 /* main.c */
-extern void quit(const char *arg);		/* quit dwm nicely */
-extern void sendevent(Window w, Atom a, long value);	/* send synthetic event to w */
-extern int xerror(Display *dsply, XErrorEvent *ee);	/* dwm's X error handler */
+void quit(const char *arg);		/* quit dwm nicely */
+void sendevent(Window w, Atom a, long value);	/* send synthetic event to w */
+int xerror(Display *dsply, XErrorEvent *ee);	/* dwm's X error handler */
 
 /* tag.c */
-extern void compileregs(void);			/* initialize regexps of rules defined in config.h */
-extern Bool isvisible(Client *c);		/* returns True if client is visible */
-extern void settags(Client *c, Client *trans);	/* sets tags of c */
-extern void tag(const char *arg);		/* tags c with arg's index */
-extern void toggletag(const char *arg);		/* toggles c tags with arg's index */
-extern void toggleview(const char *arg);	/* toggles the tag with arg's index (in)visible */
-extern void view(const char *arg);		/* views the tag with arg's index */
+void compileregs(void);			/* initialize regexps of rules defined in config.h */
+Bool isvisible(Client *c);		/* returns True if client is visible */
+void settags(Client *c, Client *trans);	/* sets tags of c */
+void tag(const char *arg);		/* tags c with arg's index */
+void toggletag(const char *arg);		/* toggles c tags with arg's index */
+void toggleview(const char *arg);	/* toggles the tag with arg's index (in)visible */
+void view(const char *arg);		/* views the tag with arg's index */
 
 /* util.c */
-extern void *emallocz(unsigned int size);	/* allocates zero-initialized memory, exits on error */
-extern void eprint(const char *errstr, ...);	/* prints errstr and exits with 1 */
-extern void spawn(const char *arg);		/* forks a new subprocess with arg's cmd */
+void *emallocz(unsigned int size);	/* allocates zero-initialized memory, exits on error */
+void eprint(const char *errstr, ...);	/* prints errstr and exits with 1 */
+void spawn(const char *arg);		/* forks a new subprocess with arg's cmd */
 
title='author Andreas Rumpf <rumpf_a@web.de> 2017-10-07 09:35:45 +0200 committer Andreas Rumpf <rumpf_a@web.de> 2017-10-09 21:12:40 +0200 work in progress: a dataflow architecture for Nim' href='/ahoang/Nim/commit/compiler/dfa.nim?h=devel&id=b9511a2d7f6b2037ed461abddfc85b3afd5108d9'>b9511a2d7 ^
42db75c97 ^






b9511a2d7 ^
b9511a2d7 ^
cf01cb193 ^
8d47bf182 ^
b9511a2d7 ^
234bed1b3 ^
8d47bf182 ^
b9511a2d7 ^
62394616e ^
b9511a2d7 ^

93ced3135 ^
b9511a2d7 ^
cf01cb193 ^
b9511a2d7 ^
8d47bf182 ^
cf01cb193 ^
b9511a2d7 ^



690f21043 ^
b9511a2d7 ^
cf01cb193 ^
2fecf4f36 ^
045e026d0 ^
8d47bf182 ^



b9511a2d7 ^
bab5e3097 ^
b9511a2d7 ^

b9511a2d7 ^
62394616e ^
cf01cb193 ^
62394616e ^
b9511a2d7 ^
8d47bf182 ^
b9511a2d7 ^
8d47bf182 ^
b9511a2d7 ^
8d47bf182 ^
b9511a2d7 ^
8d47bf182 ^
11022fea1 ^
62394616e ^




b9511a2d7 ^
8d47bf182 ^

b9511a2d7 ^


62394616e ^
b9511a2d7 ^
4ab6887a6 ^
42db75c97 ^
b9511a2d7 ^
93ced3135 ^
8d47bf182 ^
42db75c97 ^



8d47bf182 ^
42db75c97 ^

b9511a2d7 ^

62394616e ^

42db75c97 ^
b9511a2d7 ^


8d47bf182 ^













7e747d11c ^
8d47bf182 ^

b9511a2d7 ^
8d47bf182 ^

7e747d11c ^
8d47bf182 ^
11022fea1 ^
b9511a2d7 ^
11022fea1 ^











87a2ced1b ^
11022fea1 ^

87a2ced1b ^
11022fea1 ^
87a2ced1b ^
11022fea1 ^

87a2ced1b ^
11022fea1 ^














b9511a2d7 ^
8d47bf182 ^


7e747d11c ^
62394616e ^
7e747d11c ^
b9511a2d7 ^
8d47bf182 ^








b9511a2d7 ^


87a2ced1b ^
b9511a2d7 ^
87a2ced1b ^
11022fea1 ^
7e747d11c ^
8d47bf182 ^
7e747d11c ^
b9511a2d7 ^

87a2ced1b ^
b9511a2d7 ^

87a2ced1b ^

b9511a2d7 ^

87a2ced1b ^
b9511a2d7 ^

7e747d11c ^
a95b6391f ^
2fecf4f36 ^
b9511a2d7 ^
7e747d11c ^
8d47bf182 ^

7e747d11c ^

62394616e ^
11022fea1 ^

b9511a2d7 ^
8d47bf182 ^
62394616e ^
8d47bf182 ^






42db75c97 ^





8d47bf182 ^
42db75c97 ^


93ced3135 ^
427ad1716 ^

42db75c97 ^





42db75c97 ^
8d47bf182 ^
42db75c97 ^
42db75c97 ^









b9511a2d7 ^


b39302b0d ^
42db75c97 ^



7e747d11c ^
b39302b0d ^
42db75c97 ^

b39302b0d ^
11022fea1 ^
42db75c97 ^
b39302b0d ^
7e747d11c ^

b9511a2d7 ^
8d47bf182 ^
62394616e ^
8d47bf182 ^
11022fea1 ^
62394616e ^
11022fea1 ^
b9511a2d7 ^

7e747d11c ^
b9511a2d7 ^
8d47bf182 ^
690f21043 ^
8d47bf182 ^
690f21043 ^
b9511a2d7 ^
8d47bf182 ^
7e747d11c ^
b39302b0d ^
42db75c97 ^




b39302b0d ^
8d47bf182 ^
b9511a2d7 ^
234bed1b3 ^

7e747d11c ^
234bed1b3 ^
b9511a2d7 ^
8d47bf182 ^
7e747d11c ^

234bed1b3 ^

42db75c97 ^
b9511a2d7 ^

045e026d0 ^
b9511a2d7 ^
62394616e ^

7e6e399d1 ^
62394616e ^


7e6e399d1 ^
62394616e ^







7e6e399d1 ^
b03d6c9b2 ^
8d47bf182 ^


b03d6c9b2 ^
240174dd8 ^
b9511a2d7 ^
62394616e ^



8d47bf182 ^


62394616e ^
b9511a2d7 ^





0d23419e6 ^


b39302b0d ^
427ad1716 ^

11022fea1 ^
87a2ced1b ^
11022fea1 ^
87a2ced1b ^
11022fea1 ^
8d47bf182 ^
62394616e ^



b9511a2d7 ^






b9511a2d7 ^




cfd521040 ^


b9511a2d7 ^
7e747d11c ^
b9511a2d7 ^


7e747d11c ^
b9511a2d7 ^
4ab6887a6 ^
b9511a2d7 ^


7e747d11c ^

b9511a2d7 ^



7e747d11c ^
8d47bf182 ^
b9511a2d7 ^


81087c949 ^
b9511a2d7 ^
bc14b7735 ^





045e026d0 ^


b9511a2d7 ^
62394616e ^
045e026d0 ^
b9511a2d7 ^


7e747d11c ^
b9511a2d7 ^





bf592c4e9 ^
b9511a2d7 ^
73c570d1d ^
b9511a2d7 ^

62394616e ^


7e747d11c ^
b9511a2d7 ^
7be2e2bef ^
b9511a2d7 ^

8d47bf182 ^
















cf01cb193 ^
8d47bf182 ^
42db75c97 ^

8d47bf182 ^

4533e894a ^
e31ac8189 ^


8d47bf182 ^

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501