1 // -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
4 # include "../config.h"
11 #include "bindings.hh"
12 #include "otk/display.hh"
13 #include "otk/property.hh"
17 #include <X11/Xutil.h>
18 #include <X11/Xatom.h>
23 #define _(str) gettext(str)
30 Client::Client(int screen
, Window window
)
31 : otk::EventHandler(),
32 WidgetBase(WidgetBase::Type_Client
),
33 frame(0), _screen(screen
), _window(window
)
40 // update EVERYTHING the first time!!
42 // we default to NormalState, visible
43 _wmstate
= NormalState
;
46 // not a transient by default of course
48 // pick a layer to start from
49 _layer
= Layer_Normal
;
50 // default to not urgent
52 // not positioned unless specified
54 // nothing is disabled unless specified
55 _disabled_decorations
= 0;
56 // no modal children until they set themselves
64 getType(); // this can change the mwmhints for special cases
71 getGravity(); // get the attribute gravity
72 updateNormalHints(); // this may override the attribute gravity
74 // got the type, the mwmhints, the protocols, and the normal hints (min/max
75 // sizes), so we're ready to set up
76 // the decorations/functions
77 setupDecorAndFunctions();
79 // also get the initial_state and set _iconic if we aren't "starting"
80 // when we're "starting" that means we should use whatever state was already
81 // on the window over the initial map state, because it was already mapped
82 updateWMHints(openbox
->state() != Openbox::State_Starting
);
88 // this makes sure that these windows appear on all desktops
89 if (/*_type == Type_Dock ||*/ _type
== Type_Desktop
)
90 _desktop
= 0xffffffff;
92 // set the desktop hint, to make sure that it always exists, and to reflect
93 // any changes we've made here
94 otk::Property::set(_window
, otk::Property::atoms
.net_wm_desktop
,
95 otk::Property::atoms
.cardinal
, (unsigned)_desktop
);
103 // clean up childrens' references
104 while (!_transients
.empty()) {
105 _transients
.front()->_transient_for
= 0;
106 _transients
.pop_front();
109 // clean up parents reference to this
111 _transient_for
->_transients
.remove(this); // remove from old parent
113 if (openbox
->state() != Openbox::State_Exiting
) {
114 // these values should not be persisted across a window unmapping/mapping
115 otk::Property::erase(_window
, otk::Property::atoms
.net_wm_desktop
);
116 otk::Property::erase(_window
, otk::Property::atoms
.net_wm_state
);
118 // if we're left in an iconic state, the client wont be mapped. this is
119 // bad, since we will no longer be managing the window on restart
121 XMapWindow(**otk::display
, _window
);
126 bool Client::validate() const
128 XSync(**otk::display
, false); // get all events on the server
131 if (XCheckTypedWindowEvent(**otk::display
, _window
, DestroyNotify
, &e
) ||
132 XCheckTypedWindowEvent(**otk::display
, _window
, UnmapNotify
, &e
)) {
133 XPutBackEvent(**otk::display
, &e
);
141 void Client::getGravity()
143 XWindowAttributes wattrib
;
146 ret
= XGetWindowAttributes(**otk::display
, _window
, &wattrib
);
147 assert(ret
!= BadWindow
);
148 _gravity
= wattrib
.win_gravity
;
152 void Client::getDesktop()
154 // defaults to the current desktop
155 _desktop
= openbox
->screen(_screen
)->desktop();
157 if (otk::Property::get(_window
, otk::Property::atoms
.net_wm_desktop
,
158 otk::Property::atoms
.cardinal
,
159 (long unsigned*)&_desktop
)) {
161 // printf("Window requested desktop: %ld\n", _desktop);
167 void Client::getType()
169 _type
= (WindowType
) -1;
172 unsigned long num
= (unsigned) -1;
173 if (otk::Property::get(_window
, otk::Property::atoms
.net_wm_window_type
,
174 otk::Property::atoms
.atom
, &num
, &val
)) {
175 // use the first value that we know about in the array
176 for (unsigned long i
= 0; i
< num
; ++i
) {
177 if (val
[i
] == otk::Property::atoms
.net_wm_window_type_desktop
)
178 _type
= Type_Desktop
;
179 else if (val
[i
] == otk::Property::atoms
.net_wm_window_type_dock
)
181 else if (val
[i
] == otk::Property::atoms
.net_wm_window_type_toolbar
)
182 _type
= Type_Toolbar
;
183 else if (val
[i
] == otk::Property::atoms
.net_wm_window_type_menu
)
185 else if (val
[i
] == otk::Property::atoms
.net_wm_window_type_utility
)
186 _type
= Type_Utility
;
187 else if (val
[i
] == otk::Property::atoms
.net_wm_window_type_splash
)
189 else if (val
[i
] == otk::Property::atoms
.net_wm_window_type_dialog
)
191 else if (val
[i
] == otk::Property::atoms
.net_wm_window_type_normal
)
193 else if (val
[i
] == otk::Property::atoms
.kde_net_wm_window_type_override
){
194 // prevent this window from getting any decor or functionality
195 _mwmhints
.flags
&= MwmFlag_Functions
| MwmFlag_Decorations
;
196 _mwmhints
.decorations
= 0;
197 _mwmhints
.functions
= 0;
199 if (_type
!= (WindowType
) -1)
200 break; // grab the first known type
205 if (_type
== (WindowType
) -1) {
207 * the window type hint was not set, which means we either classify ourself
208 * as a normal window or a dialog, depending on if we are a transient.
218 void Client::setupDecorAndFunctions()
220 // start with everything (cept fullscreen)
221 _decorations
= Decor_Titlebar
| Decor_Handle
| Decor_Border
|
222 Decor_AllDesktops
| Decor_Iconify
| Decor_Maximize
;
223 _functions
= Func_Resize
| Func_Move
| Func_Iconify
| Func_Maximize
|
225 if (_delete_window
) {
226 _decorations
|= Decor_Close
;
227 _functions
|= Func_Close
;
230 if (!(_min_size
.x() < _max_size
.x() || _min_size
.y() < _max_size
.y())) {
231 _decorations
&= ~(Decor_Maximize
| Decor_Handle
);
232 _functions
&= ~(Func_Resize
| Func_Maximize
);
237 // normal windows retain all of the possible decorations and
238 // functionality, and are the only windows that you can fullscreen
239 _functions
|= Func_Fullscreen
;
243 // dialogs cannot be maximized
244 _decorations
&= ~Decor_Maximize
;
245 _functions
&= ~Func_Maximize
;
251 // these windows get less functionality
252 _decorations
&= ~(Decor_Iconify
| Decor_Handle
);
253 _functions
&= ~(Func_Iconify
| Func_Resize
);
259 // none of these windows are manipulated by the window manager
265 // Mwm Hints are applied subtractively to what has already been chosen for
266 // decor and functionality
267 if (_mwmhints
.flags
& MwmFlag_Decorations
) {
268 if (! (_mwmhints
.decorations
& MwmDecor_All
)) {
269 if (! (_mwmhints
.decorations
& MwmDecor_Border
))
270 _decorations
&= ~Decor_Border
;
271 if (! (_mwmhints
.decorations
& MwmDecor_Handle
))
272 _decorations
&= ~Decor_Handle
;
273 if (! (_mwmhints
.decorations
& MwmDecor_Title
)) {
274 _decorations
&= ~Decor_Titlebar
;
275 // if we don't have a titlebar, then we cannot shade!
276 _functions
&= ~Func_Shade
;
278 if (! (_mwmhints
.decorations
& MwmDecor_Iconify
))
279 _decorations
&= ~Decor_Iconify
;
280 if (! (_mwmhints
.decorations
& MwmDecor_Maximize
))
281 _decorations
&= ~Decor_Maximize
;
285 if (_mwmhints
.flags
& MwmFlag_Functions
) {
286 if (! (_mwmhints
.functions
& MwmFunc_All
)) {
287 if (! (_mwmhints
.functions
& MwmFunc_Resize
))
288 _functions
&= ~Func_Resize
;
289 if (! (_mwmhints
.functions
& MwmFunc_Move
))
290 _functions
&= ~Func_Move
;
291 if (! (_mwmhints
.functions
& MwmFunc_Iconify
))
292 _functions
&= ~Func_Iconify
;
293 if (! (_mwmhints
.functions
& MwmFunc_Maximize
))
294 _functions
&= ~Func_Maximize
;
295 // dont let mwm hints kill the close button
296 //if (! (_mwmhints.functions & MwmFunc_Close))
297 // _functions &= ~Func_Close;
301 // can't maximize without moving/resizing
302 if (!((_functions
& Func_Move
) && (_functions
& Func_Resize
)))
303 _functions
&= ~Func_Maximize
;
305 // finally, user specified disabled decorations are applied to subtract
307 if (_disabled_decorations
& Decor_Titlebar
)
308 _decorations
&= ~Decor_Titlebar
;
309 if (_disabled_decorations
& Decor_Handle
)
310 _decorations
&= ~Decor_Handle
;
311 if (_disabled_decorations
& Decor_Border
)
312 _decorations
&= ~Decor_Border
;
313 if (_disabled_decorations
& Decor_Iconify
)
314 _decorations
&= ~Decor_Iconify
;
315 if (_disabled_decorations
& Decor_Maximize
)
316 _decorations
&= ~Decor_Maximize
;
317 if (_disabled_decorations
& Decor_AllDesktops
)
318 _decorations
&= ~Decor_AllDesktops
;
319 if (_disabled_decorations
& Decor_Close
)
320 _decorations
&= ~Decor_Close
;
322 // You can't shade without a titlebar
323 if (!(_decorations
& Decor_Titlebar
))
324 _functions
&= ~Func_Shade
;
326 changeAllowedActions();
329 frame
->adjustSize(); // change the decors on the frame
330 frame
->adjustPosition(); // with more/less decorations, we may need to be
336 void Client::getMwmHints()
338 unsigned long num
= MwmHints::elements
;
339 unsigned long *hints
;
341 _mwmhints
.flags
= 0; // default to none
343 if (!otk::Property::get(_window
, otk::Property::atoms
.motif_wm_hints
,
344 otk::Property::atoms
.motif_wm_hints
, &num
,
345 (unsigned long **)&hints
))
348 if (num
>= MwmHints::elements
) {
349 // retrieved the hints
350 _mwmhints
.flags
= hints
[0];
351 _mwmhints
.functions
= hints
[1];
352 _mwmhints
.decorations
= hints
[2];
359 void Client::getArea()
361 XWindowAttributes wattrib
;
364 ret
= XGetWindowAttributes(**otk::display
, _window
, &wattrib
);
365 assert(ret
!= BadWindow
);
367 _area
.setRect(wattrib
.x
, wattrib
.y
, wattrib
.width
, wattrib
.height
);
368 _border_width
= wattrib
.border_width
;
372 void Client::getState()
374 _modal
= _shaded
= _max_horz
= _max_vert
= _fullscreen
= _above
= _below
=
375 _iconic
= _skip_taskbar
= _skip_pager
= false;
377 unsigned long *state
;
378 unsigned long num
= (unsigned) -1;
380 if (otk::Property::get(_window
, otk::Property::atoms
.net_wm_state
,
381 otk::Property::atoms
.atom
, &num
, &state
)) {
382 for (unsigned long i
= 0; i
< num
; ++i
) {
383 if (state
[i
] == otk::Property::atoms
.net_wm_state_modal
)
385 else if (state
[i
] == otk::Property::atoms
.net_wm_state_shaded
)
387 else if (state
[i
] == otk::Property::atoms
.net_wm_state_hidden
)
389 else if (state
[i
] == otk::Property::atoms
.net_wm_state_skip_taskbar
)
390 _skip_taskbar
= true;
391 else if (state
[i
] == otk::Property::atoms
.net_wm_state_skip_pager
)
393 else if (state
[i
] == otk::Property::atoms
.net_wm_state_fullscreen
)
395 else if (state
[i
] == otk::Property::atoms
.net_wm_state_maximized_vert
)
397 else if (state
[i
] == otk::Property::atoms
.net_wm_state_maximized_horz
)
399 else if (state
[i
] == otk::Property::atoms
.net_wm_state_above
)
401 else if (state
[i
] == otk::Property::atoms
.net_wm_state_below
)
410 void Client::getShaped()
414 if (otk::display
->shape()) {
419 XShapeSelectInput(**otk::display
, _window
, ShapeNotifyMask
);
421 XShapeQueryExtents(**otk::display
, _window
, &s
, &foo
,
422 &foo
, &ufoo
, &ufoo
, &foo
, &foo
, &foo
, &ufoo
, &ufoo
);
429 void Client::calcLayer() {
432 if (_iconic
) l
= Layer_Icon
;
433 else if (_fullscreen
) l
= Layer_Fullscreen
;
434 else if (_type
== Type_Desktop
) l
= Layer_Desktop
;
435 else if (_type
== Type_Dock
) {
436 if (!_below
) l
= Layer_Top
;
437 else l
= Layer_Normal
;
439 else if (_above
) l
= Layer_Above
;
440 else if (_below
) l
= Layer_Below
;
441 else l
= Layer_Normal
;
447 if we don't have a frame, then we aren't mapped yet (and this would
450 openbox
->screen(_screen
)->raiseWindow(this);
456 void Client::updateProtocols()
461 _focus_notify
= false;
462 _delete_window
= false;
464 if (XGetWMProtocols(**otk::display
, _window
, &proto
, &num_return
)) {
465 for (int i
= 0; i
< num_return
; ++i
) {
466 if (proto
[i
] == otk::Property::atoms
.wm_delete_window
) {
467 // this means we can request the window to close
468 _delete_window
= true;
469 } else if (proto
[i
] == otk::Property::atoms
.wm_take_focus
)
470 // if this protocol is requested, then the window will be notified
471 // by the window manager whenever it receives focus
472 _focus_notify
= true;
479 void Client::updateNormalHints()
483 int oldgravity
= _gravity
;
488 _size_inc
.setPoint(1, 1);
489 _base_size
.setPoint(0, 0);
490 _min_size
.setPoint(0, 0);
491 _max_size
.setPoint(INT_MAX
, INT_MAX
);
493 // get the hints from the window
494 if (XGetWMNormalHints(**otk::display
, _window
, &size
, &ret
)) {
495 _positioned
= (size
.flags
& (PPosition
|USPosition
));
497 if (size
.flags
& PWinGravity
) {
498 _gravity
= size
.win_gravity
;
500 // if the client has a frame, i.e. has already been mapped and is
501 // changing its gravity
502 if (frame
&& _gravity
!= oldgravity
) {
503 // move our idea of the client's position based on its new gravity
504 int x
= frame
->rect().x(), y
= frame
->rect().y();
505 frame
->frameGravity(x
, y
);
510 if (size
.flags
& PAspect
) {
511 if (size
.min_aspect
.y
) _min_ratio
= size
.min_aspect
.x
/size
.min_aspect
.y
;
512 if (size
.max_aspect
.y
) _max_ratio
= size
.max_aspect
.x
/size
.max_aspect
.y
;
515 if (size
.flags
& PMinSize
)
516 _min_size
.setPoint(size
.min_width
, size
.min_height
);
518 if (size
.flags
& PMaxSize
)
519 _max_size
.setPoint(size
.max_width
, size
.max_height
);
521 if (size
.flags
& PBaseSize
)
522 _base_size
.setPoint(size
.base_width
, size
.base_height
);
524 if (size
.flags
& PResizeInc
)
525 _size_inc
.setPoint(size
.width_inc
, size
.height_inc
);
530 void Client::updateWMHints(bool initstate
)
534 // assume a window takes input if it doesnt specify
538 if ((hints
= XGetWMHints(**otk::display
, _window
)) != NULL
) {
539 if (hints
->flags
& InputHint
)
540 _can_focus
= hints
->input
;
542 // only do this when initstate is true!
543 if (initstate
&& (hints
->flags
& StateHint
))
544 _iconic
= hints
->initial_state
== IconicState
;
546 if (hints
->flags
& XUrgencyHint
)
549 if (hints
->flags
& WindowGroupHint
) {
550 if (hints
->window_group
!= _group
) {
551 // XXX: remove from the old group if there was one
552 _group
= hints
->window_group
;
553 // XXX: do stuff with the group
564 printf("DEBUG: Urgent Hint for 0x%lx: %s\n",
565 (long)_window
, _urgent
? "ON" : "OFF");
567 // fire the urgent callback if we're mapped, otherwise, wait until after
575 void Client::updateTitle()
580 if (!otk::Property::get(_window
, otk::Property::atoms
.net_wm_name
,
581 otk::Property::utf8
, &_title
)) {
583 otk::Property::get(_window
, otk::Property::atoms
.wm_name
,
584 otk::Property::ascii
, &_title
);
588 _title
= _("Unnamed Window");
591 frame
->setTitle(_title
);
595 void Client::updateIconTitle()
600 if (!otk::Property::get(_window
, otk::Property::atoms
.net_wm_icon_name
,
601 otk::Property::utf8
, &_icon_title
)) {
603 otk::Property::get(_window
, otk::Property::atoms
.wm_icon_name
,
604 otk::Property::ascii
, &_icon_title
);
608 _icon_title
= _("Unnamed Window");
612 void Client::updateClass()
615 _app_name
= _app_class
= _role
= "";
617 otk::Property::StringVect v
;
618 unsigned long num
= 2;
620 if (otk::Property::get(_window
, otk::Property::atoms
.wm_class
,
621 otk::Property::ascii
, &num
, &v
)) {
622 if (num
> 0) _app_name
= v
[0].c_str();
623 if (num
> 1) _app_class
= v
[1].c_str();
628 if (otk::Property::get(_window
, otk::Property::atoms
.wm_window_role
,
629 otk::Property::ascii
, &num
, &v
)) {
630 if (num
> 0) _role
= v
[0].c_str();
635 void Client::updateStrut()
637 unsigned long num
= 4;
639 if (!otk::Property::get(_window
, otk::Property::atoms
.net_wm_strut
,
640 otk::Property::atoms
.cardinal
, &num
, &data
))
644 _strut
.left
= data
[0];
645 _strut
.right
= data
[1];
646 _strut
.top
= data
[2];
647 _strut
.bottom
= data
[3];
649 // updating here is pointless while we're being mapped cuz we're not in
650 // the screen's client list yet
652 openbox
->screen(_screen
)->updateStrut();
659 void Client::updateTransientFor()
664 if (XGetTransientForHint(**otk::display
, _window
, &t
) &&
665 t
!= _window
) { // cant be transient to itself!
666 c
= openbox
->findClient(t
);
667 assert(c
!= this); // if this happens then we need to check for it
669 if (!c
/*XXX: && _group*/) {
670 // not transient to a client, see if it is transient for a group
671 if (//t == _group->leader() ||
673 t
== otk::display
->screenInfo(_screen
)->rootWindow()) {
674 // window is a transient for its group!
675 // XXX: for now this is treated as non-transient.
676 // this needs to be fixed!
681 // if anything has changed...
682 if (c
!= _transient_for
) {
688 _transient_for
->_transients
.remove(this); // remove from old parent
691 _transient_for
->_transients
.push_back(this); // add to new parent
699 void Client::propertyHandler(const XPropertyEvent
&e
)
701 otk::EventHandler::propertyHandler(e
);
703 // validate cuz we query stuff off the client here
704 if (!validate()) return;
706 // compress changes to a single property into a single change
708 while (XCheckTypedEvent(**otk::display
, e
.type
, &ce
)) {
709 // XXX: it would be nice to compress ALL changes to a property, not just
710 // changes in a row without other props between.
711 if (ce
.xproperty
.atom
!= e
.atom
) {
712 XPutBackEvent(**otk::display
, &ce
);
717 if (e
.atom
== XA_WM_NORMAL_HINTS
) {
719 setupDecorAndFunctions(); // normal hints can make a window non-resizable
720 } else if (e
.atom
== XA_WM_HINTS
)
722 else if (e
.atom
== XA_WM_TRANSIENT_FOR
) {
723 updateTransientFor();
725 calcLayer(); // type may have changed, so update the layer
726 setupDecorAndFunctions();
728 else if (e
.atom
== otk::Property::atoms
.net_wm_name
||
729 e
.atom
== otk::Property::atoms
.wm_name
)
731 else if (e
.atom
== otk::Property::atoms
.net_wm_icon_name
||
732 e
.atom
== otk::Property::atoms
.wm_icon_name
)
734 else if (e
.atom
== otk::Property::atoms
.wm_class
)
736 else if (e
.atom
== otk::Property::atoms
.wm_protocols
) {
738 setupDecorAndFunctions();
740 else if (e
.atom
== otk::Property::atoms
.net_wm_strut
)
745 void Client::setWMState(long state
)
747 if (state
== _wmstate
) return; // no change
751 setDesktop(ICONIC_DESKTOP
);
754 setDesktop(openbox
->screen(_screen
)->desktop());
760 void Client::setDesktop(long target
)
762 if (target
== _desktop
) return;
764 printf("Setting desktop %ld\n", target
);
766 if (!(target
>= 0 || target
== (signed)0xffffffff ||
767 target
== ICONIC_DESKTOP
))
772 // set the desktop hint, but not if we're iconifying
773 if (_desktop
!= ICONIC_DESKTOP
)
774 otk::Property::set(_window
, otk::Property::atoms
.net_wm_desktop
,
775 otk::Property::atoms
.cardinal
, (unsigned)_desktop
);
777 // 'move' the window to the new desktop
778 if (_desktop
== openbox
->screen(_screen
)->desktop() ||
779 _desktop
== (signed)0xffffffff)
784 // Handle Iconic state. Iconic state is maintained by the client being a
785 // member of the ICONIC_DESKTOP, so this is where we make iconifying and
786 // uniconifying happen.
787 bool i
= _desktop
== ICONIC_DESKTOP
;
788 if (i
!= _iconic
) { // has the state changed?
791 _wmstate
= IconicState
;
793 // we unmap the client itself so that we can get MapRequest events, and
794 // because the ICCCM tells us to!
795 XUnmapWindow(**otk::display
, _window
);
797 _wmstate
= NormalState
;
798 XMapWindow(**otk::display
, _window
);
803 frame
->adjustState();
807 Client
*Client::findModalChild(Client
*skip
) const
811 // find a modal child recursively and try focus it
812 List::const_iterator it
, end
= _transients
.end();
813 for (it
= _transients
.begin(); it
!= end
; ++it
)
814 if ((*it
)->_modal
&& *it
!= skip
)
815 return *it
; // got one
816 // none of our direct children are modal, let them try check
817 for (it
= _transients
.begin(); it
!= end
; ++it
)
818 if ((ret
= (*it
)->findModalChild()))
819 return ret
; // got one
824 void Client::setModal(bool modal
)
826 if (modal
== _modal
) return;
830 while (c
->_transient_for
) {
831 c
= c
->_transient_for
;
832 if (c
->_modal_child
) break; // already has a modal child
833 c
->_modal_child
= this;
836 // try find a replacement modal dialog
837 Client
*replacement
= 0;
840 while (c
->_transient_for
) // go up the tree
841 c
= c
->_transient_for
;
842 replacement
= c
->findModalChild(this); // find a modal child, skipping this
845 while (c
->_transient_for
) {
846 c
= c
->_transient_for
;
847 if (c
->_modal_child
!= this) break; // has a different modal child
848 c
->_modal_child
= replacement
;
855 void Client::setState(StateAction action
, long data1
, long data2
)
857 bool shadestate
= _shaded
;
858 bool fsstate
= _fullscreen
;
859 bool maxh
= _max_horz
;
860 bool maxv
= _max_vert
;
863 if (!(action
== State_Add
|| action
== State_Remove
||
864 action
== State_Toggle
))
865 return; // an invalid action was passed to the client message, ignore it
867 for (int i
= 0; i
< 2; ++i
) {
868 Atom state
= i
== 0 ? data1
: data2
;
870 if (! state
) continue;
872 // if toggling, then pick whether we're adding or removing
873 if (action
== State_Toggle
) {
874 if (state
== otk::Property::atoms
.net_wm_state_modal
)
875 action
= _modal
? State_Remove
: State_Add
;
876 else if (state
== otk::Property::atoms
.net_wm_state_maximized_vert
)
877 action
= _max_vert
? State_Remove
: State_Add
;
878 else if (state
== otk::Property::atoms
.net_wm_state_maximized_horz
)
879 action
= _max_horz
? State_Remove
: State_Add
;
880 else if (state
== otk::Property::atoms
.net_wm_state_shaded
)
881 action
= _shaded
? State_Remove
: State_Add
;
882 else if (state
== otk::Property::atoms
.net_wm_state_skip_taskbar
)
883 action
= _skip_taskbar
? State_Remove
: State_Add
;
884 else if (state
== otk::Property::atoms
.net_wm_state_skip_pager
)
885 action
= _skip_pager
? State_Remove
: State_Add
;
886 else if (state
== otk::Property::atoms
.net_wm_state_fullscreen
)
887 action
= _fullscreen
? State_Remove
: State_Add
;
888 else if (state
== otk::Property::atoms
.net_wm_state_above
)
889 action
= _above
? State_Remove
: State_Add
;
890 else if (state
== otk::Property::atoms
.net_wm_state_below
)
891 action
= _below
? State_Remove
: State_Add
;
894 if (action
== State_Add
) {
895 if (state
== otk::Property::atoms
.net_wm_state_modal
) {
896 if (_modal
) continue;
898 } else if (state
== otk::Property::atoms
.net_wm_state_maximized_vert
) {
900 } else if (state
== otk::Property::atoms
.net_wm_state_maximized_horz
) {
901 if (_max_horz
) continue;
903 } else if (state
== otk::Property::atoms
.net_wm_state_shaded
) {
905 } else if (state
== otk::Property::atoms
.net_wm_state_skip_taskbar
) {
906 _skip_taskbar
= true;
907 } else if (state
== otk::Property::atoms
.net_wm_state_skip_pager
) {
909 } else if (state
== otk::Property::atoms
.net_wm_state_fullscreen
) {
911 } else if (state
== otk::Property::atoms
.net_wm_state_above
) {
912 if (_above
) continue;
914 } else if (state
== otk::Property::atoms
.net_wm_state_below
) {
915 if (_below
) continue;
919 } else { // action == State_Remove
920 if (state
== otk::Property::atoms
.net_wm_state_modal
) {
921 if (!_modal
) continue;
923 } else if (state
== otk::Property::atoms
.net_wm_state_maximized_vert
) {
925 } else if (state
== otk::Property::atoms
.net_wm_state_maximized_horz
) {
927 } else if (state
== otk::Property::atoms
.net_wm_state_shaded
) {
929 } else if (state
== otk::Property::atoms
.net_wm_state_skip_taskbar
) {
930 _skip_taskbar
= false;
931 } else if (state
== otk::Property::atoms
.net_wm_state_skip_pager
) {
933 } else if (state
== otk::Property::atoms
.net_wm_state_fullscreen
) {
935 } else if (state
== otk::Property::atoms
.net_wm_state_above
) {
936 if (!_above
) continue;
938 } else if (state
== otk::Property::atoms
.net_wm_state_below
) {
939 if (!_below
) continue;
944 if (maxh
!= _max_horz
|| maxv
!= _max_vert
) {
945 if (maxh
!= _max_horz
&& maxv
!= _max_vert
) { // toggling both
946 if (maxh
== maxv
) { // both going the same way
947 maximize(maxh
, 0, true);
949 maximize(maxh
, 1, true);
950 maximize(maxv
, 2, true);
952 } else { // toggling one
953 if (maxh
!= _max_horz
)
954 maximize(maxh
, 1, true);
956 maximize(maxv
, 2, true);
961 // change fullscreen state before shading, as it will affect if the window
963 if (fsstate
!= _fullscreen
)
964 fullscreen(fsstate
, true);
965 if (shadestate
!= _shaded
)
968 changeState(); // change the hint to relect these changes
972 void Client::toggleClientBorder(bool addborder
)
974 // adjust our idea of where the client is, based on its border. When the
975 // border is removed, the client should now be considered to be in a
976 // different position.
977 // when re-adding the border to the client, the same operation needs to be
979 int oldx
= _area
.x(), oldy
= _area
.y();
980 int x
= oldx
, y
= oldy
;
983 case NorthWestGravity
:
985 case SouthWestGravity
:
987 case NorthEastGravity
:
989 case SouthEastGravity
:
990 if (addborder
) x
-= _border_width
* 2;
991 else x
+= _border_width
* 2;
998 if (addborder
) x
-= _border_width
;
999 else x
+= _border_width
;
1004 case NorthWestGravity
:
1006 case NorthEastGravity
:
1008 case SouthWestGravity
:
1010 case SouthEastGravity
:
1011 if (addborder
) y
-= _border_width
* 2;
1012 else y
+= _border_width
* 2;
1019 if (addborder
) y
-= _border_width
;
1020 else y
+= _border_width
;
1026 XSetWindowBorderWidth(**otk::display
, _window
, _border_width
);
1028 // move the client so it is back it the right spot _with_ its border!
1029 if (x
!= oldx
|| y
!= oldy
)
1030 XMoveWindow(**otk::display
, _window
, x
, y
);
1032 XSetWindowBorderWidth(**otk::display
, _window
, 0);
1036 void Client::clientMessageHandler(const XClientMessageEvent
&e
)
1038 otk::EventHandler::clientMessageHandler(e
);
1040 // validate cuz we query stuff off the client here
1041 if (!validate()) return;
1043 if (e
.format
!= 32) return;
1045 if (e
.message_type
== otk::Property::atoms
.wm_change_state
) {
1046 // compress changes into a single change
1047 bool compress
= false;
1049 while (XCheckTypedEvent(**otk::display
, e
.type
, &ce
)) {
1050 // XXX: it would be nice to compress ALL messages of a type, not just
1051 // messages in a row without other message types between.
1052 if (ce
.xclient
.message_type
!= e
.message_type
) {
1053 XPutBackEvent(**otk::display
, &ce
);
1059 setWMState(ce
.xclient
.data
.l
[0]); // use the found event
1061 setWMState(e
.data
.l
[0]); // use the original event
1062 } else if (e
.message_type
== otk::Property::atoms
.net_wm_desktop
) {
1063 // compress changes into a single change
1064 bool compress
= false;
1066 while (XCheckTypedEvent(**otk::display
, e
.type
, &ce
)) {
1067 // XXX: it would be nice to compress ALL messages of a type, not just
1068 // messages in a row without other message types between.
1069 if (ce
.xclient
.message_type
!= e
.message_type
) {
1070 XPutBackEvent(**otk::display
, &ce
);
1076 setDesktop(e
.data
.l
[0]); // use the found event
1078 setDesktop(e
.data
.l
[0]); // use the original event
1079 } else if (e
.message_type
== otk::Property::atoms
.net_wm_state
) {
1080 // can't compress these
1082 printf("net_wm_state %s %ld %ld for 0x%lx\n",
1083 (e
.data
.l
[0] == 0 ? "Remove" : e
.data
.l
[0] == 1 ? "Add" :
1084 e
.data
.l
[0] == 2 ? "Toggle" : "INVALID"),
1085 e
.data
.l
[1], e
.data
.l
[2], _window
);
1087 setState((StateAction
)e
.data
.l
[0], e
.data
.l
[1], e
.data
.l
[2]);
1088 } else if (e
.message_type
== otk::Property::atoms
.net_close_window
) {
1090 printf("net_close_window for 0x%lx\n", _window
);
1093 } else if (e
.message_type
== otk::Property::atoms
.net_active_window
) {
1095 printf("net_active_window for 0x%lx\n", _window
);
1098 setDesktop(openbox
->screen(_screen
)->desktop());
1103 openbox
->screen(_screen
)->raiseWindow(this);
1109 void Client::shapeHandler(const XShapeEvent
&e
)
1111 otk::EventHandler::shapeHandler(e
);
1113 if (e
.kind
== ShapeBounding
) {
1115 frame
->adjustShape();
1121 void Client::resize(Corner anchor
, int w
, int h
)
1123 if (!(_functions
& Func_Resize
)) return;
1124 internal_resize(anchor
, w
, h
);
1128 void Client::internal_resize(Corner anchor
, int w
, int h
, bool user
,
1131 w
-= _base_size
.x();
1132 h
-= _base_size
.y();
1135 // for interactive resizing. have to move half an increment in each
1137 int mw
= w
% _size_inc
.x(); // how far we are towards the next size inc
1138 int mh
= h
% _size_inc
.y();
1139 int aw
= _size_inc
.x() / 2; // amount to add
1140 int ah
= _size_inc
.y() / 2;
1141 // don't let us move into a new size increment
1142 if (mw
+ aw
>= _size_inc
.x()) aw
= _size_inc
.x() - mw
- 1;
1143 if (mh
+ ah
>= _size_inc
.y()) ah
= _size_inc
.y() - mh
- 1;
1147 // if this is a user-requested resize, then check against min/max sizes
1148 // and aspect ratios
1150 // smaller than min size or bigger than max size?
1151 if (w
< _min_size
.x()) w
= _min_size
.x();
1152 else if (w
> _max_size
.x()) w
= _max_size
.x();
1153 if (h
< _min_size
.y()) h
= _min_size
.y();
1154 else if (h
> _max_size
.y()) h
= _max_size
.y();
1156 // adjust the height ot match the width for the aspect ratios
1158 if (h
* _min_ratio
> w
) h
= static_cast<int>(w
/ _min_ratio
);
1160 if (h
* _max_ratio
< w
) h
= static_cast<int>(w
/ _max_ratio
);
1163 // keep to the increments
1167 // you cannot resize to nothing
1171 // store the logical size
1172 _logical_size
.setPoint(w
, h
);
1177 w
+= _base_size
.x();
1178 h
+= _base_size
.y();
1180 if (x
== INT_MIN
|| y
== INT_MIN
) {
1187 x
-= w
- _area
.width();
1190 y
-= h
- _area
.height();
1193 x
-= w
- _area
.width();
1194 y
-= h
- _area
.height();
1199 _area
.setSize(w
, h
);
1201 XResizeWindow(**otk::display
, _window
, w
, h
);
1203 // resize the frame to match the request
1204 frame
->adjustSize();
1205 internal_move(x
, y
);
1209 void Client::move(int x
, int y
)
1211 if (!(_functions
& Func_Move
)) return;
1212 frame
->frameGravity(x
, y
); // get the client's position based on x,y for the
1214 internal_move(x
, y
);
1218 void Client::internal_move(int x
, int y
)
1222 // move the frame to be in the requested position
1223 if (frame
) { // this can be called while mapping, before frame exists
1224 frame
->adjustPosition();
1226 // send synthetic configure notify (we don't need to if we aren't mapped
1229 event
.type
= ConfigureNotify
;
1230 event
.xconfigure
.display
= **otk::display
;
1231 event
.xconfigure
.event
= _window
;
1232 event
.xconfigure
.window
= _window
;
1234 // root window coords with border in mind
1235 event
.xconfigure
.x
= x
- _border_width
+ frame
->size().left
;
1236 event
.xconfigure
.y
= y
- _border_width
+ frame
->size().top
;
1238 event
.xconfigure
.width
= _area
.width();
1239 event
.xconfigure
.height
= _area
.height();
1240 event
.xconfigure
.border_width
= _border_width
;
1241 event
.xconfigure
.above
= frame
->plate();
1242 event
.xconfigure
.override_redirect
= False
;
1243 XSendEvent(event
.xconfigure
.display
, event
.xconfigure
.window
, False
,
1244 StructureNotifyMask
, &event
);
1246 printf("Sent synthetic ConfigureNotify %d,%d %d,%d to 0x%lx\n",
1247 event
.xconfigure
.x
, event
.xconfigure
.y
, event
.xconfigure
.width
,
1248 event
.xconfigure
.height
, event
.xconfigure
.window
);
1254 void Client::close()
1258 if (!(_functions
& Func_Close
)) return;
1260 // XXX: itd be cool to do timeouts and shit here for killing the client's
1262 // like... if the window is around after 5 seconds, then the close button
1263 // turns a nice red, and if this function is called again, the client is
1264 // explicitly killed.
1266 ce
.xclient
.type
= ClientMessage
;
1267 ce
.xclient
.message_type
= otk::Property::atoms
.wm_protocols
;
1268 ce
.xclient
.display
= **otk::display
;
1269 ce
.xclient
.window
= _window
;
1270 ce
.xclient
.format
= 32;
1271 ce
.xclient
.data
.l
[0] = otk::Property::atoms
.wm_delete_window
;
1272 ce
.xclient
.data
.l
[1] = CurrentTime
;
1273 ce
.xclient
.data
.l
[2] = 0l;
1274 ce
.xclient
.data
.l
[3] = 0l;
1275 ce
.xclient
.data
.l
[4] = 0l;
1276 XSendEvent(**otk::display
, _window
, false, NoEventMask
, &ce
);
1280 void Client::changeState()
1282 unsigned long state
[2];
1283 state
[0] = _wmstate
;
1285 otk::Property::set(_window
, otk::Property::atoms
.wm_state
,
1286 otk::Property::atoms
.wm_state
, state
, 2);
1291 netstate
[num
++] = otk::Property::atoms
.net_wm_state_modal
;
1293 netstate
[num
++] = otk::Property::atoms
.net_wm_state_shaded
;
1295 netstate
[num
++] = otk::Property::atoms
.net_wm_state_hidden
;
1297 netstate
[num
++] = otk::Property::atoms
.net_wm_state_skip_taskbar
;
1299 netstate
[num
++] = otk::Property::atoms
.net_wm_state_skip_pager
;
1301 netstate
[num
++] = otk::Property::atoms
.net_wm_state_fullscreen
;
1303 netstate
[num
++] = otk::Property::atoms
.net_wm_state_maximized_vert
;
1305 netstate
[num
++] = otk::Property::atoms
.net_wm_state_maximized_horz
;
1307 netstate
[num
++] = otk::Property::atoms
.net_wm_state_above
;
1309 netstate
[num
++] = otk::Property::atoms
.net_wm_state_below
;
1310 otk::Property::set(_window
, otk::Property::atoms
.net_wm_state
,
1311 otk::Property::atoms
.atom
, netstate
, num
);
1316 frame
->adjustState();
1320 void Client::changeAllowedActions(void)
1325 actions
[num
++] = otk::Property::atoms
.net_wm_action_change_desktop
;
1327 if (_functions
& Func_Shade
)
1328 actions
[num
++] = otk::Property::atoms
.net_wm_action_shade
;
1329 if (_functions
& Func_Close
)
1330 actions
[num
++] = otk::Property::atoms
.net_wm_action_close
;
1331 if (_functions
& Func_Move
)
1332 actions
[num
++] = otk::Property::atoms
.net_wm_action_move
;
1333 if (_functions
& Func_Iconify
)
1334 actions
[num
++] = otk::Property::atoms
.net_wm_action_minimize
;
1335 if (_functions
& Func_Resize
)
1336 actions
[num
++] = otk::Property::atoms
.net_wm_action_resize
;
1337 if (_functions
& Func_Fullscreen
)
1338 actions
[num
++] = otk::Property::atoms
.net_wm_action_fullscreen
;
1339 if (_functions
& Func_Maximize
) {
1340 actions
[num
++] = otk::Property::atoms
.net_wm_action_maximize_horz
;
1341 actions
[num
++] = otk::Property::atoms
.net_wm_action_maximize_vert
;
1344 otk::Property::set(_window
, otk::Property::atoms
.net_wm_allowed_actions
,
1345 otk::Property::atoms
.atom
, actions
, num
);
1349 void Client::remaximize()
1352 if (_max_horz
&& _max_vert
)
1359 return; // not maximized
1360 _max_horz
= _max_vert
= false;
1361 maximize(true, dir
, false);
1365 void Client::applyStartupState()
1367 // these are in a carefully crafted order..
1376 setDesktop(ICONIC_DESKTOP
);
1379 _fullscreen
= false;
1380 fullscreen(true, false);
1389 if (_max_vert
&& _max_horz
) {
1390 _max_vert
= _max_horz
= false;
1391 maximize(true, 0, false);
1392 } else if (_max_vert
) {
1394 maximize(true, 2, false);
1395 } else if (_max_horz
) {
1397 maximize(true, 1, false);
1400 if (_skip_taskbar
); // nothing to do for this
1401 if (_skip_pager
); // nothing to do for this
1402 if (_modal
); // nothing to do for this
1403 if (_above
); // nothing to do for this
1404 if (_below
); // nothing to do for this
1408 void Client::fireUrgent()
1410 // call the python UrgentWindow callbacks
1411 EventData
data(_screen
, this, EventAction::UrgentWindow
, 0);
1412 openbox
->bindings()->fireEvent(&data
);
1416 void Client::shade(bool shade
)
1418 if (!(_functions
& Func_Shade
) || // can't
1419 _shaded
== shade
) return; // already done
1421 // when we're iconic, don't change the wmstate
1423 _wmstate
= shade
? IconicState
: NormalState
;
1426 frame
->adjustSize();
1430 void Client::maximize(bool max
, int dir
, bool savearea
)
1432 assert(dir
== 0 || dir
== 1 || dir
== 2);
1433 if (!(_functions
& Func_Maximize
)) return; // can't
1435 // check if already done
1437 if (dir
== 0 && _max_horz
&& _max_vert
) return;
1438 if (dir
== 1 && _max_horz
) return;
1439 if (dir
== 2 && _max_vert
) return;
1441 if (dir
== 0 && !_max_horz
&& !_max_vert
) return;
1442 if (dir
== 1 && !_max_horz
) return;
1443 if (dir
== 2 && !_max_vert
) return;
1446 const otk::Rect
&a
= openbox
->screen(_screen
)->area();
1447 int x
= frame
->rect().x(), y
= frame
->rect().y(),
1448 w
= _area
.width(), h
= _area
.height();
1454 unsigned long n
= 4;
1461 // get the property off the window and use it for the dimentions we are
1463 if (otk::Property::get(_window
, otk::Property::atoms
.openbox_premax
,
1464 otk::Property::atoms
.cardinal
, &n
,
1465 (long unsigned**) &readdim
)) {
1468 dimensions
[0] = readdim
[0];
1469 dimensions
[2] = readdim
[2];
1472 dimensions
[1] = readdim
[1];
1473 dimensions
[3] = readdim
[3];
1479 otk::Property::set(_window
, otk::Property::atoms
.openbox_premax
,
1480 otk::Property::atoms
.cardinal
,
1481 (long unsigned*)dimensions
, 4);
1483 if (dir
== 0 || dir
== 1) { // horz
1487 if (dir
== 0 || dir
== 2) { // vert
1489 h
= a
.height() - frame
->size().top
- frame
->size().bottom
;
1493 long unsigned n
= 4;
1495 if (otk::Property::get(_window
, otk::Property::atoms
.openbox_premax
,
1496 otk::Property::atoms
.cardinal
, &n
,
1497 (long unsigned**) &dimensions
)) {
1499 if (dir
== 0 || dir
== 1) { // horz
1500 x
= (signed int)dimensions
[0];
1501 w
= (signed int)dimensions
[2];
1503 if (dir
== 0 || dir
== 2) { // vert
1504 y
= (signed int)dimensions
[1];
1505 h
= (signed int)dimensions
[3];
1510 // pick some fallbacks...
1511 if (dir
== 0 || dir
== 1) { // horz
1512 x
= a
.x() + a
.width() / 4;
1515 if (dir
== 0 || dir
== 2) { // vert
1516 y
= a
.y() + a
.height() / 4;
1522 if (dir
== 0 || dir
== 1) // horz
1524 if (dir
== 0 || dir
== 2) // vert
1527 if (!_max_horz
&& !_max_vert
)
1528 otk::Property::erase(_window
, otk::Property::atoms
.openbox_premax
);
1530 changeState(); // change the state hints on the client
1532 frame
->frameGravity(x
, y
); // figure out where the client should be going
1533 internal_resize(TopLeft
, w
, h
, true, x
, y
);
1537 void Client::fullscreen(bool fs
, bool savearea
)
1539 static FunctionFlags saved_func
;
1540 static DecorationFlags saved_decor
;
1542 if (!(_functions
& Func_Fullscreen
) || // can't
1543 _fullscreen
== fs
) return; // already done
1546 changeState(); // change the state hints on the client
1548 int x
= _area
.x(), y
= _area
.y(), w
= _area
.width(), h
= _area
.height();
1551 // save the functions and remove them
1552 saved_func
= _functions
;
1553 _functions
= _functions
& (Func_Close
| Func_Fullscreen
| Func_Iconify
);
1554 // save the decorations and remove them
1555 saved_decor
= _decorations
;
1559 dimensions
[0] = _area
.x();
1560 dimensions
[1] = _area
.y();
1561 dimensions
[2] = _area
.width();
1562 dimensions
[3] = _area
.height();
1563 otk::Property::set(_window
, otk::Property::atoms
.openbox_premax
,
1564 otk::Property::atoms
.cardinal
,
1565 (long unsigned*)dimensions
, 4);
1567 const otk::ScreenInfo
*info
= otk::display
->screenInfo(_screen
);
1573 _functions
= saved_func
;
1574 _decorations
= saved_decor
;
1577 long unsigned n
= 4;
1579 if (otk::Property::get(_window
, otk::Property::atoms
.openbox_premax
,
1580 otk::Property::atoms
.cardinal
, &n
,
1581 (long unsigned**) &dimensions
)) {
1590 // pick some fallbacks...
1591 const otk::Rect
&a
= openbox
->screen(_screen
)->area();
1592 x
= a
.x() + a
.width() / 4;
1593 y
= a
.y() + a
.height() / 4;
1599 changeAllowedActions(); // based on the new _functions
1601 // when fullscreening, don't obey things like increments, fill the screen
1602 internal_resize(TopLeft
, w
, h
, !fs
, x
, y
);
1604 // raise (back) into our stacking layer
1605 openbox
->screen(_screen
)->raiseWindow(this);
1607 // try focus us when we go into fullscreen mode
1612 void Client::disableDecorations(DecorationFlags flags
)
1614 _disabled_decorations
= flags
;
1615 setupDecorAndFunctions();
1619 void Client::installColormap(bool install
) const
1621 XWindowAttributes wa
;
1622 if (XGetWindowAttributes(**otk::display
, _window
, &wa
)) {
1623 printf("%snstalling Window Colormap 0x%lx!\n", install
? "I" : "Uni", _window
);
1625 XInstallColormap(**otk::display
, wa
.colormap
);
1627 XUninstallColormap(**otk::display
, wa
.colormap
);
1632 bool Client::focus()
1634 // if we have a modal child, then focus it, not us
1636 return _modal_child
->focus();
1638 // won't try focus if the client doesn't want it, or if the window isn't
1639 // visible on the screen
1640 if (!(frame
->isVisible() && (_can_focus
|| _focus_notify
))) return false;
1642 if (_focused
) return true;
1644 // do a check to see if the window has already been unmapped or destroyed
1645 // do this intelligently while watching out for unmaps we've generated
1646 // (ignore_unmaps > 0)
1648 if (XCheckTypedWindowEvent(**otk::display
, _window
, DestroyNotify
, &ev
)) {
1649 XPutBackEvent(**otk::display
, &ev
);
1652 while (XCheckTypedWindowEvent(**otk::display
, _window
, UnmapNotify
, &ev
)) {
1653 if (ignore_unmaps
) {
1654 unmapHandler(ev
.xunmap
);
1656 XPutBackEvent(**otk::display
, &ev
);
1662 XSetInputFocus(**otk::display
, _window
,
1663 RevertToNone
, CurrentTime
);
1665 if (_focus_notify
) {
1667 ce
.xclient
.type
= ClientMessage
;
1668 ce
.xclient
.message_type
= otk::Property::atoms
.wm_protocols
;
1669 ce
.xclient
.display
= **otk::display
;
1670 ce
.xclient
.window
= _window
;
1671 ce
.xclient
.format
= 32;
1672 ce
.xclient
.data
.l
[0] = otk::Property::atoms
.wm_take_focus
;
1673 ce
.xclient
.data
.l
[1] = openbox
->lastTime();
1674 ce
.xclient
.data
.l
[2] = 0l;
1675 ce
.xclient
.data
.l
[3] = 0l;
1676 ce
.xclient
.data
.l
[4] = 0l;
1677 XSendEvent(**otk::display
, _window
, False
, NoEventMask
, &ce
);
1680 XSync(**otk::display
, False
);
1685 void Client::unfocus() const
1687 if (!_focused
) return;
1689 assert(openbox
->focusedClient() == this);
1690 openbox
->setFocusedClient(0);
1694 void Client::focusHandler(const XFocusChangeEvent
&e
)
1697 // printf("FocusIn for 0x%lx\n", e.window);
1700 otk::EventHandler::focusHandler(e
);
1705 openbox
->setFocusedClient(this);
1709 void Client::unfocusHandler(const XFocusChangeEvent
&e
)
1712 // printf("FocusOut for 0x%lx\n", e.window);
1715 otk::EventHandler::unfocusHandler(e
);
1720 if (openbox
->focusedClient() == this)
1721 openbox
->setFocusedClient(0);
1725 void Client::configureRequestHandler(const XConfigureRequestEvent
&e
)
1728 printf("ConfigureRequest for 0x%lx\n", e
.window
);
1731 otk::EventHandler::configureRequestHandler(e
);
1733 // if we are iconic (or shaded (fvwm does this)) ignore the event
1734 if (_iconic
|| _shaded
) return;
1736 if (e
.value_mask
& CWBorderWidth
)
1737 _border_width
= e
.border_width
;
1739 // resize, then move, as specified in the EWMH section 7.7
1740 if (e
.value_mask
& (CWWidth
| CWHeight
)) {
1741 int w
= (e
.value_mask
& CWWidth
) ? e
.width
: _area
.width();
1742 int h
= (e
.value_mask
& CWHeight
) ? e
.height
: _area
.height();
1746 case NorthEastGravity
:
1750 case SouthWestGravity
:
1752 corner
= BottomLeft
;
1754 case SouthEastGravity
:
1755 corner
= BottomRight
;
1757 default: // NorthWest, Static, etc
1761 // if moving AND resizing ...
1762 if (e
.value_mask
& (CWX
| CWY
)) {
1763 int x
= (e
.value_mask
& CWX
) ? e
.x
: _area
.x();
1764 int y
= (e
.value_mask
& CWY
) ? e
.y
: _area
.y();
1765 internal_resize(corner
, w
, h
, false, x
, y
);
1766 } else // if JUST resizing...
1767 internal_resize(corner
, w
, h
, false);
1768 } else if (e
.value_mask
& (CWX
| CWY
)) { // if JUST moving...
1769 int x
= (e
.value_mask
& CWX
) ? e
.x
: _area
.x();
1770 int y
= (e
.value_mask
& CWY
) ? e
.y
: _area
.y();
1771 internal_move(x
, y
);
1774 if (e
.value_mask
& CWStackMode
) {
1778 openbox
->screen(_screen
)->lowerWindow(this);
1784 openbox
->screen(_screen
)->raiseWindow(this);
1791 void Client::unmapHandler(const XUnmapEvent
&e
)
1793 if (ignore_unmaps
) {
1795 // printf("Ignored UnmapNotify for 0x%lx (event 0x%lx)\n", e.window, e.event);
1802 printf("UnmapNotify for 0x%lx\n", e
.window
);
1805 otk::EventHandler::unmapHandler(e
);
1807 // this deletes us etc
1808 openbox
->screen(_screen
)->unmanageWindow(this);
1812 void Client::destroyHandler(const XDestroyWindowEvent
&e
)
1815 printf("DestroyNotify for 0x%lx\n", e
.window
);
1818 otk::EventHandler::destroyHandler(e
);
1820 // this deletes us etc
1821 openbox
->screen(_screen
)->unmanageWindow(this);
1825 void Client::reparentHandler(const XReparentEvent
&e
)
1827 // this is when the client is first taken captive in the frame
1828 if (e
.parent
== frame
->plate()) return;
1831 printf("ReparentNotify for 0x%lx\n", e
.window
);
1834 otk::EventHandler::reparentHandler(e
);
1837 This event is quite rare and is usually handled in unmapHandler.
1838 However, if the window is unmapped when the reparent event occurs,
1839 the window manager never sees it because an unmap event is not sent
1840 to an already unmapped window.
1843 // we don't want the reparent event, put it back on the stack for the X
1844 // server to deal with after we unmanage the window
1847 XPutBackEvent(**otk::display
, &ev
);
1849 // this deletes us etc
1850 openbox
->screen(_screen
)->unmanageWindow(this);
1853 void Client::mapRequestHandler(const XMapRequestEvent
&e
)
1856 printf("MapRequest for already managed 0x%lx\n", e
.window
);
1859 assert(_iconic
); // we shouldn't be able to get this unless we're iconic
1861 // move to the current desktop (uniconify)
1862 setDesktop(openbox
->screen(_screen
)->desktop());
1863 // XXX: should we focus/raise the window? (basically a net_wm_active_window)