X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;f=util%2Fepist%2Fepist.hh;h=c0687e021cb0edcc58cd79d2401c956021bf7fdb;hb=6ea8fb9afa1df8415fe88198525254c59a01230e;hp=755fec8cd8a705958d40ab0c9ff50b7070abaac1;hpb=f586e55a8cd3d740a1b7b3a0801bad27030926f9;p=chaz%2Fopenbox diff --git a/util/epist/epist.hh b/util/epist/epist.hh index 755fec8c..c0687e02 100644 --- a/util/epist/epist.hh +++ b/util/epist/epist.hh @@ -1,5 +1,5 @@ // -*- mode: C++; indent-tabs-mode: nil; -*- -// epist.hh for Epistory - a key handler for NETWM/EWMH window managers. +// epist.hh for Epistophy - a key handler for NETWM/EWMH window managers. // Copyright (c) 2002 - 2002 Ben Jansens // // Permission is hereby granted, free of charge, to any person obtaining a @@ -51,7 +51,7 @@ private: typedef WindowLookup::value_type WindowLookupPair; WindowLookup _windows; - ActionList _actions; + ActionList _actions; virtual void process_event(XEvent *e); virtual bool handleSignal(int sig); @@ -67,7 +67,12 @@ public: void removeWindow(XWindow *window); XWindow *findWindow(Window window) const; - list actions(void) { return _actions; } + void getLockModifiers(int &numlockMask, int &scrolllockMask) const { + numlockMask = NumLockMask; + scrolllockMask = ScrollLockMask; + } + + const ActionList &actions(void) { return _actions; } }; #endif // __epist_hh