diff options
| author | Scott Moynes <smoynes@nexus.carleton.ca> | 2002-07-21 22:35:43 +0000 |
|---|---|---|
| committer | Scott Moynes <smoynes@nexus.carleton.ca> | 2002-07-21 22:35:43 +0000 |
| commit | a0cf45a0ef5f7e2cbf0833f4d8655131912400cc (patch) | |
| tree | 1a0332ffccb2bb55432b7228d48bad2538217d3a /util/epist/epist.hh | |
| parent | f754eb0ea4de43f4d99861e4c8311f7a57b87a11 (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.hh | 5 |
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; } }; |
