about summary refs log tree commit diff stats
path: root/wm.h
diff options
context:
space:
mode:
authorAnselm R. Garbe <garbeam@wmii.de>2006-07-12 15:17:22 +0200
committerAnselm R. Garbe <garbeam@wmii.de>2006-07-12 15:17:22 +0200
commitdfd84f9bf3b9d949412a73bc62a43109b340d395 (patch)
treeebeac582951e2ef574f50018298c4bc928849d64 /wm.h
parent7696c89c90c926f6371b1ee3ec1b13dd2414aa40 (diff)
downloaddwm-dfd84f9bf3b9d949412a73bc62a43109b340d395.tar.gz
simplified several portions of code through replacing rect structs with x,y,h,w counterparts (much more readable)
Diffstat (limited to 'wm.h')
-rw-r--r--wm.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/wm.h b/wm.h
index 8f31f60..b5b07b5 100644
--- a/wm.h
+++ b/wm.h
@@ -46,11 +46,10 @@ extern Display *dpy;
 extern Window root, barwin;
 extern Atom wm_atom[WMLast], net_atom[NetLast];
 extern Cursor cursor[CurLast];
-extern XRectangle rect, barrect;
 extern Bool running, sel_screen, grid;
 extern void (*handler[LASTEvent]) (XEvent *);
 
-extern int screen;
+extern int screen, sx, sy, sw, sh, bx, by, bw, bh;
 extern char statustext[1024], tag[256];
 
 extern Brush brush;
@@ -75,9 +74,11 @@ extern void draw_client(Client *c);
 extern void resize(Client *c);
 extern void update_size(Client *c);
 extern Client *gettitle(Window w);
+extern void raise(Client *c);
+extern void lower(Client *c);
 
 /* event.c */
-extern unsigned int discard_events(long even_mask);
+extern void discard_events(long even_mask);
 
 /* key.c */
 extern void update_keys();
tik K. Agaram <vc@akkartik.com> 2015-04-03 20:45:03 -0700 committer Kartik K. Agaram <vc@akkartik.com> 2015-04-03 20:45:14 -0700 1014 - reorganize build system to prepare for .mu layers' href='/akkartik/mu/commit/cpp/makefile?h=main&id=6d943605ad7c5989716a3f9c05392f1394980a05'>6d943605 ^
01b2852b ^
6d943605 ^
88663269 ^
e45c1ce2 ^
5f128523 ^

56ce5577 ^



01b2852b ^
c8dd393c ^
793fcf5f ^

c8dd393c ^

56ce5577 ^
c8dd393c ^
75cbfa28 ^
88663269 ^
56ce5577 ^
01b2852b ^
75cbfa28 ^

88663269 ^
c2d49d81 ^

e53787f5 ^
c2d49d81 ^
e53787f5 ^

201b2e6c ^
88663269 ^
6d943605 ^
01b2852b ^
5f128523 ^
fa3d7edc ^
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