Introduction
Introduction Statistics Contact Development Disclaimer Help
tsmall change to comments, renamed two set* functions in client.c into update* …
git clone git://src.adamsgaard.dk/dwm
Log
Files
Refs
README
LICENSE
---
commit d2d394eccf2d23eb264a321fe187bb2084beb4b9
parent 438beeabde5e56f8d85e0dd143721e9372e3eab4
Author: Anselm R. Garbe <[email protected]>
Date: Mon, 11 Sep 2006 10:00:56 +0200
small change to comments, renamed two set* functions in client.c into update*
Diffstat:
M client.c | 8 ++++----
M dwm.h | 22 +++++++++++-----------
M event.c | 4 ++--
3 files changed, 17 insertions(+), 17 deletions(-)
---
diff --git a/client.c b/client.c
t@@ -223,7 +223,7 @@ manage(Window w, XWindowAttributes *wa)
c->th = bh;
c->border = 0;
- setsize(c);
+ updatesize(c);
if(c->x + c->w + 2 > sw)
c->x = sw - c->w - 2;
t@@ -260,7 +260,7 @@ manage(Window w, XWindowAttributes *wa)
c->snext = stack;
stack = clients = c;
- settitle(c);
+ updatetitle(c);
ban(c);
XMapWindow(dpy, c->win);
XMapWindow(dpy, c->twin);
t@@ -309,7 +309,7 @@ resize(Client *c, Bool sizehints, Corner sticky)
}
void
-setsize(Client *c)
+updatesize(Client *c)
{
long msize;
XSizeHints size;
t@@ -348,7 +348,7 @@ setsize(Client *c)
}
void
-settitle(Client *c)
+updatetitle(Client *c)
{
char **list = NULL;
int n;
diff --git a/dwm.h b/dwm.h
t@@ -66,19 +66,19 @@ extern const char *tags[]; /* all t…
extern char stext[1024]; /* status text */
extern int bx, by, bw, bh, bmw; /* bar geometry, bar mo…
extern int mw, screen, sx, sy, sw, sh; /* screen geometry, mast…
-extern unsigned int ntags, numlockmask; /* number of tags, and …
+extern unsigned int ntags, numlockmask; /* number of tags, dyna…
extern void (*handler[LASTEvent])(XEvent *); /* event handler */
extern void (*arrange)(Arg *); /* arrange function, ind…
extern Atom wmatom[WMLast], netatom[NetLast];
extern Bool running, issel, maximized, *seltag; /* seltag is array of B…
-extern Client *clients, *sel, *stack; /* Client containers */
+extern Client *clients, *sel, *stack; /* global cleint list and…
extern Cursor cursor[CurLast];
-extern DC dc; /* draw context for every…
+extern DC dc; /* global draw context */
extern Display *dpy;
extern Window root, barwin;
/* client.c */
-extern void ban(Client *c); /* ban client from screen */
+extern void ban(Client *c); /* ban c from screen */
extern void focus(Client *c); /* focus c, c may be NULL…
extern Client *getclient(Window w); /* return client of w */
extern Client *getctitle(Window w); /* return client of title w…
t@@ -86,8 +86,8 @@ extern void gravitate(Client *c, Bool invert); /* gra…
extern void killclient(Arg *arg); /* kill c nicely */
extern void manage(Window w, XWindowAttributes *wa); /* manage new clie…
extern void resize(Client *c, Bool sizehints, Corner sticky); /* resize c*/
-extern void setsize(Client *c); /* set the size structs…
-extern void settitle(Client *c); /* set the name of c */
+extern void updatesize(Client *c); /* update the size s…
+extern void updatetitle(Client *c); /* update the name of c */
extern void togglemax(Arg *arg); /* (un)maximize c */
extern void unmanage(Client *c); /* destroy c */
t@@ -113,7 +113,7 @@ extern int xerror(Display *dsply, XErrorEvent *ee); …
extern void initrregs(); /* initialize regexps of rules…
extern Client *getnext(Client *c); /* returns next visible clie…
extern Client *getprev(Client *c); /* returns previous visible …
-extern void settags(Client *c, Client *trans); /* updates tags of c */
+extern void settags(Client *c, Client *trans); /* sets tags of c */
extern void tag(Arg *arg); /* tags c accordingly to arg…
extern void toggletag(Arg *arg); /* toggles c tags accordingly …
t@@ -132,8 +132,8 @@ extern void focusprev(Arg *arg); /* focuses…
extern Bool isvisible(Client *c); /* returns True if client is …
extern void resizecol(Arg *arg); /* resizes the master width ac…
extern void restack(); /* restores z layers of …
-extern void togglemode(Arg *arg); /* toggles global arrange mod…
-extern void toggleview(Arg *arg); /* makes the tag accordingly …
-extern void view(Arg *arg); /* makes the tag accordingl…
-extern void viewall(Arg *arg); /* makes all tags visibl…
+extern void togglemode(Arg *arg); /* toggles global arrange fun…
+extern void toggleview(Arg *arg); /* toggles the tag accordingl…
+extern void view(Arg *arg); /* views the tag accordingl…
+extern void viewall(Arg *arg); /* views all tags, arg i…
extern void zoom(Arg *arg); /* zooms the focused client…
diff --git a/event.c b/event.c
t@@ -343,11 +343,11 @@ propertynotify(XEvent *e)
arrange(NULL);
break;
case XA_WM_NORMAL_HINTS:
- setsize(c);
+ updatesize(c);
break;
}
if(ev->atom == XA_WM_NAME || ev->atom == netatom[NetWMName]) {
- settitle(c);
+ updatetitle(c);
drawtitle(c);
}
}
You are viewing proxied material from mx1.adamsgaard.dk. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.