summaryrefslogtreecommitdiff
path: root/util.cpp
diff options
context:
space:
mode:
authorBossCode45 <human.cyborg42@gmail.com>2023-06-28 21:24:59 +1200
committerBossCode45 <human.cyborg42@gmail.com>2023-06-28 21:24:59 +1200
commit37a2725da41e363fcdca12d0374b192cd03905d0 (patch)
treee2eaa5e14171987e7e06fca21b3d6d9253e80165 /util.cpp
parent638c3ac10003f66ef4af43f50ee365c9036da0fe (diff)
downloadYATwm-37a2725da41e363fcdca12d0374b192cd03905d0.tar.gz
YATwm-37a2725da41e363fcdca12d0374b192cd03905d0.zip
feat: Added key chording
Probably a hacky mess but oh well. Key chords can be done by seperating binds in string with ` `. You can set the quit bind with `quitkey`, default mod+g. (Chords also exited when pressing unbound keys).
Diffstat (limited to 'util.cpp')
-rw-r--r--util.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/util.cpp b/util.cpp
index dff3428..7fe5641 100644
--- a/util.cpp
+++ b/util.cpp
@@ -15,3 +15,10 @@ std::vector<string> split (const string &s, char delim) {
return result;
}
+
+const string evNames[] = {"", "", "KeyPress", "KeyRelease", "ButtonPress", "ButtonRelease", "MotionNotify", "EnterNotify", "LeaveNotify", "FocusIn", "FocusOut", "KeymapNotify", "Expose", "GraphicsExpose", "NoExpose", "VisibilityNotify", "CreateNotify", "DestroyNotify", "UnmapNotify", "MapNotify", "MapRequest", "ReparentNotify", "ConfigureNotify", "ConfigureRequest", "GravityNotify", "ResizeRequest", "CirculateNotify", "CirculateRequest", "PropertyNotify", "SelectionClear", "SelectionRequest", "SelectionNotify", "ColormapNotify", "ClientMessage", "MappingNotify", "GenericEvent", "LASTEvent"};
+
+string getEventName(int e)
+{
+ return evNames[e];
+}