| 66 |
66 |
|
extern char stext[1024]; /* status text */ |
| 67 |
67 |
|
extern int bx, by, bw, bh, bmw; /* bar geometry, bar mode label width */ |
| 68 |
68 |
|
extern int mw, screen, sx, sy, sw, sh; /* screen geometry, master width */ |
| 69 |
|
- |
extern unsigned int ntags, numlockmask; /* number of tags, and dynamic lock mask */ |
|
69 |
+ |
extern unsigned int ntags, numlockmask; /* number of tags, dynamic lock mask */ |
| 70 |
70 |
|
extern void (*handler[LASTEvent])(XEvent *); /* event handler */ |
| 71 |
71 |
|
extern void (*arrange)(Arg *); /* arrange function, indicates mode */ |
| 72 |
72 |
|
extern Atom wmatom[WMLast], netatom[NetLast]; |
| 73 |
73 |
|
extern Bool running, issel, maximized, *seltag; /* seltag is array of Bool */ |
| 74 |
|
- |
extern Client *clients, *sel, *stack; /* Client containers */ |
|
74 |
+ |
extern Client *clients, *sel, *stack; /* global cleint list and stack */ |
| 75 |
75 |
|
extern Cursor cursor[CurLast]; |
| 76 |
|
- |
extern DC dc; /* draw context for everything */ |
|
76 |
+ |
extern DC dc; /* global draw context */ |
| 77 |
77 |
|
extern Display *dpy; |
| 78 |
78 |
|
extern Window root, barwin; |
| 79 |
79 |
|
|
| 80 |
80 |
|
/* client.c */ |
| 81 |
|
- |
extern void ban(Client *c); /* ban client from screen */ |
|
81 |
+ |
extern void ban(Client *c); /* ban c from screen */ |
| 82 |
82 |
|
extern void focus(Client *c); /* focus c, c may be NULL */ |
| 83 |
83 |
|
extern Client *getclient(Window w); /* return client of w */ |
| 84 |
84 |
|
extern Client *getctitle(Window w); /* return client of title window */ |
|
| 86 |
86 |
|
extern void killclient(Arg *arg); /* kill c nicely */ |
| 87 |
87 |
|
extern void manage(Window w, XWindowAttributes *wa); /* manage new client */ |
| 88 |
88 |
|
extern void resize(Client *c, Bool sizehints, Corner sticky); /* resize c*/ |
| 89 |
|
- |
extern void setsize(Client *c); /* set the size structs of c */ |
| 90 |
|
- |
extern void settitle(Client *c); /* set the name of c */ |
|
89 |
+ |
extern void updatesize(Client *c); /* update the size structs of c */ |
|
90 |
+ |
extern void updatetitle(Client *c); /* update the name of c */ |
| 91 |
91 |
|
extern void togglemax(Arg *arg); /* (un)maximize c */ |
| 92 |
92 |
|
extern void unmanage(Client *c); /* destroy c */ |
| 93 |
93 |
|
|
|
| 113 |
113 |
|
extern void initrregs(); /* initialize regexps of rules defined in config.h */ |
| 114 |
114 |
|
extern Client *getnext(Client *c); /* returns next visible client */ |
| 115 |
115 |
|
extern Client *getprev(Client *c); /* returns previous visible client */ |
| 116 |
|
- |
extern void settags(Client *c, Client *trans); /* updates tags of c */ |
|
116 |
+ |
extern void settags(Client *c, Client *trans); /* sets tags of c */ |
| 117 |
117 |
|
extern void tag(Arg *arg); /* tags c accordingly to arg's index */ |
| 118 |
118 |
|
extern void toggletag(Arg *arg); /* toggles c tags accordingly to arg's index */ |
| 119 |
119 |
|
|
|
| 132 |
132 |
|
extern Bool isvisible(Client *c); /* returns True if client is visible */ |
| 133 |
133 |
|
extern void resizecol(Arg *arg); /* resizes the master width accordingly to arg's index value */ |
| 134 |
134 |
|
extern void restack(); /* restores z layers of all clients */ |
| 135 |
|
- |
extern void togglemode(Arg *arg); /* toggles global arrange mode (between dotile and dofloat) */ |
| 136 |
|
- |
extern void toggleview(Arg *arg); /* makes the tag accordingly to arg's index (in)visible */ |
| 137 |
|
- |
extern void view(Arg *arg); /* makes the tag accordingly to arg's index visible */ |
| 138 |
|
- |
extern void viewall(Arg *arg); /* makes all tags visible, arg is ignored */ |
|
135 |
+ |
extern void togglemode(Arg *arg); /* toggles global arrange function (between dotile and dofloat) */ |
|
136 |
+ |
extern void toggleview(Arg *arg); /* toggles the tag accordingly to arg's index (in)visible */ |
|
137 |
+ |
extern void view(Arg *arg); /* views the tag accordingly to arg's index */ |
|
138 |
+ |
extern void viewall(Arg *arg); /* views all tags, arg is ignored */ |
| 139 |
139 |
|
extern void zoom(Arg *arg); /* zooms the focused client to master column, arg is ignored */ |