You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

91 lines
1.9 KiB

18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
  1. /*
  2. * (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com>
  3. * See LICENSE file for license details.
  4. */
  5. #include "config.h"
  6. #include "draw.h"
  7. #include "util.h"
  8. #include <X11/Xutil.h>
  9. #define WM_PROTOCOL_DELWIN 1
  10. typedef struct Client Client;
  11. typedef struct Key Key;
  12. /* atoms */
  13. enum { WMProtocols, WMDelete, WMLast };
  14. enum { NetSupported, NetWMName, NetLast };
  15. /* cursor */
  16. enum { CurNormal, CurResize, CurMove, CurInput, CurLast };
  17. struct Client {
  18. char name[256], tag[256];
  19. int proto;
  20. int x, y, w, h;
  21. int tx, ty, tw, th;
  22. int basew, baseh, incw, inch, maxw, maxh, minw, minh;
  23. long flags;
  24. Window win;
  25. Window trans;
  26. Window title;
  27. Client *next;
  28. Client *snext;
  29. };
  30. struct Key {
  31. unsigned long mod;
  32. KeySym keysym;
  33. void (*func)(void *aux);
  34. void *aux;
  35. };
  36. extern Display *dpy;
  37. extern Window root, barwin;
  38. extern Atom wm_atom[WMLast], net_atom[NetLast];
  39. extern Cursor cursor[CurLast];
  40. extern XRectangle rect, barrect;
  41. extern Bool running, sel_screen, grid;
  42. extern void (*handler[LASTEvent]) (XEvent *);
  43. extern int screen;
  44. extern char statustext[1024], tag[256];
  45. extern Brush brush;
  46. extern Client *clients, *stack;
  47. /* bar.c */
  48. extern void draw_bar();
  49. /* cmd.c */
  50. extern void run(void *aux);
  51. extern void quit(void *aux);
  52. extern void kill(void *aux);
  53. /* client.c */
  54. extern void manage(Window w, XWindowAttributes *wa);
  55. extern void unmanage(Client *c);
  56. extern Client *getclient(Window w);
  57. extern void focus(Client *c);
  58. extern void update_name(Client *c);
  59. extern void draw_client(Client *c);
  60. extern void resize(Client *c);
  61. extern void update_size(Client *c);
  62. /* event.c */
  63. extern unsigned int discard_events(long even_mask);
  64. /* key.c */
  65. extern void update_keys();
  66. extern void keypress(XEvent *e);
  67. /* mouse.c */
  68. extern void mresize(Client *c);
  69. extern void mmove(Client *c);
  70. /* wm.c */
  71. extern int error_handler(Display *dpy, XErrorEvent *error);
  72. extern void send_message(Window w, Atom a, long value);
  73. extern int win_proto(Window w);