X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=src%2Fscreen.cc;h=307404ffce87aa48629f585a7b271100367f8880;hb=1297c7c157584599f474aa13effaca5a866bfb14;hp=d50ef6a32a40178db2a3fc3eee4d02f9e6fc5885;hpb=de07cce07a28de61b93a813f25b3a360613657a9;p=chaz%2Fopenbox diff --git a/src/screen.cc b/src/screen.cc index d50ef6a3..307404ff 100644 --- a/src/screen.cc +++ b/src/screen.cc @@ -27,6 +27,7 @@ extern "C" { #include "otk/display.hh" #include +#include static bool running; static int anotherWMRunning(Display *display, XErrorEvent *) { @@ -191,17 +192,19 @@ void OBScreen::manageExisting() } -//! Adds a window's strut to the screen's list of reserved spaces -void OBScreen::addStrut(otk::Strut *strut) +void OBScreen::updateStrut() { - _struts.push_back(strut); -} - - -//! Removes a window's strut from the screen's list of reserved spaces -void OBScreen::removeStrut(otk::Strut *strut) -{ - _struts.remove(strut); + _strut.left = _strut.right = _strut.top = _strut.bottom = 0; + + OBClient::List::iterator it, end = clients.end(); + for (it = clients.begin(); it != end; ++it) { + const otk::Strut &s = (*it)->strut(); + _strut.left = std::max(_strut.left, s.left); + _strut.right = std::max(_strut.right, s.right); + _strut.top = std::max(_strut.top, s.top); + _strut.bottom = std::max(_strut.bottom, s.bottom); + } + calcArea(); } @@ -217,31 +220,9 @@ void OBScreen::calcArea() #endif // XINERAMA */ - /* these values represent offsets from the screen edge - * we look for the biggest offset on each edge and then apply them - * all at once - * do not be confused by the similarity to the names of Rect's members - */ - unsigned int current_left = 0, current_right = 0, current_top = 0, - current_bottom = 0; - - StrutList::const_iterator it = _struts.begin(), end = _struts.end(); - - for(; it != end; ++it) { - otk::Strut *strut = *it; - if (strut->left > current_left) - current_left = strut->left; - if (strut->top > current_top) - current_top = strut->top; - if (strut->right > current_right) - current_right = strut->right; - if (strut->bottom > current_bottom) - current_bottom = strut->bottom; - } - - _area.setRect(current_left, current_top, - _info->width() - (current_left + current_right), - _info->height() - (current_top + current_bottom)); + _area.setRect(_strut.left, _strut.top, + _info->width() - (_strut.left + _strut.right), + _info->height() - (_strut.top + _strut.bottom)); /* #ifdef XINERAMA @@ -318,9 +299,7 @@ void OBScreen::setSupportedAtoms() /* otk::OBProperty::net_wm_desktop, */ -/* otk::OBProperty::net_wm_strut, -*/ otk::OBProperty::net_wm_window_type, otk::OBProperty::net_wm_window_type_desktop, otk::OBProperty::net_wm_window_type_dock, @@ -385,8 +364,8 @@ void OBScreen::setClientList() windows = new Window[size]; win_it = windows; - ClientList::const_iterator it = clients.begin(); - const ClientList::const_iterator end = clients.end(); + OBClient::List::const_iterator it = clients.begin(); + const OBClient::List::const_iterator end = clients.end(); for (; it != end; ++it, ++win_it) *win_it = (*it)->window(); } else @@ -418,8 +397,8 @@ void OBScreen::setStackingList() windows = new Window[size]; win_it = windows; - ClientList::const_iterator it = _stacking.begin(); - const ClientList::const_iterator end = _stacking.end(); + OBClient::List::const_iterator it = _stacking.begin(); + const OBClient::List::const_iterator end = _stacking.end(); for (; it != end; ++it, ++win_it) *win_it = (*it)->window(); } else @@ -539,6 +518,15 @@ void OBScreen::manageWindow(Window window) setClientList(); Openbox::instance->bindings()->grabButtons(true, client); + + // XXX: make this optional or more intelligent + if (client->normal()) + client->focus(); + + // call the python NEWWINDOW binding + EventData *data = new_event_data(window, EventNewWindow, 0); + Openbox::instance->bindings()->fireEvent(data); + Py_DECREF((PyObject*)data); } @@ -546,6 +534,11 @@ void OBScreen::unmanageWindow(OBClient *client) { OBFrame *frame = client->frame; + // call the python CLOSEWINDOW binding + EventData *data = new_event_data(client->window(), EventCloseWindow, 0); + Openbox::instance->bindings()->fireEvent(data); + Py_DECREF((PyObject*)data); + Openbox::instance->bindings()->grabButtons(false, client); // remove from the stacking order @@ -554,9 +547,13 @@ void OBScreen::unmanageWindow(OBClient *client) // pass around focus if this window was focused XXX do this better! if (Openbox::instance->focusedClient() == client) { OBClient *newfocus = 0; - if (!_stacking.empty()) - newfocus = _stacking.front(); - if (! (newfocus && newfocus->focus())) + OBClient::List::iterator it, end = _stacking.end(); + for (it = _stacking.begin(); it != end; ++it) + if ((*it)->normal() && (*it)->focus()) { + newfocus = *it; + break; + } + if (!newfocus) client->unfocus(); } @@ -607,7 +604,7 @@ void OBScreen::restack(bool raise, OBClient *client) // the stacking list is from highest to lowest - ClientList::iterator it = _stacking.begin(), end = _stacking.end(); + OBClient::List::iterator it = _stacking.begin(), end = _stacking.end(); // insert the windows above this window for (; it != end; ++it) { if ((*it)->layer() < layer || (raise && (*it)->layer() == layer))