| 105 |
105 |
|
/* client.c */ |
| 106 |
106 |
|
extern void configure(Client *c); /* send synthetic configure event */ |
| 107 |
107 |
|
extern void focus(Client *c); /* focus c, c may be NULL */ |
| 108 |
|
- |
extern void focusnext(Arg *arg); /* focuses next visible client, arg is ignored */ |
| 109 |
|
- |
extern void focusprev(Arg *arg); /* focuses previous visible client, arg is ignored */ |
| 110 |
108 |
|
extern void killclient(Arg *arg); /* kill c nicely */ |
| 111 |
109 |
|
extern void manage(Window w, XWindowAttributes *wa); /* manage new client */ |
| 112 |
|
- |
extern Client *nexttiled(Client *c); /* returns tiled successor of c */ |
| 113 |
110 |
|
extern void resize(Client *c, int x, int y, |
| 114 |
111 |
|
int w, int h, Bool sizehints); /* resize with given coordinates c*/ |
|
112 |
+ |
extern void toggleversatile(Arg *arg); /* toggles focused client between versatile/and non-versatile state */ |
| 115 |
113 |
|
extern void updatesizehints(Client *c); /* update the size hint variables of c */ |
| 116 |
114 |
|
extern void updatetitle(Client *c); /* update the name of c */ |
| 117 |
115 |
|
extern void unmanage(Client *c); /* destroy c */ |
|
| 127 |
125 |
|
extern void grabkeys(void); /* grab all keys defined in config.h */ |
| 128 |
126 |
|
|
| 129 |
127 |
|
/* layout.c */ |
|
128 |
+ |
extern void focusnext(Arg *arg); /* focuses next visible client, arg is ignored */ |
|
129 |
+ |
extern void focusprev(Arg *arg); /* focuses previous visible client, arg is ignored */ |
| 130 |
130 |
|
extern void incnmaster(Arg *arg); /* increments nmaster with arg's index value */ |
| 131 |
131 |
|
extern void initlayouts(void); /* initialize layout array */ |
|
132 |
+ |
extern Client *nexttiled(Client *c); /* returns tiled successor of c */ |
| 132 |
133 |
|
extern void resizemaster(Arg *arg); /* resizes the master percent with arg's index value */ |
| 133 |
134 |
|
extern void restack(void); /* restores z layers of all clients */ |
| 134 |
135 |
|
extern void setlayout(Arg *arg); /* sets layout, -1 toggles */ |
| 135 |
|
- |
extern void toggleversatile(Arg *arg); /* toggles focusesd client between versatile/and non-versatile state */ |
| 136 |
136 |
|
extern void versatile(void); /* arranges all windows versatile */ |
| 137 |
137 |
|
|
| 138 |
138 |
|
/* main.c */ |