make close() and shade() private.
This commit is contained in:
parent
ae0b364fce
commit
9dd52dfcc3
1 changed files with 10 additions and 10 deletions
|
@ -364,6 +364,16 @@ private:
|
||||||
|
|
||||||
//! Change the client's state hints to match the class' data
|
//! Change the client's state hints to match the class' data
|
||||||
void changeState();
|
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:
|
public:
|
||||||
#ifndef SWIG
|
#ifndef SWIG
|
||||||
|
@ -502,16 +512,6 @@ BB @param window The window id that the OBClient class should handle
|
||||||
*/
|
*/
|
||||||
void resize(Corner anchor, int w, int h, int x = INT_MIN, int y = INT_MIN);
|
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
|
//! Attempt to focus the client window
|
||||||
bool focus() const;
|
bool focus() const;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue