X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;f=src%2Fclient.hh;h=89da0dc9a0e782c154412e1294e3f90279f4877e;hb=9b23dff16cd85461da6f99aa95a79422cffd72f8;hp=f45b2d984da197df21d0684076e594b9fe1222f4;hpb=63233a1fc66eb019a03f3aa928fcf34f2cf07a65;p=chaz%2Fopenbox diff --git a/src/client.hh b/src/client.hh index f45b2d98..89da0dc9 100644 --- a/src/client.hh +++ b/src/client.hh @@ -62,6 +62,7 @@ public: }; private: + //! The actual window that this class is wrapping up Window _window; //! The id of the group the window belongs to @@ -70,7 +71,7 @@ private: // XXX: transient_for, transients //! The desktop on which the window resides (0xffffffff for all desktops) - unsigned int _desktop; + unsigned long _desktop; //! Normal window title std::string _title; // XXX: Have to keep track if this string is Utf8 or not @@ -100,7 +101,7 @@ private: //! The state of the window, one of WithdrawnState, IconicState, or //! NormalState - long _state; + long _wmstate; //! Can the window receive input focus? bool _can_focus; @@ -130,12 +131,19 @@ private: // XXX: motif decoration hints! + void getDesktop(); + void getType(); + void getArea(); + void getState(); + void getShaped(); + void setWMState(long state); void setDesktop(long desktop); void setState(StateAction action, long data1, long data2); void updateNormalHints(); void updateWMHints(); + // XXX: updateTransientFor(); void updateTitle(); void updateClass(); @@ -146,7 +154,7 @@ public: inline Window window() const { return _window; } inline WindowType type() const { return _type; } - inline unsigned int desktop() const { return _desktop; } + inline unsigned long desktop() const { return _desktop; } inline const std::string &title() const { return _title; } inline const std::string &iconTitle() const { return _title; } inline const std::string &appName() const { return _app_name; } @@ -179,6 +187,8 @@ public: void update(const XPropertyEvent &e); void update(const XClientMessageEvent &e); + + void setArea(const otk::Rect &area); }; }