all repos — openbox @ 9dd52dfcc3cebd39580db8e0b72e294c67a847d9

openbox fork - make it a bit more like ryudo

make close() and shade() private.
Dana Jansens danakj@orodu.net
commit

9dd52dfcc3cebd39580db8e0b72e294c67a847d9

parent

ae0b364fce6e3fd5e621b4c28e81a1dc1e415fc6

1 files changed, 10 insertions(+), 10 deletions(-)

jump to
M src/client.hhsrc/client.hh

@@ -364,6 +364,16 @@ void updateTransientFor();

//! Change the client's state hints to match the class' data void changeState(); + + //! Request the client to close its window. + void close(); + + //! Shades or unshades the client window + /*! + @param shade true if the window should be shaded; false if it should be + unshaded. + */ + void shade(bool shade); public: #ifndef SWIG

@@ -502,16 +512,6 @@ no effect. When they are specified, the anchor is ignored.

*/ void resize(Corner anchor, int w, int h, int x = INT_MIN, int y = INT_MIN); - //! Request the client to close its window. - void close(); - - //! Shades or unshades the client window - /*! - @param shade true if the window should be shaded; false if it should be - unshaded. - */ - void shade(bool shade); - //! Attempt to focus the client window bool focus() const;