X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;f=util%2Fepist%2Fepist.hh;h=1932902db45918bec99c83ac61fc9a5f9f892c71;hb=8e38989ee8533c364a7f407bdafef351d9f1823e;hp=049a672c8ed71848ee545c84731801de6b455c31;hpb=3a9f0752745f5f77dabef3e52cfc573130676f65;p=chaz%2Fopenbox diff --git a/util/epist/epist.hh b/util/epist/epist.hh index 049a672c..1932902d 100644 --- a/util/epist/epist.hh +++ b/util/epist/epist.hh @@ -30,28 +30,31 @@ extern "C" { #include #include -#include +#include "actions.hh" +#include "window.hh" #include "../../src/BaseDisplay.hh" class XAtom; class screen; -class XWindow; class epist : public BaseDisplay { private: - std::string _rc_file; - XAtom *_xatom; - char **_argv; + std::string _rc_file; + XAtom *_xatom; + char **_argv; typedef std::vector ScreenList; - ScreenList _screens; + ScreenList _screens; typedef std::map WindowLookup; typedef WindowLookup::value_type WindowLookupPair; WindowLookup _windows; + + WindowList _clients; + WindowList::iterator _active; - ActionList _actions; + ActionList _actions; virtual void process_event(XEvent *e); virtual bool handleSignal(int sig); @@ -72,12 +75,17 @@ public: void removeWindow(XWindow *window); XWindow *findWindow(Window window) const; + void cycleScreen(int current, bool forward) const; + void getLockModifiers(int &numlockMask, int &scrolllockMask) const { numlockMask = NumLockMask; scrolllockMask = ScrollLockMask; } const ActionList &actions(void) { return _actions; } + + WindowList& clientsList() { return _clients; } + WindowList::iterator& activeWindow() { return _active; } }; #endif // __epist_hh