X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=util%2Fepist%2Fwindow.hh;h=636e90bae0691ef1951c47efccc719aa3f2df458;hb=014a3330e843387961cdcf3138da0f4b8b7deca3;hp=01cb2a8046985942524c497d77946a27f00f3cea;hpb=0aae72418670c23f3fac604aca62cc8a461704f6;p=chaz%2Fopenbox diff --git a/util/epist/window.hh b/util/epist/window.hh index 01cb2a80..636e90ba 100644 --- a/util/epist/window.hh +++ b/util/epist/window.hh @@ -28,31 +28,56 @@ extern "C" { } #include +#include +class epist; class XWindow; +class XAtom; -typedef std::list WindowList; +typedef std::list WindowList; class XWindow { private: + epist *_epist; + XAtom *_xatom; Window _window; + unsigned int _desktop; + std::string _title; + std::string _app_name; + std::string _app_class; + + // states bool _shaded; bool _iconic; bool _max_vert; bool _max_horz; + bool _unmapped; + + void updateState(); + void updateDesktop(); + void updateTitle(); + void updateClass(); + public: - XWindow(Window window); + XWindow(epist *epist, Window window); virtual ~XWindow(); inline Window window() const { return _window; } + inline unsigned int desktop() const { return _desktop; } + inline const std::string &title() const { return _title; } + inline const std::string &appName() const { return _app_name; } + inline const std::string &appClass() const { return _app_name; } + inline bool shaded() const { return _shaded; } inline bool iconic() const { return _iconic; } inline bool maxVert() const { return _max_vert; } inline bool maxHorz() const { return _max_horz; } + void processEvent(const XEvent &e); + bool operator == (const XWindow &w) const { return w._window == _window; } bool operator == (const Window &w) const { return w == _window; } };