X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=util%2Fepist%2Fepist.hh;h=6da3818188283a9c16bbde93e9eaec6c3c7dcce5;hb=fc792813a24d22330b49eda8b3ef7054eadf20d3;hp=ceaebdfa997c9e2fb41b9918a543239905c327a8;hpb=b790e78e0ac99d3bcdc3f7e11b43e4da1ede8968;p=chaz%2Fopenbox diff --git a/util/epist/epist.hh b/util/epist/epist.hh index ceaebdfa..6da38181 100644 --- a/util/epist/epist.hh +++ b/util/epist/epist.hh @@ -30,7 +30,7 @@ extern "C" { #include #include -#include +#include "actions.hh" #include "../../src/BaseDisplay.hh" @@ -51,12 +51,17 @@ private: typedef WindowLookup::value_type WindowLookupPair; WindowLookup _windows; - ActionList _actions; + ActionList _actions; virtual void process_event(XEvent *e); virtual bool handleSignal(int sig); void activateGrabs(); + void addAction(Action::ActionType act, unsigned int modifiers, + std::string key, int number = 0); + void addAction(Action::ActionType act, unsigned int modifiers, + std::string key, std::string str); + public: epist(char **argv, char *display_name, char *rc_file); virtual ~epist(); @@ -67,6 +72,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; } };