X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;f=src%2FWorkspace.cc;h=dc7007eecc68cb8517aec01e5ed2963e17dec50e;hb=de712f85676ca0a386c956165bb6460d65206c46;hp=256ad3da9845c18c6f1b8f3b7f7a7d53eb14a32b;hpb=a0dbb0e13f19ac4cc2dddf3d94723174971df6d2;p=chaz%2Fopenbox diff --git a/src/Workspace.cc b/src/Workspace.cc index 256ad3da..dc7007ee 100644 --- a/src/Workspace.cc +++ b/src/Workspace.cc @@ -63,16 +63,13 @@ typedef std::vector rectList; Workspace::Workspace(BScreen &scrn, int i) : screen(scrn) { cascade_x = cascade_y = 0; - _focused = (OpenboxWindow *) 0; + _focused = _last = (OpenboxWindow *) 0; id = i; clientmenu = new Clientmenu(*this); - lastfocus = (OpenboxWindow *) 0; - name = (char *) 0; - char *tmp = screen.getNameOfWorkspace(id); - setName(tmp); + setName(screen.getNameOfWorkspace(id)); } @@ -84,7 +81,7 @@ Workspace::~Workspace(void) { } -const int Workspace::addWindow(OpenboxWindow *w, Bool place) { +int Workspace::addWindow(OpenboxWindow *w, bool place) { if (! w) return -1; if (place) placeWindow(*w); @@ -106,28 +103,27 @@ const int Workspace::addWindow(OpenboxWindow *w, Bool place) { } -const int Workspace::removeWindow(OpenboxWindow *w) { +int Workspace::removeWindow(OpenboxWindow *w) { if (! w) return -1; _zorder.remove(w); if (w->isFocused()) { + if (w == _last) + _last = (OpenboxWindow *) 0; + + OpenboxWindow *fw = (OpenboxWindow *) 0; if (w->isTransient() && w->getTransientFor() && - w->getTransientFor()->isVisible()) { - w->getTransientFor()->setInputFocus(); - } else { - if (screen.sloppyFocus() || // sloppy focus - _zorder.empty() || // click focus but no windows - !_zorder.front()->setInputFocus()) { // tried window, but wont focus - screen.getOpenbox().focusWindow((OpenboxWindow *) 0); - XSetInputFocus(screen.getOpenbox().getXDisplay(), - PointerRoot, None, CurrentTime); - } - } + w->getTransientFor()->isVisible()) + fw = w->getTransientFor(); + else if (screen.sloppyFocus()) // sloppy focus + fw = (OpenboxWindow *) 0; + else if (!_zorder.empty()) // click focus + fw = _zorder.front(); + + if (!(fw != (OpenboxWindow *) 0 && fw->setInputFocus())) + screen.getOpenbox().focusWindow(0); } - - if (lastfocus == w) - lastfocus = (OpenboxWindow *) 0; _windows.erase(_windows.begin() + w->getWindowNumber()); clientmenu->remove(w->getWindowNumber()); @@ -149,6 +145,8 @@ void Workspace::focusWindow(OpenboxWindow *win) { if (_focused != (OpenboxWindow *) 0) clientmenu->setItemSelected(_focused->getWindowNumber(), false); _focused = win; + if (win != (OpenboxWindow *) 0) + _last = win; } @@ -192,7 +190,7 @@ void Workspace::raiseWindow(OpenboxWindow *w) { Workspace *wkspc; win = bottom; - while (True) { + while (true) { *(curr++) = win->getFrameWindow(); screen.updateNetizenWindowRaise(win->getClientWindow()); @@ -231,7 +229,7 @@ void Workspace::lowerWindow(OpenboxWindow *w) { Window *nstack = new Window[i], *curr = nstack; Workspace *wkspc; - while (True) { + while (true) { *(curr++) = win->getFrameWindow(); screen.updateNetizenWindowLower(win->getClientWindow()); @@ -269,25 +267,25 @@ void Workspace::reconfigure(void) { OpenboxWindow *Workspace::getWindow(int index) { - if ((index >= 0) && (index < _windows.size())) + if ((index >= 0) && (index < (signed)_windows.size())) return _windows[index]; else return (OpenboxWindow *) 0; } -const int Workspace::getCount(void) { - return _windows.size(); +int Workspace::getCount(void) { + return (signed)_windows.size(); } void Workspace::update(void) { clientmenu->update(); - screen.getToolbar()->redrawWindowLabel(True); + screen.getToolbar()->redrawWindowLabel(true); } -Bool Workspace::isCurrent(void) { +bool Workspace::isCurrent(void) { return (id == screen.getCurrentWorkspaceID()); } @@ -297,7 +295,7 @@ void Workspace::setCurrent(void) { } -void Workspace::setName(char *new_name) { +void Workspace::setName(const char *new_name) { if (name) delete [] name; @@ -305,10 +303,10 @@ void Workspace::setName(char *new_name) { name = bstrdup(new_name); } else { name = new char[128]; - sprintf(name, i18n->getMessage(WorkspaceSet, WorkspaceDefaultNameFormat, - "Workspace %d"), id + 1); + sprintf(name, i18n(WorkspaceSet, WorkspaceDefaultNameFormat, + "Workspace %d"), id + 1); } - + clientmenu->setLabel(name); clientmenu->update(); screen.saveWorkspaceNames(); @@ -316,10 +314,8 @@ void Workspace::setName(char *new_name) { void Workspace::shutdown(void) { - while (!_windows.empty()) { + while (!_windows.empty()) _windows[0]->restore(); - delete _windows[0]; - } } static rectList calcSpace(const Rect &win, const rectList &spaces) { @@ -363,49 +359,49 @@ static rectList calcSpace(const Rect &win, const rectList &spaces) { bool rowRLBT(const Rect &first, const Rect &second){ if (first.y()+first.h()==second.y()+second.h()) - return first.x()+first.w()>second.x()+second.w(); + return first.x()+first.w()>second.x()+second.w(); return first.y()+first.h()>second.y()+second.h(); } - + bool rowRLTB(const Rect &first, const Rect &second){ if (first.y()==second.y()) - return first.x()+first.w()>second.x()+second.w(); + return first.x()+first.w()>second.x()+second.w(); return first.y()second.y()+second.h(); } - + bool rowLRTB(const Rect &first, const Rect &second){ if (first.y()==second.y()) - return first.x()second.y()+second.h(); + return first.y()+first.h()>second.y()+second.h(); return first.x()second.x()+second.w(); } - + bool colRLBT(const Rect &first, const Rect &second){ if (first.x()+first.w()==second.x()+second.w()) - return first.y()+first.h()>second.y()+second.h(); + return first.y()+first.h()>second.y()+second.h(); return first.x()+first.w()>second.x()+second.w(); } @@ -418,12 +414,13 @@ Point *Workspace::bestFitPlacement(const Size &win_size, const Rect &space) { rectList spaces; rectList::const_iterator siter; spaces.push_back(space); //initially the entire screen is free - + //Find Free Spaces - for (winVect::iterator it = _windows.begin(); it != _windows.end(); ++it) - spaces = calcSpace((*it)->area().Inflate(screen.getBorderWidth() * 4), - spaces); - + winVect::iterator it; + for (it = _windows.begin(); it != _windows.end(); ++it) + spaces = calcSpace((*it)->area().Inflate(screen.getBorderWidth() * 4), + spaces); + //Find first space that fits the window best = NULL; for (siter=spaces.begin(); siter!=spaces.end(); ++siter) { @@ -472,22 +469,23 @@ Point *Workspace::rowSmartPlacement(const Size &win_size, const Rect &space) { rectList::const_iterator siter; spaces.push_back(space); //initially the entire screen is free - + //Find Free Spaces - for (winVect::iterator it = _windows.begin(); it != _windows.end(); ++it) - spaces = calcSpace((*it)->area().Inflate(screen.getBorderWidth() * 4), - spaces); + winVect::iterator it; + for (it = _windows.begin(); it != _windows.end(); ++it) + spaces = calcSpace((*it)->area().Inflate(screen.getBorderWidth() * 4), + spaces); //Sort spaces by preference if(screen.rowPlacementDirection() == BScreen::RightLeft) - if(screen.colPlacementDirection() == BScreen::TopBottom) - sort(spaces.begin(),spaces.end(),rowRLTB); - else - sort(spaces.begin(),spaces.end(),rowRLBT); + if(screen.colPlacementDirection() == BScreen::TopBottom) + sort(spaces.begin(),spaces.end(),rowRLTB); + else + sort(spaces.begin(),spaces.end(),rowRLBT); else - if(screen.colPlacementDirection() == BScreen::TopBottom) - sort(spaces.begin(),spaces.end(),rowLRTB); - else - sort(spaces.begin(),spaces.end(),rowLRBT); + if(screen.colPlacementDirection() == BScreen::TopBottom) + sort(spaces.begin(),spaces.end(),rowLRTB); + else + sort(spaces.begin(),spaces.end(),rowLRBT); best = NULL; for (siter=spaces.begin(); siter!=spaces.end(); ++siter) if ((siter->w() >= win_size.w()) && (siter->h() >= win_size.h())) { @@ -512,22 +510,23 @@ Point *Workspace::colSmartPlacement(const Size &win_size, const Rect &space) { rectList::const_iterator siter; spaces.push_back(space); //initially the entire screen is free - + //Find Free Spaces - for (winVect::iterator it = _windows.begin(); it != _windows.end(); ++it) - spaces = calcSpace((*it)->area().Inflate(screen.getBorderWidth() * 4), - spaces); + winVect::iterator it; + for (it = _windows.begin(); it != _windows.end(); ++it) + spaces = calcSpace((*it)->area().Inflate(screen.getBorderWidth() * 4), + spaces); //Sort spaces by user preference if(screen.colPlacementDirection() == BScreen::TopBottom) - if(screen.rowPlacementDirection() == BScreen::LeftRight) - sort(spaces.begin(),spaces.end(),colLRTB); - else - sort(spaces.begin(),spaces.end(),colRLTB); + if(screen.rowPlacementDirection() == BScreen::LeftRight) + sort(spaces.begin(),spaces.end(),colLRTB); + else + sort(spaces.begin(),spaces.end(),colRLTB); else - if(screen.rowPlacementDirection() == BScreen::LeftRight) - sort(spaces.begin(),spaces.end(),colLRBT); - else - sort(spaces.begin(),spaces.end(),colRLBT); + if(screen.rowPlacementDirection() == BScreen::LeftRight) + sort(spaces.begin(),spaces.end(),colLRBT); + else + sort(spaces.begin(),spaces.end(),colRLBT); //Find first space that fits the window best = NULL; @@ -592,7 +591,7 @@ void Workspace::placeWindow(OpenboxWindow &win) { if (place == NULL) place = cascadePlacement(win, space); - + ASSERT(place != NULL); if (place->x() + window_size.w() > (signed) space.x() + space.w()) place->setX(((signed) space.x() + space.w() - window_size.w()) / 2);