1 // -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
6 @brief The OBClient class maintains the state of a client window by handling
7 property changes on the window and some client messages
14 #include <X11/extensions/shape.h>
22 #include "otk/point.hh"
23 #include "otk/strut.hh"
24 #include "otk/rect.hh"
25 #include "otk/eventhandler.hh"
31 //! The MWM Hints as retrieved from the window property
33 This structure only contains 3 elements, even though the Motif 2.0
34 structure contains 5. We only use the first 3, so that is all gets defined.
37 //! The number of elements in the OBClient::MwmHints struct
38 static const unsigned int elements
= 3;
39 unsigned long flags
; //!< A bitmask of OBClient::MwmFlags values
40 unsigned long functions
; //!< A bitmask of OBClient::MwmFunctions values
41 unsigned long decorations
;//!< A bitmask of OBClient::MwmDecorations values
45 //! Maintains the state of a client window.
47 OBClient maintains the state of a client window. The state consists of the
48 hints that the application sets on the window, such as the title, or window
51 OBClient also manages client messages for the client window. When the
52 application (or any application) requests something to be changed for the
53 client, it will call the ActionHandler (for client messages) or update the
54 class' member variables and call whatever is nessary to complete the
55 change (such as causing a redraw of the titlebar after the title is changed).
57 class OBClient
: public otk::OtkEventHandler
, public OBWidget
{
60 //! The frame window which decorates around the client window
62 NOTE: This should NEVER be used inside the client class's constructor!
66 //! Corners of the client window, used for anchor positions
67 enum Corner
{ TopLeft
,
72 //! Possible window types
73 enum WindowType
{ Type_Desktop
, //!< A desktop (bottom-most window)
74 Type_Dock
, //!< A dock bar/panel window
75 Type_Toolbar
, //!< A toolbar window, pulled off an app
76 Type_Menu
, //!< A sticky menu from an app
77 Type_Utility
, //!< A small utility window such as a palette
78 Type_Splash
, //!< A splash screen window
79 Type_Dialog
, //!< A dialog window
80 Type_Normal
//!< A normal application window
83 //! Possible flags for MWM Hints (defined by Motif 2.0)
84 enum MwmFlags
{ MwmFlag_Functions
= 1 << 0, //!< The MMW Hints define funcs
85 MwmFlag_Decorations
= 1 << 1 //!< The MWM Hints define decor
88 //! Possible functions for MWM Hints (defined by Motif 2.0)
89 enum MwmFunctions
{ MwmFunc_All
= 1 << 0, //!< All functions
90 MwmFunc_Resize
= 1 << 1, //!< Allow resizing
91 MwmFunc_Move
= 1 << 2, //!< Allow moving
92 MwmFunc_Iconify
= 1 << 3, //!< Allow to be iconfied
93 MwmFunc_Maximize
= 1 << 4 //!< Allow to be maximized
94 //MwmFunc_Close = 1 << 5 //!< Allow to be closed
97 //! Possible decorations for MWM Hints (defined by Motif 2.0)
98 enum MemDecorations
{ MwmDecor_All
= 1 << 0, //!< All decorations
99 MwmDecor_Border
= 1 << 1, //!< Show a border
100 MwmDecor_Handle
= 1 << 2, //!< Show a handle (bottom)
101 MwmDecor_Title
= 1 << 3, //!< Show a titlebar
102 //MwmDecor_Menu = 1 << 4, //!< Show a menu
103 MwmDecor_Iconify
= 1 << 5, //!< Show an iconify button
104 MwmDecor_Maximize
= 1 << 6 //!< Show a maximize button
107 //! The things the user can do to the client window
108 enum Function
{ Func_Resize
= 1 << 0, //!< Allow resizing
109 Func_Move
= 1 << 1, //!< Allow moving
110 Func_Iconify
= 1 << 2, //!< Allow to be iconified
111 Func_Maximize
= 1 << 3, //!< Allow to be maximized
112 Func_Close
= 1 << 4 //!< Allow to be closed
114 //! Holds a bitmask of OBClient::Function values
115 typedef unsigned char FunctionFlags
;
117 //! The decorations the client window wants to be displayed on it
118 enum Decoration
{ Decor_Titlebar
= 1 << 0, //!< Display a titlebar
119 Decor_Handle
= 1 << 1, //!< Display a handle (bottom)
120 Decor_Border
= 1 << 2, //!< Display a border
121 Decor_Iconify
= 1 << 3, //!< Display an iconify button
122 Decor_Maximize
= 1 << 4, //!< Display a maximize button
123 Decor_Sticky
= 1 << 5, //!< Display a sticky button
124 Decor_Close
= 1 << 6 //!< Display a close button
126 //! Holds a bitmask of OBClient::Decoration values
127 typedef unsigned char DecorationFlags
;
129 //! Possible actions that can be made with the _NET_WM_STATE client message
130 enum StateAction
{ State_Remove
= 0, //!< _NET_WM_STATE_REMOVE
131 State_Add
, //!< _NET_WM_STATE_ADD
132 State_Toggle
//!< _NET_WM_STATE_TOGGLE
135 //! The event mask to grab on client windows
136 static const long event_mask
= PropertyChangeMask
| FocusChangeMask
|
139 //! The mask of events to not let propogate past the client
141 This makes things like xprop work on the client window, but means we have
142 to explicitly grab clicks that we want.
144 static const long no_propagate_mask
= ButtonPressMask
| ButtonReleaseMask
|
147 //! The number of unmap events to ignore on the window
151 //! The screen number on which the client resides
154 //! The actual window that this class is wrapping up
157 //! The id of the group the window belongs to
160 // XXX: transient_for, transients
162 //! The desktop on which the window resides (0xffffffff for all desktops)
163 unsigned long _desktop
;
165 //! Normal window title
166 std::string _title
; // XXX: Have to keep track if this string is Utf8 or not
167 //! Window title when iconifiged
168 std::string _icon_title
;
170 //! The application that created the window
171 std::string _app_name
;
172 //! The class of the window, can used for grouping
173 std::string _app_class
;
175 //! The type of window (what its function is)
178 //! Position and size of the window
180 This will not always be the actual position of the window on screen, it is
181 rather, the position requested by the client, to which the window's gravity
186 //! The window's strut
188 The strut defines areas of the screen that are marked off-bounds for window
189 placement. In theory, where this window exists.
193 //! The logical size of the window
195 The "logical" size of the window is refers to the user's perception of the
196 size of the window, and is the value that should be displayed to the user.
197 For example, with xterms, this value it the number of characters being
198 displayed in the terminal, instead of the number of pixels.
200 otk::Point _logical_size
;
202 //! Width of the border on the window.
204 The window manager will set this to 0 while the window is being managed,
205 but needs to restore it afterwards, so it is saved here.
209 //! The minimum size of the client window
211 If the min is > the max, then the window is not resizable
213 otk::Point _min_size
;
214 //! The maximum size of the client window
216 If the min is > the max, then the window is not resizable
218 otk::Point _max_size
;
219 //! The size of increments to resize the client window by
220 otk::Point _size_inc
;
221 //! The base size of the client window
223 This value should be subtracted from the window's actual size when
224 displaying its size to the user, or working with its min/max size
226 otk::Point _base_size
;
228 //! Where to place the decorated window in relation to the undecorated window
231 //! The state of the window, one of WithdrawnState, IconicState, or
235 //! Was the window's position requested by the application? if not, we should
236 //! place the window ourselves when it first appears
239 //! Can the window receive input focus?
243 //! Notify the window when it receives focus?
245 //! Does the client window have the input focus?
248 //! The window uses shape extension to be non-rectangular?
251 //! The window is modal, so it must be processed before any windows it is
252 //! related to can be focused
254 //! Only the window's titlebar is displayed
256 //! The window is iconified
258 //! The window is maximized to fill the screen vertically
260 //! The window is maximized to fill the screen horizontally
262 //! The window should not be displayed by pagers
264 //! The window should not be displayed by taskbars
266 //! The window is a 'fullscreen' window, and should be on top of all others
268 //! The window should be on top of other windows of the same type
270 //! The window should be underneath other windows of the same type
273 OBScreen::StackLayer _layer
;
275 //! A bitmask of values in the OBClient::Decoration enum
277 The values in the variable are the decorations that the client wants to be
280 DecorationFlags _decorations
;
282 //! A bitmask of values in the OBClient::Function enum
284 The values in the variable specify the ways in which the user is allowed to
287 FunctionFlags _functions
;
289 //! Retrieves the desktop hint's value and sets OBClient::_desktop
291 //! Retrieves the window's type and sets OBClient::_type
293 //! Gets the MWM Hints and adjusts OBClient::_functions and
294 //! OBClient::_decorations
296 //! Gets the position and size of the window and sets OBClient::_area
298 //! Gets the net_state hint and sets the boolean flags for any states set in
301 //! Determines if the window uses the Shape extension and sets
302 //! OBClient::_shaped
305 //! Sets the wm_state to the specified value
306 void setWMState(long state
);
307 //! Sends the window to the specified desktop
308 void setDesktop(long desktop
);
309 //! Adjusts the window's net_state
310 void setState(StateAction action
, long data1
, long data2
);
312 //! Calculates the stacking layer for the client window
315 //! Update the protocols that the window supports and adjusts things if they
317 void updateProtocols();
318 //! Updates the WMNormalHints and adjusts things if they change
319 void updateNormalHints();
320 //! Updates the WMHints and adjusts things if they change
321 void updateWMHints();
322 //! Updates the window's title
324 //! Updates the window's icon title
325 void updateIconTitle();
326 //! Updates the window's application name and class
328 // XXX: updateTransientFor();
329 //! Updates the strut for the client
332 //! Change the client's state hints to match the class' data
337 //! Constructs a new OBClient object around a specified window id
339 @param window The window id that the OBClient class should handle
340 @param screen The screen on which the window resides
342 OBClient(int screen
, Window window
);
343 //! Destroys the OBClient object
347 //! Returns the screen on which the clien resides
348 inline int screen() const { return _screen
; }
350 //! Returns the window id that the OBClient object is handling
351 inline Window
window() const { return _window
; }
353 //! Returns the type of the window, one of the OBClient::WindowType values
354 inline WindowType
type() const { return _type
; }
355 //! Returns if the window should be treated as a normal window.
357 Some windows (desktops, docks, splash screens) have special rules applied
358 to them in a number of places regarding focus or user interaction.
360 inline bool normal() const {
361 return ! (_type
== Type_Desktop
|| _type
== Type_Dock
||
362 _type
== Type_Splash
);
365 //! Returns the desktop on which the window resides
367 This value is a 0-based index.<br>
368 A value of 0xffffffff indicates that the window exists on all desktops.
370 inline unsigned long desktop() const { return _desktop
; }
371 //! Returns the window's title
372 inline const std::string
&title() const { return _title
; }
373 //! Returns the window's title when it is iconified
374 inline const std::string
&iconTitle() const { return _title
; }
375 //! Returns the application's name to whom the window belongs
376 inline const std::string
&appName() const { return _app_name
; }
377 //! Returns the class of the window
378 inline const std::string
&appClass() const { return _app_class
; }
379 //! Returns if the window can be focused
381 @return true if the window can receive focusl otherwise, false
383 inline bool canFocus() const { return _can_focus
; }
384 //! Returns if the window has indicated that it needs urgent attention
385 inline bool urgent() const { return _urgent
; }
386 //! Returns if the window wants to be notified when it receives focus
387 inline bool focusNotify() const { return _focus_notify
; }
388 //! Returns if the window uses the Shape extension
389 inline bool shaped() const { return _shaped
; }
390 //! Returns the window's gravity
392 This value determines where to place the decorated window in relation to
393 its position without decorations.<br>
394 One of: NorthWestGravity, SouthWestGravity, EastGravity, ...,
395 SouthGravity, StaticGravity, ForgetGravity
397 inline int gravity() const { return _gravity
; }
398 //! Returns if the application requested the initial position for the window
400 If the application did not request a position (this function returns false)
401 then the window should be placed intelligently by the window manager
404 inline bool positionRequested() const { return _positioned
; }
405 //! Returns the decorations that the client window wishes to be displayed on
407 inline DecorationFlags
decorations() const { return _decorations
; }
408 //! Returns the functions that the user can perform on the window
409 inline FunctionFlags
funtions() const { return _functions
; }
411 //! Returns if the window is modal
413 If the window is modal, then no other windows that it is related to can get
414 focus while it exists/remains modal.
416 inline bool modal() const { return _modal
; }
417 //! Returns if the window is shaded
419 When the window is shaded, only its titlebar is visible, the client itself
422 inline bool shaded() const { return _shaded
; }
423 //! Returns if the window is iconified
425 When the window is iconified, it is not visible at all (except in iconbars/
426 panels/etc that want to show lists of iconified windows
428 inline bool iconic() const { return _iconic
; }
429 //! Returns if the window is maximized vertically
430 inline bool maxVert() const { return _max_vert
; }
431 //! Returns if the window is maximized horizontally
432 inline bool maxHorz() const { return _max_horz
; }
433 //! Returns the window's stacking layer
434 inline OBScreen::StackLayer
layer() const { return _layer
; }
436 //! Removes or reapplies the client's border to its window
438 Used when managing and unmanaging a window.
439 @param addborder true if adding the border to the client; false if removing
442 void toggleClientBorder(bool addborder
);
444 //! Returns the position and size of the client relative to the root window
445 inline const otk::Rect
&area() const { return _area
; }
447 //! Returns the client's strut definition
448 inline const otk::Strut
&strut() const { return _strut
; }
450 //! Move the client window
451 void move(int x
, int y
);
453 //! Resizes the client window, anchoring it in a given corner
455 This also maintains things like the client's minsize, and size increments.
456 @param anchor The corner to keep in the same position when resizing.
457 @param w The width component of the new size for the client.
458 @param h The height component of the new size for the client.
459 @param x An optional X coordinate to which the window will be moved
461 @param y An optional Y coordinate to which the window will be moved
463 The x and y coordinates must both be sepcified together, or they will have
464 no effect. When they are specified, the anchor is ignored.
466 void resize(Corner anchor
, int w
, int h
, int x
= INT_MIN
, int y
= INT_MIN
);
468 //! Request the client to close its window.
471 //! Sets the window's stacking layer
473 @param l An integer specifying the layer.<br>
474 '0' - the normal layer<br>
475 '> 0' - the 'above' layer<br>
476 '< 0' - the 'below' layer
478 void setStackLayer(int l
);
480 //! Shades or unshades the client window
482 @param shade true if the window should be shaded; false if it should be
485 void shade(bool shade
);
487 //! Attempt to focus the client window
490 //! Remove focus from the client window
493 virtual void focusHandler(const XFocusChangeEvent
&e
);
494 virtual void unfocusHandler(const XFocusChangeEvent
&e
);
495 virtual void propertyHandler(const XPropertyEvent
&e
);
496 virtual void clientMessageHandler(const XClientMessageEvent
&e
);
497 virtual void configureRequestHandler(const XConfigureRequestEvent
&e
);
498 virtual void unmapHandler(const XUnmapEvent
&e
);
499 virtual void destroyHandler(const XDestroyWindowEvent
&e
);
500 virtual void reparentHandler(const XReparentEvent
&e
);
501 virtual void mapRequestHandler(const XMapRequestEvent
&e
);
503 virtual void shapeHandler(const XShapeEvent
&e
);
509 #endif // __client_hh