small change to comments, renamed two set* functions in client.c into update* d2d394ec
Anselm R. Garbe · 2006-09-11 10:00 3 file(s) · +17 −17
client.c +4 −4
223 223
	c->th = bh;
224 224
225 225
	c->border = 0;
226 -
	setsize(c);
226 +
	updatesize(c);
227 227
228 228
	if(c->x + c->w + 2 > sw)
229 229
		c->x = sw - c->w - 2;
260 260
	c->snext = stack;
261 261
	stack = clients = c;
262 262
263 -
	settitle(c);
263 +
	updatetitle(c);
264 264
	ban(c);
265 265
	XMapWindow(dpy, c->win);
266 266
	XMapWindow(dpy, c->twin);
309 309
}
310 310
311 311
void
312 -
setsize(Client *c)
312 +
updatesize(Client *c)
313 313
{
314 314
	long msize;
315 315
	XSizeHints size;
348 348
}
349 349
350 350
void
351 -
settitle(Client *c)
351 +
updatetitle(Client *c)
352 352
{
353 353
	char **list = NULL;
354 354
	int n;
dwm.h +11 −11
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 */
event.c +2 −2
343 343
					arrange(NULL);
344 344
				break;
345 345
			case XA_WM_NORMAL_HINTS:
346 -
				setsize(c);
346 +
				updatesize(c);
347 347
				break;
348 348
		}
349 349
		if(ev->atom == XA_WM_NAME || ev->atom == netatom[NetWMName]) {
350 -
			settitle(c);
350 +
			updatetitle(c);
351 351
			drawtitle(c);
352 352
		}
353 353
	}