X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;f=src%2Fclient.hh;h=fd6e8f822e12b587096e0881c8f1aeb3db13b6e7;hb=889df8a74da733c849cb52c3a76ae59956755882;hp=83f5f1a025830fd333d4e0fc9e80e2bfbdc14780;hpb=00e2c5aaad4a0831fd1e0d1b1c287df4d6eaac93;p=chaz%2Fopenbox diff --git a/src/client.hh b/src/client.hh index 83f5f1a0..fd6e8f82 100644 --- a/src/client.hh +++ b/src/client.hh @@ -335,11 +335,12 @@ private: //! Sets the wm_state to the specified value void setWMState(long state); - //! Sends the window to the specified desktop - void setDesktop(long desktop); //! Adjusts the window's net_state void setState(StateAction action, long data1, long data2); + //! Sends the window to the specified desktop + void setDesktop(long desktop); + //! Calculates the stacking layer for the client window void calcLayer(); @@ -368,7 +369,7 @@ public: #ifndef SWIG //! Constructs a new OBClient object around a specified window id /*! - @param window The window id that the OBClient class should handle +BB @param window The window id that the OBClient class should handle @param screen The screen on which the window resides */ OBClient(int screen, Window window); @@ -453,8 +454,7 @@ public: inline bool modal() const { return _modal; } //! Returns if the window is shaded /*! - When the window is shaded, only its titlebar is visible, the client itself - is not mapped + When the window is shaded, only its titlebar is visible. */ inline bool shaded() const { return _shaded; } //! Returns if the window is iconified @@ -505,15 +505,6 @@ public: //! Request the client to close its window. void close(); - //! Sets the window's stacking layer - /*! - @param l An integer specifying the layer.
- '0' - the normal layer
- '> 0' - the 'above' layer
- '< 0' - the 'below' layer - */ - void setStackLayer(int l); - //! Shades or unshades the client window /*! @param shade true if the window should be shaded; false if it should be @@ -522,10 +513,10 @@ public: void shade(bool shade); //! Attempt to focus the client window - bool focus(); + bool focus() const; //! Remove focus from the client window - void unfocus(); + void unfocus() const; virtual void focusHandler(const XFocusChangeEvent &e); virtual void unfocusHandler(const XFocusChangeEvent &e);