2002-01-09 14:11:20 +00:00
|
|
|
// Window.hh for Fluxbox Window Manager
|
2006-02-16 06:53:05 +00:00
|
|
|
// Copyright (c) 2001 - 2006 Henrik Kinnunen (fluxgen at fluxbox dot org)
|
2001-12-19 13:53:35 +00:00
|
|
|
//
|
2001-12-11 20:47:02 +00:00
|
|
|
// Window.hh for Blackbox - an X11 Window manager
|
2002-12-13 20:35:36 +00:00
|
|
|
// Copyright (c) 1997 - 2000 Brad Hughes (bhughes at tcac.net)
|
2001-12-11 20:47:02 +00:00
|
|
|
//
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
// copy of this software and associated documentation files (the "Software"),
|
|
|
|
// to deal in the Software without restriction, including without limitation
|
|
|
|
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
// and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
// Software is furnished to do so, subject to the following conditions:
|
|
|
|
//
|
|
|
|
// The above copyright notice and this permission notice shall be included in
|
|
|
|
// all copies or substantial portions of the Software.
|
|
|
|
//
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
2003-01-05 22:20:46 +00:00
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
2001-12-11 20:47:02 +00:00
|
|
|
// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
|
// DEALINGS IN THE SOFTWARE.
|
|
|
|
|
2004-11-19 11:37:27 +00:00
|
|
|
// $Id$
|
2002-01-09 14:11:20 +00:00
|
|
|
|
2002-02-17 18:47:45 +00:00
|
|
|
#ifndef WINDOW_HH
|
|
|
|
#define WINDOW_HH
|
2001-12-11 20:47:02 +00:00
|
|
|
|
2004-08-10 12:05:47 +00:00
|
|
|
#include "FbTk/Timer.hh"
|
|
|
|
#include "FbTk/Subject.hh"
|
|
|
|
#include "FbTk/EventHandler.hh"
|
|
|
|
#include "FbTk/XLayerItem.hh"
|
2003-12-18 18:03:23 +00:00
|
|
|
#include "FbWinFrame.hh"
|
2007-02-23 17:03:01 +00:00
|
|
|
#include "WinButton.hh"
|
2002-08-11 22:33:41 +00:00
|
|
|
|
2001-12-11 20:47:02 +00:00
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#include <X11/Xutil.h>
|
|
|
|
|
2002-02-17 18:47:45 +00:00
|
|
|
#include <vector>
|
|
|
|
#include <string>
|
2002-10-19 10:56:30 +00:00
|
|
|
#include <memory>
|
2003-04-14 15:01:55 +00:00
|
|
|
#include <map>
|
2002-02-17 18:47:45 +00:00
|
|
|
|
2003-04-14 15:01:55 +00:00
|
|
|
class WinClient;
|
2003-01-05 22:20:46 +00:00
|
|
|
class FbWinFrameTheme;
|
2003-01-07 01:34:49 +00:00
|
|
|
class BScreen;
|
2003-05-15 11:17:29 +00:00
|
|
|
class FbWinFrame;
|
2003-08-19 16:15:32 +00:00
|
|
|
|
2003-01-07 01:34:49 +00:00
|
|
|
namespace FbTk {
|
2003-08-19 16:15:32 +00:00
|
|
|
class TextButton;
|
2003-01-07 01:34:49 +00:00
|
|
|
class MenuTheme;
|
2003-01-09 22:16:40 +00:00
|
|
|
class ImageControl;
|
2003-02-03 13:53:48 +00:00
|
|
|
class XLayer;
|
2004-05-02 21:06:27 +00:00
|
|
|
class Menu;
|
2003-12-17 01:21:49 +00:00
|
|
|
}
|
2002-11-15 12:17:03 +00:00
|
|
|
|
2002-12-13 20:35:36 +00:00
|
|
|
/// Creates the window frame and handles any window event for it
|
2003-08-11 16:57:11 +00:00
|
|
|
class FluxboxWindow: public FbTk::EventHandler {
|
2001-12-11 20:47:02 +00:00
|
|
|
public:
|
2003-04-26 14:05:47 +00:00
|
|
|
/// Represents certain "preset" sets of decorations.
|
2002-12-13 20:35:36 +00:00
|
|
|
enum Decoration {
|
|
|
|
DECOR_NONE=0, ///< no decor at all
|
|
|
|
DECOR_NORMAL, ///< normal normal
|
|
|
|
DECOR_TINY, ///< tiny decoration
|
2006-03-22 12:23:17 +00:00
|
|
|
DECOR_TOOL, ///< decor tool
|
|
|
|
DECOR_TAB ///< decor tab (border + tab)
|
2002-12-01 13:42:15 +00:00
|
|
|
};
|
|
|
|
|
2002-12-13 20:35:36 +00:00
|
|
|
/// Motif wm Hints
|
2002-12-01 13:42:15 +00:00
|
|
|
enum {
|
2002-12-13 20:35:36 +00:00
|
|
|
MwmHintsFunctions = (1l << 0), ///< use motif wm functions
|
|
|
|
MwmHintsDecorations = (1l << 1) ///< use motif wm decorations
|
2002-12-01 13:42:15 +00:00
|
|
|
};
|
2004-12-21 16:17:14 +00:00
|
|
|
|
2002-12-13 20:35:36 +00:00
|
|
|
/// Motif wm functions
|
2002-12-01 13:42:15 +00:00
|
|
|
enum MwmFunc{
|
2002-12-13 20:35:36 +00:00
|
|
|
MwmFuncAll = (1l << 0), ///< all motif wm functions
|
2004-12-21 16:17:14 +00:00
|
|
|
MwmFuncResize = (1l << 1), ///< resize
|
|
|
|
MwmFuncMove = (1l << 2), ///< move
|
2002-12-13 20:35:36 +00:00
|
|
|
MwmFuncIconify = (1l << 3), ///< iconify
|
|
|
|
MwmFuncMaximize = (1l << 4), ///< maximize
|
|
|
|
MwmFuncClose = (1l << 5) ///< close
|
2002-12-01 13:42:15 +00:00
|
|
|
};
|
2003-01-05 22:20:46 +00:00
|
|
|
|
2002-12-13 20:35:36 +00:00
|
|
|
/// Motif wm decorations
|
2002-12-01 13:42:15 +00:00
|
|
|
enum MwmDecor {
|
2002-12-13 20:35:36 +00:00
|
|
|
MwmDecorAll = (1l << 0), /// all decorations
|
|
|
|
MwmDecorBorder = (1l << 1), /// border
|
|
|
|
MwmDecorHandle = (1l << 2), /// handle
|
|
|
|
MwmDecorTitle = (1l << 3), /// title
|
|
|
|
MwmDecorMenu = (1l << 4), /// menu
|
|
|
|
MwmDecorIconify = (1l << 5), /// iconify
|
|
|
|
MwmDecorMaximize = (1l << 6) /// maximize
|
2002-12-01 13:42:15 +00:00
|
|
|
};
|
2003-01-05 22:20:46 +00:00
|
|
|
|
2003-05-10 14:27:57 +00:00
|
|
|
/// attributes for BlackboxHints
|
|
|
|
enum Attrib {
|
|
|
|
ATTRIB_SHADED = 0x01,
|
|
|
|
ATTRIB_MAXHORIZ = 0x02,
|
|
|
|
ATTRIB_MAXVERT = 0x04,
|
|
|
|
ATTRIB_OMNIPRESENT = 0x08,
|
|
|
|
ATTRIB_WORKSPACE = 0x10,
|
2004-12-21 16:17:14 +00:00
|
|
|
ATTRIB_STACK = 0x20,
|
2004-01-18 19:14:08 +00:00
|
|
|
ATTRIB_DECORATION = 0x40,
|
|
|
|
ATTRIB_HIDDEN = 0x80,
|
2004-12-21 16:17:14 +00:00
|
|
|
};
|
2003-05-10 14:27:57 +00:00
|
|
|
|
2003-06-25 13:37:06 +00:00
|
|
|
/**
|
|
|
|
* Types of maximization
|
|
|
|
*/
|
|
|
|
enum MaximizeMode {
|
|
|
|
MAX_NONE = 0, ///< normal state
|
|
|
|
MAX_HORZ = 1, ///< maximize horizontal
|
|
|
|
MAX_VERT = 2, ///< maximize vertical
|
|
|
|
MAX_FULL = 3 ///< maximize full
|
|
|
|
};
|
2004-12-21 16:17:14 +00:00
|
|
|
/**
|
|
|
|
This enumeration represents individual decoration
|
2003-06-25 13:37:06 +00:00
|
|
|
attributes, they can be OR-d together to get a mask.
|
|
|
|
Useful for saving.
|
|
|
|
*/
|
|
|
|
enum DecorationMask {
|
|
|
|
DECORM_TITLEBAR = (1<<0),
|
|
|
|
DECORM_HANDLE = (1<<1),
|
|
|
|
DECORM_BORDER = (1<<2),
|
|
|
|
DECORM_ICONIFY = (1<<3),
|
|
|
|
DECORM_MAXIMIZE = (1<<4),
|
|
|
|
DECORM_CLOSE = (1<<5),
|
|
|
|
DECORM_MENU = (1<<6),
|
|
|
|
DECORM_STICKY = (1<<7),
|
|
|
|
DECORM_SHADE = (1<<8),
|
|
|
|
DECORM_TAB = (1<<9),
|
|
|
|
DECORM_ENABLED = (1<<10),
|
|
|
|
DECORM_LAST = (1<<11) // useful for getting "All"
|
|
|
|
};
|
|
|
|
|
2006-06-11 13:09:44 +00:00
|
|
|
|
|
|
|
enum ResizeDirection {
|
|
|
|
NOCORNER = -1,
|
|
|
|
LEFTTOP = 0,
|
|
|
|
TOP = 1,
|
|
|
|
RIGHTTOP = 2,
|
|
|
|
RIGHT = 3,
|
|
|
|
RIGHTBOTTOM = 4,
|
|
|
|
BOTTOM = 5,
|
|
|
|
LEFTBOTTOM = 6,
|
|
|
|
LEFT = 7,
|
|
|
|
ALLCORNERS = 8
|
2003-09-29 12:53:58 +00:00
|
|
|
};
|
|
|
|
|
2003-05-10 14:27:57 +00:00
|
|
|
typedef struct _blackbox_hints {
|
|
|
|
unsigned long flags, attrib, workspace, stack;
|
2005-01-31 16:55:38 +00:00
|
|
|
long decoration;
|
2003-05-10 14:27:57 +00:00
|
|
|
} BlackboxHints;
|
|
|
|
|
|
|
|
typedef struct _blackbox_attributes {
|
|
|
|
unsigned long flags, attrib, workspace, stack;
|
2005-01-31 16:55:38 +00:00
|
|
|
long premax_x, premax_y;
|
|
|
|
unsigned long premax_w, premax_h;
|
2003-05-10 14:27:57 +00:00
|
|
|
} BlackboxAttributes;
|
|
|
|
|
2003-04-14 15:01:55 +00:00
|
|
|
typedef std::list<WinClient *> ClientList;
|
|
|
|
|
|
|
|
/// create a window from a client
|
2003-12-18 18:03:23 +00:00
|
|
|
FluxboxWindow(WinClient &client,
|
2003-04-14 15:01:55 +00:00
|
|
|
FbWinFrameTheme &tm,
|
|
|
|
FbTk::XLayer &layer);
|
|
|
|
|
2002-12-01 13:42:15 +00:00
|
|
|
virtual ~FluxboxWindow();
|
2003-01-05 22:20:46 +00:00
|
|
|
|
2003-04-14 15:01:55 +00:00
|
|
|
/// attach client to our client list and remove it from old window
|
2004-11-24 23:26:38 +00:00
|
|
|
void attachClient(WinClient &client, int x=-1, int y=-1);
|
2004-12-21 16:17:14 +00:00
|
|
|
/// detach client (remove it from list) and create a new window for it
|
2003-04-14 15:01:55 +00:00
|
|
|
bool detachClient(WinClient &client);
|
2003-04-16 12:28:39 +00:00
|
|
|
/// detach current working client if we have more than one
|
|
|
|
void detachCurrentClient();
|
2003-04-14 15:01:55 +00:00
|
|
|
/// remove client from client list
|
|
|
|
bool removeClient(WinClient &client);
|
|
|
|
/// set new current client and raise it
|
2003-12-30 20:56:41 +00:00
|
|
|
bool setCurrentClient(WinClient &client, bool setinput = true);
|
2006-06-24 18:19:49 +00:00
|
|
|
void setLabelButtonFocus(WinClient &client, bool value = true);
|
|
|
|
void setAttentionState(bool value);
|
|
|
|
bool getAttentionState() { return m_attention_state; }
|
2003-04-14 15:01:55 +00:00
|
|
|
WinClient *findClient(Window win);
|
|
|
|
void nextClient();
|
|
|
|
void prevClient();
|
2003-07-28 12:42:32 +00:00
|
|
|
void moveClientLeft();
|
|
|
|
void moveClientRight();
|
2004-12-13 12:17:58 +00:00
|
|
|
void moveClientRightOf(WinClient &win, WinClient &dest);
|
|
|
|
void moveClientLeftOf(WinClient &win, WinClient &dest);
|
|
|
|
void moveClientTo(WinClient &win, int x, int y);
|
|
|
|
ClientList::iterator getClientInsertPosition(int x, int y);
|
2003-01-05 22:20:46 +00:00
|
|
|
|
2003-12-30 20:56:41 +00:00
|
|
|
bool setInputFocus();
|
2003-02-16 16:43:00 +00:00
|
|
|
void raiseAndFocus() { raise(); setInputFocus(); }
|
2003-01-05 22:20:46 +00:00
|
|
|
void setFocusFlag(bool flag);
|
2003-02-16 17:57:54 +00:00
|
|
|
// map this window
|
|
|
|
void show();
|
|
|
|
// unmap this window
|
2007-03-10 18:06:09 +00:00
|
|
|
void hide(bool interrupt_moving = true);
|
2003-01-05 22:20:46 +00:00
|
|
|
void iconify();
|
2003-09-12 16:30:21 +00:00
|
|
|
void deiconify(bool reassoc = true, bool do_raise = true);
|
2007-01-07 11:55:14 +00:00
|
|
|
|
|
|
|
// ------------------
|
|
|
|
// Per window transparency addons
|
|
|
|
unsigned char getFocusedAlpha() const { return frame().getAlpha(true); }
|
|
|
|
unsigned char getUnfocusedAlpha() const { return frame().getAlpha(false); }
|
|
|
|
void setFocusedAlpha(unsigned char alpha) { frame().setAlpha(true, alpha); }
|
|
|
|
void setUnfocusedAlpha(unsigned char alpha) { frame().setAlpha(false, alpha); }
|
|
|
|
void updateAlpha(bool focused, unsigned char alpha) { frame().setAlpha(focused, alpha); }
|
|
|
|
|
|
|
|
bool getUseDefaultAlpha() const { return frame().getUseDefaultAlpha(); }
|
|
|
|
void setUseDefaultAlpha(bool default_alpha) { frame().setUseDefaultAlpha(default_alpha); }
|
|
|
|
// ------------------
|
|
|
|
|
2003-07-28 15:06:36 +00:00
|
|
|
/// close current client
|
2003-01-05 22:20:46 +00:00
|
|
|
void close();
|
2004-11-30 01:26:00 +00:00
|
|
|
/// kill current client
|
|
|
|
void kill();
|
2003-01-05 22:20:46 +00:00
|
|
|
/// set the window in withdrawn state
|
2004-05-13 01:48:18 +00:00
|
|
|
void withdraw(bool interrupt_moving);
|
2004-12-21 16:17:14 +00:00
|
|
|
/// set fullscreen
|
|
|
|
void setFullscreen(bool flag);
|
2003-07-24 03:19:02 +00:00
|
|
|
/// toggle maximize
|
|
|
|
void maximize(int type = MAX_FULL);
|
2003-01-05 22:20:46 +00:00
|
|
|
/// maximizes the window horizontal
|
|
|
|
void maximizeHorizontal();
|
|
|
|
/// maximizes the window vertical
|
|
|
|
void maximizeVertical();
|
2003-07-24 03:19:02 +00:00
|
|
|
/// maximizes the window fully
|
|
|
|
void maximizeFull();
|
2003-01-05 22:20:46 +00:00
|
|
|
/// toggles shade
|
|
|
|
void shade();
|
2005-09-07 16:46:17 +00:00
|
|
|
/// shades window
|
|
|
|
void shadeOn();
|
|
|
|
/// unshades window
|
|
|
|
void shadeOff();
|
2003-01-05 22:20:46 +00:00
|
|
|
/// toggles sticky
|
2004-12-21 16:17:14 +00:00
|
|
|
void stick();
|
2007-01-07 11:55:14 +00:00
|
|
|
/// toggles iconic
|
|
|
|
void toggleIconic();
|
2003-01-05 22:20:46 +00:00
|
|
|
void raise();
|
2003-02-09 14:11:14 +00:00
|
|
|
void lower();
|
2003-04-15 23:09:26 +00:00
|
|
|
void tempRaise();
|
2003-02-09 14:11:14 +00:00
|
|
|
void raiseLayer();
|
|
|
|
void lowerLayer();
|
2007-02-04 18:44:28 +00:00
|
|
|
void moveToLayer(int layernum, bool force = false);
|
2004-02-20 09:07:27 +00:00
|
|
|
void setFocusHidden(bool value);
|
|
|
|
void setIconHidden(bool value);
|
2003-01-05 22:20:46 +00:00
|
|
|
void reconfigure();
|
2003-07-28 12:42:32 +00:00
|
|
|
|
2003-07-20 08:12:36 +00:00
|
|
|
|
2003-01-05 22:20:46 +00:00
|
|
|
void installColormap(bool);
|
2003-04-14 15:01:55 +00:00
|
|
|
void restore(WinClient *client, bool remap);
|
2003-01-05 22:20:46 +00:00
|
|
|
void restore(bool remap);
|
|
|
|
/// move frame to x, y
|
2006-07-03 17:18:17 +00:00
|
|
|
void move(int x, int y);
|
2003-01-05 22:20:46 +00:00
|
|
|
/// resize frame to width, height
|
|
|
|
void resize(unsigned int width, unsigned int height);
|
|
|
|
/// move and resize frame to pox x,y and size width, height
|
2006-07-03 17:18:17 +00:00
|
|
|
void moveResize(int x, int y, unsigned int width, unsigned int height, bool send_event = false);
|
2005-03-16 23:19:36 +00:00
|
|
|
/// move to pos x,y and resize client window to size width, height
|
2006-07-03 17:18:17 +00:00
|
|
|
void moveResizeForClient(int x, int y, unsigned int width, unsigned int height, int gravity = ForgetGravity, unsigned int client_bw = 0);
|
2005-01-05 05:37:06 +00:00
|
|
|
void setWorkspace(int n);
|
2003-05-10 14:27:57 +00:00
|
|
|
void changeBlackboxHints(const BlackboxHints &bh);
|
2003-07-28 16:29:25 +00:00
|
|
|
void updateFunctions();
|
2003-02-16 17:57:54 +00:00
|
|
|
void restoreAttributes();
|
2003-01-07 01:34:49 +00:00
|
|
|
void showMenu(int mx, int my);
|
|
|
|
// popup menu on last button press position
|
|
|
|
void popupMenu();
|
|
|
|
|
2003-01-05 22:20:46 +00:00
|
|
|
void pauseMoving();
|
|
|
|
void resumeMoving();
|
|
|
|
/**
|
|
|
|
@name event handlers
|
|
|
|
*/
|
|
|
|
//@{
|
|
|
|
void handleEvent(XEvent &event);
|
|
|
|
void buttonPressEvent(XButtonEvent &be);
|
|
|
|
void buttonReleaseEvent(XButtonEvent &be);
|
|
|
|
void motionNotifyEvent(XMotionEvent &me);
|
|
|
|
void destroyNotifyEvent(XDestroyWindowEvent &dwe);
|
|
|
|
void mapRequestEvent(XMapRequestEvent &mre);
|
|
|
|
void mapNotifyEvent(XMapEvent &mapev);
|
|
|
|
void unmapNotifyEvent(XUnmapEvent &unmapev);
|
|
|
|
void exposeEvent(XExposeEvent &ee);
|
|
|
|
void configureRequestEvent(XConfigureRequestEvent &ce);
|
2003-09-24 14:02:25 +00:00
|
|
|
void propertyNotifyEvent(WinClient &client, Atom a);
|
2003-02-22 15:10:43 +00:00
|
|
|
void enterNotifyEvent(XCrossingEvent &ev);
|
|
|
|
void leaveNotifyEvent(XCrossingEvent &ev);
|
2003-01-05 22:20:46 +00:00
|
|
|
//@}
|
|
|
|
|
2004-02-16 20:47:51 +00:00
|
|
|
void setDecoration(Decoration decoration, bool apply = true);
|
2003-07-26 16:17:02 +00:00
|
|
|
void applyDecorations(bool initial = false);
|
2003-01-05 22:20:46 +00:00
|
|
|
void toggleDecoration();
|
2003-06-23 14:16:05 +00:00
|
|
|
|
2003-05-15 11:17:29 +00:00
|
|
|
unsigned int decorationMask() const;
|
2007-01-04 19:13:55 +00:00
|
|
|
void setDecorationMask(unsigned int mask, bool apply = true);
|
2006-06-11 13:09:44 +00:00
|
|
|
/**
|
|
|
|
* Start moving process, grabs the pointer and draws move rectangle
|
|
|
|
* @param x position of pointer
|
|
|
|
* @param y position of pointer
|
|
|
|
*/
|
|
|
|
void startMoving(int x, int y);
|
|
|
|
/**
|
|
|
|
* Stop moving process
|
|
|
|
* @param interrupted whether the move was interrupted by hide or destroy
|
|
|
|
*/
|
|
|
|
void stopMoving(bool interrupted = false);
|
|
|
|
/**
|
|
|
|
* Starts resizing process
|
|
|
|
* @param x start position
|
|
|
|
* @param y start position
|
|
|
|
* @param dir the resize direction
|
|
|
|
*/
|
|
|
|
void startResizing(int x, int y, ResizeDirection dir);
|
|
|
|
/// stops the resizing
|
|
|
|
void stopResizing(bool interrupted = false);
|
2003-04-26 05:42:36 +00:00
|
|
|
|
2002-12-01 13:42:15 +00:00
|
|
|
/**
|
2004-12-21 16:17:14 +00:00
|
|
|
@name accessors
|
2002-12-01 13:42:15 +00:00
|
|
|
*/
|
|
|
|
//@{
|
2004-12-21 16:17:14 +00:00
|
|
|
|
|
|
|
// whether this window can be tabbed with other windows,
|
2004-06-20 04:49:33 +00:00
|
|
|
// and others tabbed with it
|
|
|
|
inline void setTabable(bool tabable) { functions.tabable = tabable; }
|
|
|
|
inline bool isTabable() { return functions.tabable; }
|
|
|
|
inline void setMovable(bool movable) { functions.move = movable; }
|
|
|
|
inline void setResizable(bool resizable) { functions.resize = resizable; }
|
|
|
|
|
2006-06-26 05:52:30 +00:00
|
|
|
inline bool isFocusHidden() const { return m_focus_hidden; }
|
2004-12-21 16:17:14 +00:00
|
|
|
inline bool isIconHidden() const { return m_icon_hidden; }
|
2005-01-05 05:37:06 +00:00
|
|
|
inline bool isManaged() const { return m_initialized; }
|
2003-04-14 15:01:55 +00:00
|
|
|
inline bool isFocused() const { return focused; }
|
2003-05-15 11:17:29 +00:00
|
|
|
bool isVisible() const;
|
2007-01-07 11:55:14 +00:00
|
|
|
inline bool isIconic() { return iconic; }
|
2003-04-14 15:01:55 +00:00
|
|
|
inline bool isIconic() const { return iconic; }
|
2007-01-07 11:55:14 +00:00
|
|
|
inline bool isShaded() { return shaded; }
|
2003-04-14 15:01:55 +00:00
|
|
|
inline bool isShaded() const { return shaded; }
|
2004-12-21 16:17:14 +00:00
|
|
|
inline bool isFullscreen() const { return fullscreen; }
|
2003-06-25 13:37:06 +00:00
|
|
|
inline bool isMaximized() const { return maximized == MAX_FULL; }
|
2007-02-23 22:32:31 +00:00
|
|
|
inline bool isMaximizedVert() const { return (bool)(maximized & MAX_VERT); }
|
|
|
|
inline bool isMaximizedHorz() const { return (bool)(maximized & MAX_HORZ); }
|
2003-04-14 15:01:55 +00:00
|
|
|
inline bool isIconifiable() const { return functions.iconify; }
|
|
|
|
inline bool isMaximizable() const { return functions.maximize; }
|
|
|
|
inline bool isResizable() const { return functions.resize; }
|
|
|
|
inline bool isClosable() const { return functions.close; }
|
2006-04-23 17:00:33 +00:00
|
|
|
inline bool isMoveable() const { return functions.move; }
|
2003-04-14 15:01:55 +00:00
|
|
|
inline bool isStuck() const { return stuck; }
|
|
|
|
inline bool hasTitlebar() const { return decorations.titlebar; }
|
|
|
|
inline bool isMoving() const { return moving; }
|
|
|
|
inline bool isResizing() const { return resizing; }
|
2002-12-01 13:42:15 +00:00
|
|
|
bool isGroupable() const;
|
2003-04-14 15:01:55 +00:00
|
|
|
inline int numClients() const { return m_clientlist.size(); }
|
2004-03-21 09:00:25 +00:00
|
|
|
inline bool empty() const { return m_clientlist.empty(); }
|
2003-04-14 15:01:55 +00:00
|
|
|
inline ClientList &clientList() { return m_clientlist; }
|
|
|
|
inline const ClientList &clientList() const { return m_clientlist; }
|
|
|
|
inline WinClient &winClient() { return *m_client; }
|
|
|
|
inline const WinClient &winClient() const { return *m_client; }
|
|
|
|
|
2003-05-10 16:53:09 +00:00
|
|
|
inline const BScreen &screen() const { return m_screen; }
|
|
|
|
inline BScreen &screen() { return m_screen; }
|
2003-04-14 15:01:55 +00:00
|
|
|
|
2006-03-20 11:31:24 +00:00
|
|
|
inline const FbTk::XLayerItem &layerItem() const { return m_frame.layerItem(); }
|
|
|
|
inline FbTk::XLayerItem &layerItem() { return m_frame.layerItem(); }
|
2003-04-14 15:01:55 +00:00
|
|
|
|
2003-05-15 11:17:29 +00:00
|
|
|
Window clientWindow() const;
|
2002-09-08 19:49:39 +00:00
|
|
|
|
2003-05-15 11:17:29 +00:00
|
|
|
FbTk::FbWindow &fbWindow();
|
|
|
|
const FbTk::FbWindow &fbWindow() const;
|
2003-02-18 15:11:12 +00:00
|
|
|
|
2005-06-23 03:07:25 +00:00
|
|
|
FbTk::Menu &menu();
|
|
|
|
const FbTk::Menu &menu() const;
|
2003-05-10 23:04:37 +00:00
|
|
|
|
|
|
|
const FbTk::FbWindow &parent() const { return m_parent; }
|
|
|
|
FbTk::FbWindow &parent() { return m_parent; }
|
|
|
|
|
2006-04-17 23:34:01 +00:00
|
|
|
const FbTk::FbPixmap &iconPixmap() const;
|
|
|
|
const FbTk::FbPixmap &iconMask() const;
|
|
|
|
const bool usePixmap() const;
|
|
|
|
const bool useMask() const;
|
|
|
|
|
2003-05-15 11:17:29 +00:00
|
|
|
const std::string &title() const;
|
|
|
|
const std::string &iconTitle() const;
|
2003-12-18 18:03:23 +00:00
|
|
|
inline int x() const { return frame().x(); }
|
|
|
|
inline int y() const { return frame().y(); }
|
|
|
|
inline unsigned int width() const { return frame().width(); }
|
|
|
|
inline unsigned int height() const { return frame().height(); }
|
|
|
|
|
2006-03-20 11:31:24 +00:00
|
|
|
inline int xOffset() const { return frame().xOffset(); }
|
|
|
|
inline int yOffset() const { return frame().yOffset(); }
|
|
|
|
inline int widthOffset() const { return frame().widthOffset(); }
|
|
|
|
inline int heightOffset() const { return frame().heightOffset(); }
|
|
|
|
|
2003-05-15 11:17:29 +00:00
|
|
|
unsigned int workspaceNumber() const { return m_workspace_number; }
|
2003-06-24 14:57:54 +00:00
|
|
|
|
2003-05-15 11:17:29 +00:00
|
|
|
int layerNum() const { return m_layernum; }
|
2003-02-02 16:32:41 +00:00
|
|
|
void setLayerNum(int layernum);
|
2004-12-21 16:17:14 +00:00
|
|
|
|
2003-12-18 18:03:23 +00:00
|
|
|
|
2003-05-21 23:59:54 +00:00
|
|
|
unsigned int titlebarHeight() const;
|
2003-06-15 18:35:32 +00:00
|
|
|
|
2003-04-14 15:01:55 +00:00
|
|
|
int initialState() const;
|
2003-01-05 22:20:46 +00:00
|
|
|
|
2003-12-18 18:03:23 +00:00
|
|
|
inline FbWinFrame &frame() { return m_frame; }
|
|
|
|
inline const FbWinFrame &frame() const { return m_frame; }
|
2003-01-05 22:20:46 +00:00
|
|
|
|
2002-12-01 13:42:15 +00:00
|
|
|
/**
|
|
|
|
@name signals
|
2003-01-05 22:20:46 +00:00
|
|
|
@{
|
2002-12-01 13:42:15 +00:00
|
|
|
*/
|
|
|
|
FbTk::Subject &stateSig() { return m_statesig; }
|
|
|
|
const FbTk::Subject &stateSig() const { return m_statesig; }
|
2003-02-02 16:32:41 +00:00
|
|
|
FbTk::Subject &layerSig() { return m_layersig; }
|
|
|
|
const FbTk::Subject &layerSig() const { return m_layersig; }
|
2002-12-01 13:42:15 +00:00
|
|
|
FbTk::Subject &hintSig() { return m_hintsig; }
|
|
|
|
const FbTk::Subject &hintSig() const { return m_hintsig; }
|
|
|
|
FbTk::Subject &workspaceSig() { return m_workspacesig; }
|
|
|
|
const FbTk::Subject &workspaceSig() const { return m_workspacesig; }
|
2003-01-05 22:20:46 +00:00
|
|
|
FbTk::Subject &dieSig() { return m_diesig; }
|
|
|
|
const FbTk::Subject &dieSig() const { return m_diesig; }
|
2003-08-11 16:57:11 +00:00
|
|
|
FbTk::Subject &focusSig() { return m_focussig; }
|
2003-12-07 17:47:42 +00:00
|
|
|
FbTk::Subject &titleSig() { return m_titlesig; }
|
2006-05-13 16:20:31 +00:00
|
|
|
FbTk::Subject &attentionSig() { return m_attentionsig; }
|
2002-12-13 20:35:36 +00:00
|
|
|
/** @} */ // end group signals
|
2002-12-01 13:42:15 +00:00
|
|
|
|
2004-01-23 10:38:25 +00:00
|
|
|
void reconfigTheme();
|
|
|
|
|
2002-12-01 13:42:15 +00:00
|
|
|
//@}
|
2003-06-23 14:16:05 +00:00
|
|
|
|
2002-12-01 13:42:15 +00:00
|
|
|
class WinSubject: public FbTk::Subject {
|
|
|
|
public:
|
|
|
|
WinSubject(FluxboxWindow &w):m_win(w) { }
|
|
|
|
FluxboxWindow &win() { return m_win; }
|
|
|
|
const FluxboxWindow &win() const { return m_win; }
|
|
|
|
private:
|
|
|
|
FluxboxWindow &m_win;
|
|
|
|
};
|
2002-09-07 20:16:43 +00:00
|
|
|
|
2003-07-28 12:42:32 +00:00
|
|
|
bool oplock; ///< Used to help stop transient loops occurring by locking a window during certain operations
|
2004-03-21 09:00:25 +00:00
|
|
|
|
2001-12-11 20:47:02 +00:00
|
|
|
private:
|
2003-06-23 14:16:05 +00:00
|
|
|
static const int PropBlackboxAttributesElements = 8;
|
|
|
|
|
2003-07-28 12:42:32 +00:00
|
|
|
void setupWindow();
|
2007-02-23 17:03:01 +00:00
|
|
|
void updateButtons();
|
2003-07-28 12:42:32 +00:00
|
|
|
|
2003-04-14 15:01:55 +00:00
|
|
|
void init();
|
2003-06-12 14:35:36 +00:00
|
|
|
/// applies a shape mask to the window if it has one
|
2003-05-14 14:43:06 +00:00
|
|
|
void shape();
|
2003-07-28 12:42:32 +00:00
|
|
|
void updateClientLeftWindow();
|
2003-01-05 22:20:46 +00:00
|
|
|
void grabButtons();
|
2003-06-15 18:35:32 +00:00
|
|
|
|
2003-04-15 14:40:24 +00:00
|
|
|
/// try to attach current attaching client to a window at pos x, y
|
2004-05-13 01:48:18 +00:00
|
|
|
void attachTo(int x, int y, bool interrupted = false);
|
2003-04-15 14:40:24 +00:00
|
|
|
|
2003-01-05 22:20:46 +00:00
|
|
|
bool getState();
|
|
|
|
/// gets title string from client window and updates frame's title
|
2003-09-24 14:02:25 +00:00
|
|
|
void updateTitleFromClient(WinClient &client);
|
2003-01-05 22:20:46 +00:00
|
|
|
/// gets icon name from client window
|
2003-09-24 14:02:25 +00:00
|
|
|
void updateIconNameFromClient(WinClient &client);
|
|
|
|
void updateMWMHintsFromClient(WinClient &client);
|
2003-12-07 17:47:42 +00:00
|
|
|
void updateBlackboxHintsFromClient(const WinClient &client);
|
2004-04-18 21:17:36 +00:00
|
|
|
void updateRememberStateFromClient(WinClient &client);
|
2003-06-23 14:16:05 +00:00
|
|
|
void saveBlackboxAttribs();
|
2006-07-03 17:18:17 +00:00
|
|
|
void associateClientWindow(bool use_attrs = false, int x = 0, int y = 0, unsigned int width = 1, unsigned int height = 1, int gravity = ForgetGravity, unsigned int client_bw = 0);
|
2003-06-23 14:16:05 +00:00
|
|
|
|
2004-06-19 15:04:28 +00:00
|
|
|
void setState(unsigned long stateval, bool setting_up);
|
2003-04-20 02:47:15 +00:00
|
|
|
|
|
|
|
// modifies left and top if snap is necessary
|
|
|
|
void doSnapping(int &left, int &top);
|
2003-09-29 14:58:15 +00:00
|
|
|
// user_w/h return the values that should be shown to the user
|
|
|
|
void fixsize(int *user_w = 0, int *user_h = 0);
|
2003-10-28 02:17:03 +00:00
|
|
|
void moveResizeClient(WinClient &client, int x, int y, unsigned int width, unsigned int height);
|
2003-04-15 18:56:42 +00:00
|
|
|
/// sends configurenotify to all clients
|
2003-07-17 17:56:28 +00:00
|
|
|
void sendConfigureNotify(bool send_to_netizens = true);
|
2004-04-12 18:19:10 +00:00
|
|
|
|
|
|
|
static void grabPointer(Window grab_window,
|
|
|
|
Bool owner_events,
|
|
|
|
unsigned int event_mask,
|
|
|
|
int pointer_mode, int keyboard_mode,
|
|
|
|
Window confine_to,
|
|
|
|
Cursor cursor,
|
|
|
|
Time time);
|
|
|
|
static void ungrabPointer(Time time);
|
|
|
|
|
2005-05-03 09:28:05 +00:00
|
|
|
void associateClient(WinClient &client);
|
|
|
|
|
2002-12-01 13:42:15 +00:00
|
|
|
// state and hint signals
|
2006-06-11 13:09:44 +00:00
|
|
|
WinSubject m_hintsig,
|
|
|
|
m_statesig,
|
|
|
|
m_layersig,
|
|
|
|
m_workspacesig,
|
|
|
|
m_diesig, m_focussig,
|
|
|
|
m_titlesig,
|
|
|
|
m_attentionsig;
|
2002-09-07 20:16:43 +00:00
|
|
|
|
2004-01-23 10:38:25 +00:00
|
|
|
class ThemeListener: public FbTk::Observer {
|
|
|
|
public:
|
|
|
|
ThemeListener(FluxboxWindow &win):m_win(win) { }
|
|
|
|
void update(FbTk::Subject *) {
|
|
|
|
m_win.reconfigTheme();
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
FluxboxWindow &m_win;
|
|
|
|
};
|
|
|
|
ThemeListener m_themelistener;
|
|
|
|
|
2003-05-10 16:53:09 +00:00
|
|
|
// Window states
|
2003-06-25 13:37:06 +00:00
|
|
|
bool moving, resizing, shaded, iconic,
|
2005-01-05 05:37:06 +00:00
|
|
|
focused, stuck, m_initialized, fullscreen;
|
2003-06-12 14:35:36 +00:00
|
|
|
|
2003-06-25 13:37:06 +00:00
|
|
|
int maximized;
|
|
|
|
|
2003-04-15 14:40:24 +00:00
|
|
|
WinClient *m_attaching_tab;
|
2002-12-01 13:42:15 +00:00
|
|
|
|
2006-06-24 18:19:49 +00:00
|
|
|
bool m_attention_state;
|
2003-05-10 16:53:09 +00:00
|
|
|
BScreen &m_screen; /// screen on which this window exist
|
|
|
|
FbTk::Timer m_timer;
|
2003-04-14 15:01:55 +00:00
|
|
|
Display *display; /// display connection
|
2003-05-10 16:53:09 +00:00
|
|
|
BlackboxAttributes m_blackbox_attrib;
|
2002-12-01 13:42:15 +00:00
|
|
|
|
2003-05-10 16:53:09 +00:00
|
|
|
int m_button_grab_x, m_button_grab_y; // handles last button press event for move
|
|
|
|
int m_last_resize_x, m_last_resize_y; // handles last button press event for resize
|
|
|
|
int m_last_move_x, m_last_move_y; // handles last pos for non opaque moving
|
|
|
|
unsigned int m_last_resize_h, m_last_resize_w; // handles height/width for resize "window"
|
2002-12-01 13:42:15 +00:00
|
|
|
|
2003-05-10 16:53:09 +00:00
|
|
|
unsigned int m_workspace_number;
|
2004-12-21 16:17:14 +00:00
|
|
|
unsigned long m_current_state; // NormalState | IconicState | Withdrawn
|
2003-02-02 16:32:41 +00:00
|
|
|
|
2003-05-10 16:53:09 +00:00
|
|
|
Decoration m_old_decoration;
|
2004-12-21 16:17:14 +00:00
|
|
|
unsigned int m_old_decoration_mask;
|
2002-12-01 13:42:15 +00:00
|
|
|
|
2003-04-14 15:01:55 +00:00
|
|
|
ClientList m_clientlist;
|
2003-12-17 01:21:49 +00:00
|
|
|
WinClient *m_client; ///< current client
|
2003-08-19 16:15:32 +00:00
|
|
|
typedef std::map<WinClient *, FbTk::TextButton *> Client2ButtonMap;
|
2003-04-14 15:01:55 +00:00
|
|
|
Client2ButtonMap m_labelbuttons;
|
2002-12-01 13:42:15 +00:00
|
|
|
|
2003-04-14 15:01:55 +00:00
|
|
|
// just temporary solution
|
|
|
|
friend class WinClient;
|
2001-12-11 20:47:02 +00:00
|
|
|
|
2002-12-01 13:42:15 +00:00
|
|
|
struct _decorations {
|
|
|
|
bool titlebar, handle, border, iconify,
|
|
|
|
maximize, close, menu, sticky, shade, tab, enabled;
|
|
|
|
} decorations;
|
2001-12-11 20:47:02 +00:00
|
|
|
|
2007-02-23 17:03:01 +00:00
|
|
|
std::vector<WinButton::Type> m_titlebar_buttons[2];
|
2004-12-21 16:17:14 +00:00
|
|
|
bool m_toggled_decos;
|
2004-04-18 21:17:36 +00:00
|
|
|
|
2002-12-01 13:42:15 +00:00
|
|
|
struct _functions {
|
2004-06-20 04:49:33 +00:00
|
|
|
bool resize, move, iconify, maximize, close, tabable;
|
2002-12-01 13:42:15 +00:00
|
|
|
} functions;
|
2003-05-14 14:43:06 +00:00
|
|
|
|
|
|
|
bool m_shaped; ///< if the window is shaped with a mask
|
2004-12-21 16:17:14 +00:00
|
|
|
bool m_icon_hidden; ///< if the window is in the iconbar
|
2006-06-26 05:52:30 +00:00
|
|
|
bool m_focus_hidden; ///< if the window is in the NextWindow list
|
2003-01-05 22:20:46 +00:00
|
|
|
int m_old_pos_x, m_old_pos_y; ///< old position so we can restore from maximized
|
|
|
|
unsigned int m_old_width, m_old_height; ///< old size so we can restore from maximized state
|
2003-01-07 01:34:49 +00:00
|
|
|
int m_last_button_x, ///< last known x position of the mouse button
|
|
|
|
m_last_button_y; ///< last known y position of the mouse button
|
2003-12-18 18:03:23 +00:00
|
|
|
FbWinFrame m_frame;
|
2002-12-01 13:42:15 +00:00
|
|
|
|
2003-02-09 14:11:14 +00:00
|
|
|
int m_layernum;
|
2004-12-21 16:17:14 +00:00
|
|
|
int m_old_layernum;
|
2003-02-09 14:11:14 +00:00
|
|
|
|
2003-05-10 23:04:37 +00:00
|
|
|
FbTk::FbWindow &m_parent; ///< window on which we draw move/resize rectangle (the "root window")
|
|
|
|
|
2006-06-11 13:09:44 +00:00
|
|
|
ResizeDirection m_resize_corner;
|
2003-09-29 12:53:58 +00:00
|
|
|
|
2004-04-12 18:19:10 +00:00
|
|
|
static int s_num_grabs; ///< number of XGrabPointer's
|
2001-12-11 20:47:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2002-07-10 14:46:42 +00:00
|
|
|
#endif // WINDOW_HH
|