X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=src%2Fclient.cc;h=8c259db3ca3d66e8a4e5e821b62883b5b7f64c85;hb=c7b22b4f9cee63d860ad4f6617cd5210299b9d8b;hp=a2106d867749f901fa0d78d85b3cea03af65b64c;hpb=7bae794382c7a64a6427b16d1339b98120a5166f;p=chaz%2Fopenbox diff --git a/src/client.cc b/src/client.cc index a2106d86..8c259db3 100644 --- a/src/client.cc +++ b/src/client.cc @@ -41,12 +41,16 @@ OBClient::OBClient(int screen, Window window) _decorations = _functions = 0; // start unfocused _focused = false; + // not a transient by default of course + _transient_for = 0; getArea(); getDesktop(); - // XXX: updateTransientFor(); + updateTransientFor(); getType(); + // XXX: changeAllowedActions(); + // set the decorations and functions _decorations = Decor_Titlebar | Decor_Handle | Decor_Border | Decor_Iconify | Decor_Maximize; @@ -171,10 +175,9 @@ void OBClient::getType() * the window type hint was not set, which means we either classify ourself * as a normal window or a dialog, depending on if we are a transient. */ - // XXX: make this code work! - //if (isTransient()) - // _type = Type_Dialog; - //else + if (_transient_for) + _type = Type_Dialog; + else _type = Type_Normal; } } @@ -264,9 +267,10 @@ void OBClient::getState() if (state[i] == property->atom(otk::OBProperty::net_wm_state_modal)) _modal = true; else if (state[i] == - property->atom(otk::OBProperty::net_wm_state_shaded)) + property->atom(otk::OBProperty::net_wm_state_shaded)) { _shaded = true; - else if (state[i] == + _wmstate = IconicState; + } else if (state[i] == property->atom(otk::OBProperty::net_wm_state_skip_taskbar)) _skip_taskbar = true; else if (state[i] == @@ -314,13 +318,16 @@ void OBClient::getShaped() void OBClient::calcLayer() { - if (_iconic) _layer = OBScreen::Layer_Icon; - else if (_type == Type_Desktop) _layer = OBScreen::Layer_Desktop; - else if (_type == Type_Dock) _layer = OBScreen::Layer_Top; - else if (_fullscreen) _layer = OBScreen::Layer_Fullscreen; - else if (_above) _layer = OBScreen::Layer_Above; - else if (_below) _layer = OBScreen::Layer_Below; - else _layer = OBScreen::Layer_Normal; + if (_iconic) _layer = Layer_Icon; + else if (_fullscreen) _layer = Layer_Fullscreen; + else if (_type == Type_Desktop) _layer = Layer_Desktop; + else if (_type == Type_Dock) { + if (!_below) _layer = Layer_Top; + else _layer = Layer_Normal; + } + else if (_above) _layer = Layer_Above; + else if (_below) _layer = Layer_Below; + else _layer = Layer_Normal; } @@ -474,17 +481,23 @@ void OBClient::updateClass() const otk::OBProperty *property = Openbox::instance->property(); // set the defaults - _app_name = _app_class = ""; + _app_name = _app_class = _role = ""; otk::OBProperty::StringVect v; unsigned long num = 2; - if (! property->get(_window, otk::OBProperty::wm_class, - otk::OBProperty::ascii, &num, &v)) - return; + if (property->get(_window, otk::OBProperty::wm_class, + otk::OBProperty::ascii, &num, &v)) { + if (num > 0) _app_name = v[0]; + if (num > 1) _app_class = v[1]; + } - if (num > 0) _app_name = v[0]; - if (num > 1) _app_class = v[1]; + v.clear(); + num = 1; + if (property->get(_window, otk::OBProperty::wm_window_role, + otk::OBProperty::ascii, &num, &v)) { + if (num > 0) _role = v[0]; + } } @@ -511,6 +524,41 @@ void OBClient::updateStrut() } +void OBClient::updateTransientFor() +{ + Window t = 0; + OBClient *c = 0; + + if (XGetTransientForHint(otk::OBDisplay::display, _window, &t) && + t != _window) { // cant be transient to itself! + c = Openbox::instance->findClient(t); + assert(c != this); // if this happens then we need to check for it + + if (!c /*XXX: && _group*/) { + // not transient to a client, see if it is transient for a group + if (//t == _group->leader() || + t == None || + t == otk::OBDisplay::screenInfo(_screen)->rootWindow()) { + // window is a transient for its group! + // XXX: for now this is treated as non-transient. + // this needs to be fixed! + } + } + } + + // if anything has changed... + if (c != _transient_for) { + 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? + } +} + + void OBClient::propertyHandler(const XPropertyEvent &e) { otk::OtkEventHandler::propertyHandler(e); @@ -532,6 +580,8 @@ void OBClient::propertyHandler(const XPropertyEvent &e) updateNormalHints(); else if (e.atom == XA_WM_HINTS) updateWMHints(); + else if (e.atom == XA_WM_TRANSIENT_FOR) + updateTransientFor(); else if (e.atom == property->atom(otk::OBProperty::net_wm_name) || e.atom == property->atom(otk::OBProperty::wm_name)) updateTitle(); @@ -542,10 +592,8 @@ void OBClient::propertyHandler(const XPropertyEvent &e) updateClass(); else if (e.atom == property->atom(otk::OBProperty::wm_protocols)) updateProtocols(); - // XXX: transient for hint else if (e.atom == property->atom(otk::OBProperty::net_wm_strut)) updateStrut(); - // XXX: strut hint } @@ -553,7 +601,8 @@ void OBClient::setWMState(long state) { if (state == _wmstate) return; // no change - switch (state) { + _wmstate = state; + switch (_wmstate) { case IconicState: // XXX: cause it to iconify break; @@ -561,7 +610,6 @@ void OBClient::setWMState(long state) // XXX: cause it to uniconify break; } - _wmstate = state; } @@ -966,6 +1014,24 @@ void OBClient::changeState() } + +void OBClient::setStackLayer(int l) +{ + if (l == 0) + _above = _below = false; // normal + else if (l > 0) { + _above = true; + _below = false; // above + } else { + _above = false; + _below = true; // below + } + changeState(); + calcLayer(); + Openbox::instance->screen(_screen)->restack(true, this); // raise +} + + void OBClient::shade(bool shade) { if (shade == _shaded) return; // already done @@ -1099,13 +1165,13 @@ void OBClient::configureRequestHandler(const XConfigureRequestEvent &e) switch (e.detail) { case Below: case BottomIf: - // XXX: lower the window + Openbox::instance->screen(_screen)->restack(false, this); // lower break; case Above: case TopIf: default: - // XXX: raise the window + Openbox::instance->screen(_screen)->restack(true, this); // raise break; } } @@ -1165,4 +1231,17 @@ void OBClient::reparentHandler(const XReparentEvent &e) Openbox::instance->screen(_screen)->unmanageWindow(this); } + +void OBClient::mapRequestHandler(const XMapRequestEvent &e) +{ + printf("\nMAP REQUEST\n\n"); + + otk::OtkEventHandler::mapRequestHandler(e); + + if (_shaded) + shade(false); + // XXX: uniconify the window + focus(); +} + }