mirror of https://github.com/0intro/wmii
cosmetic changes in wm.h
This commit is contained in:
parent
47817e833e
commit
313956abe0
24
cmd/wm/wm.h
24
cmd/wm/wm.h
|
@ -203,22 +203,22 @@ unsigned int bar_height();
|
|||
|
||||
/* client.c */
|
||||
Client *alloc_client(Window w, XWindowAttributes *wa);
|
||||
void destroy_client(Client * c);
|
||||
void configure_client(Client * c);
|
||||
void handle_client_property(Client * c, XPropertyEvent * e);
|
||||
void kill_client(Client * c);
|
||||
void draw_client(Client * client);
|
||||
void gravitate(Client * c, unsigned int tabh, unsigned int bw, int invert);
|
||||
void unmap_client(Client * c);
|
||||
void map_client(Client * c);
|
||||
void reparent_client(Client * c, Window w, int x, int y);
|
||||
void attach_client(Client * c);
|
||||
void detach_client(Client * c, Bool unmap);
|
||||
void destroy_client(Client *c);
|
||||
void configure_client(Client *c);
|
||||
void handle_client_property(Client *c, XPropertyEvent *e);
|
||||
void kill_client(Client *c);
|
||||
void draw_client(Client *client);
|
||||
void gravitate(Client *c, unsigned int tabh, unsigned int bw, int invert);
|
||||
void unmap_client(Client *c);
|
||||
void map_client(Client *c);
|
||||
void reparent_client(Client *c, Window w, int x, int y);
|
||||
void attach_client(Client *c);
|
||||
void detach_client(Client *c, Bool unmap);
|
||||
Client *sel_client();
|
||||
Client *sel_client_of_page(Page *p);
|
||||
void focus_client(Client *c, Bool fevent);
|
||||
Client *win_to_frame(Window w);
|
||||
void resize_client(Client *c, XRectangle * r, XPoint * pt);
|
||||
void resize_client(Client *c, XRectangle *r, XPoint *pt);
|
||||
int cid_to_index(Area *a, unsigned short id);
|
||||
int client_to_index(Client *c);
|
||||
void select_client(Client *c, char *arg);
|
||||
|
|
Loading…
Reference in New Issue