summaryrefslogtreecommitdiff
path: root/util/epist/epist.hh
diff options
context:
space:
mode:
authorScott Moynes <smoynes@nexus.carleton.ca>2002-07-21 22:35:43 +0000
committerScott Moynes <smoynes@nexus.carleton.ca>2002-07-21 22:35:43 +0000
commita0cf45a0ef5f7e2cbf0833f4d8655131912400cc (patch)
tree1a0332ffccb2bb55432b7228d48bad2538217d3a /util/epist/epist.hh
parentf754eb0ea4de43f4d99861e4c8311f7a57b87a11 (diff)
handle all combinations of lock modifiers on keypress
this should be an rc file option
Diffstat (limited to 'util/epist/epist.hh')
-rw-r--r--util/epist/epist.hh5
1 files changed, 5 insertions, 0 deletions
diff --git a/util/epist/epist.hh b/util/epist/epist.hh
index 7bd0d276..c0687e02 100644
--- a/util/epist/epist.hh
+++ b/util/epist/epist.hh
@@ -67,6 +67,11 @@ public:
void removeWindow(XWindow *window);
XWindow *findWindow(Window window) const;
+ void getLockModifiers(int &numlockMask, int &scrolllockMask) const {
+ numlockMask = NumLockMask;
+ scrolllockMask = ScrollLockMask;
+ }
+
const ActionList &actions(void) { return _actions; }
};