My build of the simple terminal from suckless.org.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 

40 lignes
1.0 KiB

  1. /* See LICENSE for license details. */
  2. enum win_mode {
  3. MODE_VISIBLE = 1 << 0,
  4. MODE_FOCUSED = 1 << 1,
  5. MODE_APPKEYPAD = 1 << 2,
  6. MODE_MOUSEBTN = 1 << 3,
  7. MODE_MOUSEMOTION = 1 << 4,
  8. MODE_REVERSE = 1 << 5,
  9. MODE_KBDLOCK = 1 << 6,
  10. MODE_HIDE = 1 << 7,
  11. MODE_APPCURSOR = 1 << 8,
  12. MODE_MOUSESGR = 1 << 9,
  13. MODE_8BIT = 1 << 10,
  14. MODE_BLINK = 1 << 11,
  15. MODE_FBLINK = 1 << 12,
  16. MODE_FOCUS = 1 << 13,
  17. MODE_MOUSEX10 = 1 << 14,
  18. MODE_MOUSEMANY = 1 << 15,
  19. MODE_BRCKTPASTE = 1 << 16,
  20. MODE_NUMLOCK = 1 << 17,
  21. MODE_MOUSE = MODE_MOUSEBTN|MODE_MOUSEMOTION|MODE_MOUSEX10\
  22. |MODE_MOUSEMANY,
  23. };
  24. void xbell(void);
  25. void xclipcopy(void);
  26. void xdrawcursor(int, int, Glyph, int, int, Glyph);
  27. void xdrawline(Line, int, int, int);
  28. void xfinishdraw(void);
  29. void xloadcols(void);
  30. int xsetcolorname(int, const char *);
  31. void xsettitle(char *);
  32. int xsetcursor(int);
  33. void xsetmode(int, unsigned int);
  34. void xsetpointermotion(int);
  35. void xsetsel(char *);
  36. int xstartdraw(void);
  37. void xximspot(int, int);