dwm-meillo

diff dwm.h @ 74:5370ef170cc9

sanitized names
author Anselm R. Garbe <garbeam@wmii.de>
date Fri, 14 Jul 2006 22:54:09 +0200
parents c2ddb9dbbd10
children f08271b7cb20
line diff
     1.1 --- a/dwm.h	Fri Jul 14 22:33:38 2006 +0200
     1.2 +++ b/dwm.h	Fri Jul 14 22:54:09 2006 +0200
     1.3 @@ -107,22 +107,22 @@
     1.4  extern void unmanage(Client *c);
     1.5  extern Client *getclient(Window w);
     1.6  extern void focus(Client *c);
     1.7 -extern void update_name(Client *c);
     1.8 +extern void settitle(Client *c);
     1.9  extern void resize(Client *c, Bool inc);
    1.10 -extern void update_size(Client *c);
    1.11 +extern void setsize(Client *c);
    1.12  extern Client *gettitle(Window w);
    1.13 -extern void craise(Client *c);
    1.14 +extern void higher(Client *c);
    1.15  extern void lower(Client *c);
    1.16  extern void gravitate(Client *c, Bool invert);
    1.17 -extern void ban_client(Client *c);
    1.18 -extern Client *next(Client *c);
    1.19 +extern void ban(Client *c);
    1.20 +extern Client *getnext(Client *c);
    1.21  
    1.22  /* draw.c */
    1.23 -extern void draw_bar();
    1.24 -extern void draw_client(Client *c);
    1.25 +extern void drawstatus();
    1.26 +extern void drawtitle(Client *c);
    1.27  extern void drawtext(const char *text, Bool invert, Bool border);
    1.28 -extern unsigned long initcolor(const char *colstr);
    1.29 -extern void initfont(const char *fontstr);
    1.30 +extern unsigned long getcolor(const char *colstr);
    1.31 +extern void setfont(const char *fontstr);
    1.32  extern unsigned int textnw(char *text, unsigned int len);
    1.33  extern unsigned int textw(char *text);
    1.34  extern unsigned int texth(void);
    1.35 @@ -132,9 +132,9 @@
    1.36  extern void keypress(XEvent *e);
    1.37  
    1.38  /* main.c */
    1.39 -extern int error_handler(Display *dsply, XErrorEvent *e);
    1.40 -extern void send_message(Window w, Atom a, long value);
    1.41 -extern int win_proto(Window w);
    1.42 +extern int xerror(Display *dsply, XErrorEvent *e);
    1.43 +extern void sendevent(Window w, Atom a, long value);
    1.44 +extern int proto(Window w);
    1.45  extern void quit(Arg *arg);
    1.46  
    1.47  /* screen.c */