summaryrefslogtreecommitdiff
path: root/sd/st/win.h
diff options
context:
space:
mode:
authorstkhan <personal@slickd.xyz>2021-06-19 10:42:34 -0500
committerstkhan <personal@slickd.xyz>2021-06-19 10:42:34 -0500
commite2dbb81b9144fd8be2eb89617db38fd361079fed (patch)
tree77cdbe3673b967c594327c878379aaae9c56daaf /sd/st/win.h
parente8df46e3babbb943a729935786a0d55dbe0e2028 (diff)
1.0.0b2
Former-commit-id: 7e8e8ad1998285a5b38c4bedd38acd0bbe37de4d
Diffstat (limited to 'sd/st/win.h')
-rw-r--r--sd/st/win.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/sd/st/win.h b/sd/st/win.h
new file mode 100644
index 0000000..8b5b618
--- /dev/null
+++ b/sd/st/win.h
@@ -0,0 +1,40 @@
+/* See LICENSE for license details. */
+
+enum win_mode {
+ MODE_VISIBLE = 1 << 0,
+ MODE_FOCUSED = 1 << 1,
+ MODE_APPKEYPAD = 1 << 2,
+ MODE_MOUSEBTN = 1 << 3,
+ MODE_MOUSEMOTION = 1 << 4,
+ MODE_REVERSE = 1 << 5,
+ MODE_KBDLOCK = 1 << 6,
+ MODE_HIDE = 1 << 7,
+ MODE_APPCURSOR = 1 << 8,
+ MODE_MOUSESGR = 1 << 9,
+ MODE_8BIT = 1 << 10,
+ MODE_BLINK = 1 << 11,
+ MODE_FBLINK = 1 << 12,
+ MODE_FOCUS = 1 << 13,
+ MODE_MOUSEX10 = 1 << 14,
+ MODE_MOUSEMANY = 1 << 15,
+ MODE_BRCKTPASTE = 1 << 16,
+ MODE_NUMLOCK = 1 << 17,
+ MODE_MOUSE = MODE_MOUSEBTN|MODE_MOUSEMOTION|MODE_MOUSEX10\
+ |MODE_MOUSEMANY,
+};
+
+void xbell(void);
+void xclipcopy(void);
+void xdrawcursor(int, int, Glyph, int, int, Glyph, Line, int);
+void xdrawline(Line, int, int, int);
+void xfinishdraw(void);
+void xloadcols(void);
+int xsetcolorname(int, const char *);
+void xseticontitle(char *);
+void xsettitle(char *);
+int xsetcursor(int);
+void xsetmode(int, unsigned int);
+void xsetpointermotion(int);
+void xsetsel(char *);
+int xstartdraw(void);
+void xximspot(int, int);