added moveClientLeft and Right
This commit is contained in:
parent
88c3562634
commit
b9a62bbd5e
1 changed files with 8 additions and 6 deletions
|
@ -22,7 +22,7 @@
|
||||||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||||
// DEALINGS IN THE SOFTWARE.
|
// DEALINGS IN THE SOFTWARE.
|
||||||
|
|
||||||
// $Id: Window.hh,v 1.87 2003/07/26 16:17:02 rathnor Exp $
|
// $Id: Window.hh,v 1.88 2003/07/28 12:42:32 fluxgen Exp $
|
||||||
|
|
||||||
#ifndef WINDOW_HH
|
#ifndef WINDOW_HH
|
||||||
#define WINDOW_HH
|
#define WINDOW_HH
|
||||||
|
@ -165,6 +165,8 @@ public:
|
||||||
WinClient *findClient(Window win);
|
WinClient *findClient(Window win);
|
||||||
void nextClient();
|
void nextClient();
|
||||||
void prevClient();
|
void prevClient();
|
||||||
|
void moveClientLeft();
|
||||||
|
void moveClientRight();
|
||||||
|
|
||||||
bool validateClient();
|
bool validateClient();
|
||||||
bool setInputFocus();
|
bool setInputFocus();
|
||||||
|
@ -200,7 +202,7 @@ public:
|
||||||
void moveToLayer(int layernum);
|
void moveToLayer(int layernum);
|
||||||
|
|
||||||
void reconfigure();
|
void reconfigure();
|
||||||
void setupWindow();
|
|
||||||
|
|
||||||
void installColormap(bool);
|
void installColormap(bool);
|
||||||
void restore(WinClient *client, bool remap);
|
void restore(WinClient *client, bool remap);
|
||||||
|
@ -355,16 +357,16 @@ public:
|
||||||
FluxboxWindow &m_win;
|
FluxboxWindow &m_win;
|
||||||
};
|
};
|
||||||
|
|
||||||
bool oplock; // Used to help stop transient loops occurring by locking a window
|
bool oplock; ///< Used to help stop transient loops occurring by locking a window during certain operations
|
||||||
// during certain operations
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
static const int PropBlackboxAttributesElements = 8;
|
static const int PropBlackboxAttributesElements = 8;
|
||||||
|
|
||||||
|
void setupWindow();
|
||||||
|
|
||||||
void init();
|
void init();
|
||||||
/// applies a shape mask to the window if it has one
|
/// applies a shape mask to the window if it has one
|
||||||
void shape();
|
void shape();
|
||||||
|
void updateClientLeftWindow();
|
||||||
void grabButtons();
|
void grabButtons();
|
||||||
|
|
||||||
void startMoving(Window win);
|
void startMoving(Window win);
|
||||||
|
|
Loading…
Reference in a new issue