X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=src%2Fclient.cc;h=1cbb8605220e3ec7dcba84c4967bdd9fd891cc7f;hb=c9389a89704d5d27cfd5599ab19c40a22c58f65a;hp=36019d9987c41c270ff19459980c9f010a1c9132;hpb=5bf70002f92ce6612ccc781c73a1ec843ffc1ce6;p=chaz%2Fopenbox diff --git a/src/client.cc b/src/client.cc index 36019d99..1cbb8605 100644 --- a/src/client.cc +++ b/src/client.cc @@ -53,6 +53,8 @@ Client::Client(int screen, Window window) _positioned = false; // nothing is disabled unless specified _disabled_decorations = 0; + // no modal children until they set themselves + _modal_child = 0; getArea(); getDesktop(); @@ -105,6 +107,8 @@ Client::~Client() } // clean up parents reference to this + if (_modal) + setModal(false); if (_transient_for) _transient_for->_transients.remove(this); // remove from old parent @@ -189,9 +193,10 @@ void Client::getType() else if (val[i] == otk::Property::atoms.net_wm_window_type_normal) _type = Type_Normal; else if (val[i] == otk::Property::atoms.kde_net_wm_window_type_override){ - // prevent this window from getting any decor - _mwmhints.flags &= MwmFlag_Decorations; + // prevent this window from getting any decor or functionality + _mwmhints.flags &= MwmFlag_Functions | MwmFlag_Decorations; _mwmhints.decorations = 0; + _mwmhints.functions = 0; } if (_type != (WindowType) -1) break; // grab the first known type @@ -483,9 +488,6 @@ void Client::updateNormalHints() _min_size.setPoint(0, 0); _max_size.setPoint(INT_MAX, INT_MAX); - // XXX: might want to cancel any interactive resizing of the window at this - // point.. - // get the hints from the window if (XGetWMNormalHints(**otk::display, _window, &size, &ret)) { _positioned = (size.flags & (PPosition|USPosition)); @@ -676,13 +678,18 @@ void Client::updateTransientFor() // if anything has changed... if (c != _transient_for) { + bool m = _modal; + if (_modal) + setModal(false); + if (_transient_for) _transient_for->_transients.remove(this); // remove from old parent _transient_for = c; if (_transient_for) _transient_for->_transients.push_back(this); // add to new parent - // XXX: change decor status? + if (m) + setModal(true); } } @@ -795,12 +802,59 @@ void Client::setDesktop(long target) } +Client *Client::findModalChild(Client *skip) const +{ + Client *ret = 0; + + // find a modal child recursively and try focus it + List::const_iterator it, end = _transients.end(); + for (it = _transients.begin(); it != end; ++it) + if ((*it)->_modal && *it != skip) + return *it; // got one + // none of our direct children are modal, let them try check + for (it = _transients.begin(); it != end; ++it) + if ((ret = (*it)->findModalChild())) + return ret; // got one + return ret; +} + + +void Client::setModal(bool modal) +{ + if (modal) { + Client *c = this; + while (c->_transient_for) { + c = c->_transient_for; + if (c->_modal_child) break; // already has a modal child + c->_modal_child = this; + } + } else { + // try find a replacement modal dialog + Client *replacement = 0; + + Client *c = this; + while (c->_transient_for) // go up the tree + c = c->_transient_for; + replacement = c->findModalChild(this); // find a modal child, skipping this + + c = this; + while (c->_transient_for) { + c = c->_transient_for; + if (c->_modal_child != this) break; // has a different modal child + c->_modal_child = replacement; + } + } + _modal = modal; +} + + void Client::setState(StateAction action, long data1, long data2) { bool shadestate = _shaded; bool fsstate = _fullscreen; bool maxh = _max_horz; bool maxv = _max_vert; + bool modal = _modal; if (!(action == State_Add || action == State_Remove || action == State_Toggle)) @@ -836,14 +890,12 @@ void Client::setState(StateAction action, long data1, long data2) if (action == State_Add) { if (state == otk::Property::atoms.net_wm_state_modal) { if (_modal) continue; - _modal = true; - // XXX: give it focus if another window has focus that shouldnt now + modal = true; } else if (state == otk::Property::atoms.net_wm_state_maximized_vert) { maxv = true; } else if (state == otk::Property::atoms.net_wm_state_maximized_horz) { if (_max_horz) continue; maxh = true; - // XXX: resize the window etc } else if (state == otk::Property::atoms.net_wm_state_shaded) { shadestate = true; } else if (state == otk::Property::atoms.net_wm_state_skip_taskbar) { @@ -863,7 +915,7 @@ void Client::setState(StateAction action, long data1, long data2) } else { // action == State_Remove if (state == otk::Property::atoms.net_wm_state_modal) { if (!_modal) continue; - _modal = false; + modal = false; } else if (state == otk::Property::atoms.net_wm_state_maximized_vert) { maxv = false; } else if (state == otk::Property::atoms.net_wm_state_maximized_horz) { @@ -900,6 +952,8 @@ void Client::setState(StateAction action, long data1, long data2) maximize(maxv, 2, true); } } + if (modal != _modal) + setModal(modal); // change fullscreen state before shading, as it will affect if the window // can shade or not if (fsstate != _fullscreen) @@ -1308,6 +1362,11 @@ void Client::applyStartupState() { // these are in a carefully crafted order.. + if (_modal) { + _modal = false; + setModal(true); + } + if (_iconic) { _iconic = false; setDesktop(ICONIC_DESKTOP); @@ -1555,6 +1614,10 @@ void Client::disableDecorations(DecorationFlags flags) bool Client::focus() { + // if we have a modal child, then focus it, not us + if (_modal_child) + return _modal_child->focus(); + // won't try focus if the client doesn't want it, or if the window isn't // visible on the screen if (!(frame->isVisible() && (_can_focus || _focus_notify))) return false;