X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;f=src%2FWorkspace.cc;h=d42f6c2db7634f381123f674c0d4300b45c11cb6;hb=d6c02ad70c42f074a4c3d8c433de5bb2c63dea8e;hp=392107437f8c2df0862c3584ef2d43aac2368d56;hpb=07281446ea01d1758ed8cd2aa45d0c94ce1d9830;p=chaz%2Fopenbox diff --git a/src/Workspace.cc b/src/Workspace.cc index 39210743..d42f6c2d 100644 --- a/src/Workspace.cc +++ b/src/Workspace.cc @@ -31,6 +31,18 @@ # include "../config.h" #endif // HAVE_CONFIG_H +#ifdef HAVE_STDIO_H +# include +#endif // HAVE_STDIO_H + +#ifdef HAVE_STDLIB_H +# include +#endif // HAVE_STDLIB_H + +#ifdef HAVE_STRING_H +# include +#endif // HAVE_STRING_H + #include #include @@ -41,48 +53,29 @@ #include "Toolbar.h" #include "Window.h" #include "Workspace.h" - #include "Windowmenu.h" #include "Geometry.h" #include "Util.h" -#ifdef HAVE_STDIO_H -# include -#endif // HAVE_STDIO_H - -#ifdef HAVE_STDLIB_H -# include -#endif // HAVE_STDLIB_H - -#ifdef HAVE_STRING_H -# include -#endif // HAVE_STRING_H - -#include #include -typedef vector rectList; +#include +typedef std::vector rectList; Workspace::Workspace(BScreen &scrn, int i) : screen(scrn) { - cascade_x = cascade_y = 0; - + _focused = (OpenboxWindow *) 0; id = i; - stackingList = new LinkedList; - windowList = new LinkedList; clientmenu = new Clientmenu(*this); lastfocus = (OpenboxWindow *) 0; name = (char *) 0; - char *tmp = screen.getNameOfWorkspace(id); - setName(tmp); + setName(screen.getNameOfWorkspace(id)); } Workspace::~Workspace(void) { - delete stackingList; - delete windowList; delete clientmenu; if (name) @@ -96,10 +89,10 @@ const int Workspace::addWindow(OpenboxWindow *w, Bool place) { if (place) placeWindow(*w); w->setWorkspace(id); - w->setWindowNumber(windowList->count()); + w->setWindowNumber(_windows.size()); - stackingList->insert(w, 0); - windowList->insert(w); + _zorder.push_front(w); + _windows.push_back(w); clientmenu->insert((const char **) w->getTitle()); clientmenu->update(); @@ -115,21 +108,17 @@ const int Workspace::addWindow(OpenboxWindow *w, Bool place) { const int Workspace::removeWindow(OpenboxWindow *w) { if (! w) return -1; - stackingList->remove(w); + _zorder.remove(w); if (w->isFocused()) { if (w->isTransient() && w->getTransientFor() && w->getTransientFor()->isVisible()) { w->getTransientFor()->setInputFocus(); - } else if (screen.sloppyFocus()) { - screen.getOpenbox().setFocusedWindow((OpenboxWindow *) 0); } else { - OpenboxWindow *top = stackingList->first(); - if (! top || ! top->setInputFocus()) { - screen.getOpenbox().setFocusedWindow((OpenboxWindow *) 0); - XSetInputFocus(screen.getOpenbox().getXDisplay(), - screen.getToolbar()->getWindowID(), - RevertToParent, CurrentTime); + 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); } } } @@ -137,46 +126,48 @@ const int Workspace::removeWindow(OpenboxWindow *w) { if (lastfocus == w) lastfocus = (OpenboxWindow *) 0; - windowList->remove(w->getWindowNumber()); + _windows.erase(_windows.begin() + w->getWindowNumber()); clientmenu->remove(w->getWindowNumber()); clientmenu->update(); screen.updateNetizenWindowDel(w->getClientWindow()); - LinkedListIterator it(windowList); - OpenboxWindow *bw = it.current(); - for (int i = 0; bw; it++, i++, bw = it.current()) - bw->setWindowNumber(i); + winVect::iterator it = _windows.begin(); + for (int i=0; it != _windows.end(); ++it, ++i) + (*it)->setWindowNumber(i); - return windowList->count(); + return _windows.size(); } -void Workspace::showAll(void) { - LinkedListIterator it(stackingList); - for (OpenboxWindow *bw = it.current(); bw; it++, bw = it.current()) - bw->deiconify(False, False); +void Workspace::focusWindow(OpenboxWindow *win) { + if (win != (OpenboxWindow *) 0) + clientmenu->setItemSelected(win->getWindowNumber(), true); + if (_focused != (OpenboxWindow *) 0) + clientmenu->setItemSelected(_focused->getWindowNumber(), false); + _focused = win; } -void Workspace::hideAll(void) { - LinkedList lst; +void Workspace::showAll(void) { + winList::iterator it; + for (it = _zorder.begin(); it != _zorder.end(); ++it) + (*it)->deiconify(false, false); +} - LinkedListIterator it(stackingList); - for (OpenboxWindow *bw = it.current(); bw; it++, bw = it.current()) - lst.insert(bw, 0); - LinkedListIterator it2(&lst); - for (OpenboxWindow *bw = it2.current(); bw; it2++, bw = it2.current()) - if (! bw->isStuck()) - bw->withdraw(); +void Workspace::hideAll(void) { + winList::reverse_iterator it; + for (it = _zorder.rbegin(); it != _zorder.rend(); ++it) + if (!(*it)->isStuck()) + (*it)->withdraw(); } void Workspace::removeAll(void) { - LinkedListIterator it(windowList); - for (OpenboxWindow *bw = it.current(); bw; it++, bw = it.current()) - bw->iconify(); + winVect::iterator it; + for (it = _windows.begin(); it != _windows.end(); ++it) + (*it)->iconify(); } @@ -204,8 +195,8 @@ void Workspace::raiseWindow(OpenboxWindow *w) { if (! win->isIconic()) { wkspc = screen.getWorkspace(win->getWorkspaceNumber()); - wkspc->stackingList->remove(win); - wkspc->stackingList->insert(win, 0); + wkspc->_zorder.remove(win); + wkspc->_zorder.push_front(win); } if (! win->hasTransient() || ! win->getTransient()) @@ -243,8 +234,8 @@ void Workspace::lowerWindow(OpenboxWindow *w) { if (! win->isIconic()) { wkspc = screen.getWorkspace(win->getWorkspaceNumber()); - wkspc->stackingList->remove(win); - wkspc->stackingList->insert(win); + wkspc->_zorder.remove(win); + wkspc->_zorder.push_back(win); } if (! win->getTransientFor()) @@ -267,24 +258,23 @@ void Workspace::lowerWindow(OpenboxWindow *w) { void Workspace::reconfigure(void) { clientmenu->reconfigure(); - LinkedListIterator it(windowList); - for (OpenboxWindow *bw = it.current(); bw; it++, bw = it.current()) { - if (bw->validateClient()) - bw->reconfigure(); - } + winVect::iterator it; + for (it = _windows.begin(); it != _windows.end(); ++it) + if ((*it)->validateClient()) + (*it)->reconfigure(); } OpenboxWindow *Workspace::getWindow(int index) { - if ((index >= 0) && (index < windowList->count())) - return windowList->find(index); + if ((index >= 0) && (index < _windows.size())) + return _windows[index]; else - return 0; + return (OpenboxWindow *) 0; } const int Workspace::getCount(void) { - return windowList->count(); + return _windows.size(); } @@ -299,16 +289,12 @@ Bool Workspace::isCurrent(void) { } -Bool Workspace::isLastWindow(OpenboxWindow *w) { - return (w == windowList->last()); -} - void Workspace::setCurrent(void) { screen.changeWorkspaceID(id); } -void Workspace::setName(char *new_name) { +void Workspace::setName(const char *new_name) { if (name) delete [] name; @@ -327,10 +313,8 @@ void Workspace::setName(char *new_name) { void Workspace::shutdown(void) { - while (windowList->count()) { - windowList->first()->restore(); - delete windowList->first(); - } + while (!_windows.empty()) + _windows[0]->restore(); } static rectList calcSpace(const Rect &win, const rectList &spaces) { @@ -372,28 +356,52 @@ static rectList calcSpace(const Rect &win, const rectList &spaces) { return result; } - -bool incWidth(const Rect &first, const Rect &second) { - return first.x() < second.x(); +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.y()+first.h()>second.y()+second.h(); } - - -bool decWidth(const Rect &first, const Rect &second) { - if (second.x() == first.x()) - return second.w() < first.w(); - return second.x() < first.x(); + +bool rowRLTB(const Rect &first, const Rect &second){ + if (first.y()==second.y()) + 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.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.x()+first.w()>second.x()+second.w(); } @@ -403,34 +411,23 @@ bool decHeight(const Rect &first, const Rect &second) { Point *Workspace::bestFitPlacement(const Size &win_size, const Rect &space) { const Rect *best; rectList spaces; - LinkedListIterator it(windowList); rectList::const_iterator siter; spaces.push_back(space); //initially the entire screen is free - it.reset(); //Find Free Spaces - for (OpenboxWindow *cur=it.current(); cur!=NULL; it++, cur=it.current()) - spaces = calcSpace(cur->area().Inflate(screen.getBorderWidth() * 4), + winVect::iterator it; + for (it = _windows.begin(); it != _windows.end(); ++it) + spaces = calcSpace((*it)->area().Inflate(screen.getBorderWidth() * 4), spaces); - //Sort the spaces by placement choice - if (screen.rowPlacementDirection() == BScreen::TopBottom) - sort(spaces.begin(), spaces.end(), decHeight); - else - sort(spaces.begin(), spaces.end(), incHeight); - if (screen.colPlacementDirection() == BScreen::TopBottom) - stable_sort(spaces.begin(), spaces.end(), incHeight); - else - stable_sort(spaces.begin(), spaces.end(), decHeight); - //Find first space that fits the window best = NULL; for (siter=spaces.begin(); siter!=spaces.end(); ++siter) { if ((siter->w() >= win_size.w()) && (siter->h() >= win_size.h())) { if (best==NULL) - best = siter; + best = &*siter; else if(siter->w()*siter->h()h()*best->w()) - best = siter; + best = &*siter; } } if (best != NULL) { @@ -444,125 +441,109 @@ Point *Workspace::bestFitPlacement(const Size &win_size, const Rect &space) { return NULL; //fall back to cascade } +Point *Workspace::underMousePlacement(const Size &win_size, const Rect &space) { + Point *pt; -Point *Workspace::rowSmartPlacement(const Size &win_size, const Rect &space) { - bool placed=false; - int test_x, test_y, place_x = 0, place_y = 0; - int start_pos = 0; - int change_y = - ((screen.colPlacementDirection() == BScreen::TopBottom) ? 1 : -1); - int change_x = - ((screen.rowPlacementDirection() == BScreen::LeftRight) ? 1 : -1); - int delta_x = 8, delta_y = 8; - LinkedListIterator it(windowList); - - test_y = (screen.colPlacementDirection() == BScreen::TopBottom) ? - start_pos : screen.size().h() - win_size.h() - start_pos; - - while(!placed && - ((screen.colPlacementDirection() == BScreen::BottomTop) ? - test_y > 0 : test_y + win_size.h() < (signed) space.h())) { - test_x = (screen.rowPlacementDirection() == BScreen::LeftRight) ? - start_pos : space.w() - win_size.w() - start_pos; - while (!placed && - ((screen.rowPlacementDirection() == BScreen::RightLeft) ? - test_x > 0 : test_x + win_size.w() < (signed) space.w())) { - placed = true; - - it.reset(); - for (OpenboxWindow *curr = it.current(); placed && curr; - it++, curr = it.current()) { - int curr_w = curr->area().w() + (screen.getBorderWidth() * 4); - int curr_h = curr->area().h() + (screen.getBorderWidth() * 4); - - if (curr->area().x() < test_x + win_size.w() && - curr->area().x() + curr_w > test_x && - curr->area().y() < test_y + win_size.h() && - curr->area().y() + curr_h > test_y) { - placed = false; - } - } - - // Removed code for checking toolbar and slit - // The space passed in should not include either - - if (placed) { - place_x = test_x; - place_y = test_y; + int x, y, rx, ry; + Window c, r; + unsigned int m; + XQueryPointer(screen.getOpenbox().getXDisplay(), screen.getRootWindow(), + &r, &c, &rx, &ry, &x, &y, &m); + pt = new Point(rx - win_size.w() / 2, ry - win_size.h() / 2); + + if (pt->x() < space.x()) + pt->setX(space.x()); + if (pt->y() < space.y()) + pt->setY(space.y()); + if (pt->x() + win_size.w() > space.x() + space.w()) + pt->setX(space.x() + space.w() - win_size.w()); + if (pt->y() + win_size.h() > space.y() + space.h()) + pt->setY(space.y() + space.h() - win_size.h()); + return pt; +} - break; - } +Point *Workspace::rowSmartPlacement(const Size &win_size, const Rect &space) { + const Rect *best; + rectList spaces; - test_x += (change_x * delta_x); + rectList::const_iterator siter; + spaces.push_back(space); //initially the entire screen is free + + //Find Free 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); + else + 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())) { + best = &*siter; + break; } - test_y += (change_y * delta_y); - } - if (placed) - return new Point(place_x, place_y); - else - return NULL; // fall back to cascade + if (best != NULL) { + Point *pt = new Point(best->origin()); + if (screen.colPlacementDirection() != BScreen::TopBottom) + pt->setY(best->y() + best->h() - win_size.h()); + if (screen.rowPlacementDirection() != BScreen::LeftRight) + pt->setX(best->x()+best->w()-win_size.w()); + return pt; + } else + return NULL; //fall back to cascade } Point *Workspace::colSmartPlacement(const Size &win_size, const Rect &space) { - Point *pt; - bool placed=false; - int test_x, test_y; - int start_pos = 0; - int change_y = - ((screen.colPlacementDirection() == BScreen::TopBottom) ? 1 : -1); - int change_x = - ((screen.rowPlacementDirection() == BScreen::LeftRight) ? 1 : -1); - int delta_x = 8, delta_y = 8; - LinkedListIterator it(windowList); - - test_x = (screen.rowPlacementDirection() == BScreen::LeftRight) ? - start_pos : screen.size().w() - win_size.w() - start_pos; - - while(!placed && - ((screen.rowPlacementDirection() == BScreen::RightLeft) ? - test_x > 0 : test_x + win_size.w() < (signed) space.w())) { - test_y = (screen.colPlacementDirection() == BScreen::TopBottom) ? - start_pos : screen.size().h() - win_size.h() - start_pos; - - while(!placed && - ((screen.colPlacementDirection() == BScreen::BottomTop) ? - test_y > 0 : test_y + win_size.h() < (signed) space.h())){ - - placed = true; - - it.reset(); - for (OpenboxWindow *curr = it.current(); placed && curr; - it++, curr = it.current()) { - int curr_w = curr->area().w() + (screen.getBorderWidth() * 4); - int curr_h = curr->area().h() + (screen.getBorderWidth() * 4); - - if (curr->area().x() < test_x + win_size.w() && - curr->area().x() + curr_w > test_x && - curr->area().y() < test_y + win_size.h() && - curr->area().y() + curr_h > test_y) { - placed = False; - } - } - - // Removed code checking for intersection with Toolbar and Slit - // The space passed to this method should not include either - - if (placed) { - pt= new Point(test_x,test_y); + const Rect *best; + rectList spaces; - break; - } + rectList::const_iterator siter; + spaces.push_back(space); //initially the entire screen is free + + //Find Free 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); + else + if(screen.rowPlacementDirection() == BScreen::LeftRight) + sort(spaces.begin(),spaces.end(),colLRBT); + else + sort(spaces.begin(),spaces.end(),colRLBT); - test_y += (change_y * delta_y); + //Find first space that fits the window + best = NULL; + for (siter=spaces.begin(); siter!=spaces.end(); ++siter) + if ((siter->w() >= win_size.w()) && (siter->h() >= win_size.h())) { + best = &*siter; + break; } - test_x += (change_x * delta_x); - } - if (placed) + if (best != NULL) { + Point *pt = new Point(best->origin()); + if (screen.colPlacementDirection() != BScreen::TopBottom) + pt->setY(pt->y() + (best->h() - win_size.h())); + if (screen.rowPlacementDirection() != BScreen::LeftRight) + pt->setX(pt->x() + (best->w() - win_size.w())); return pt; - else - return NULL; + } else + return NULL; //fall back to cascade } @@ -587,10 +568,9 @@ Point *const Workspace::cascadePlacement(const OpenboxWindow &win, void Workspace::placeWindow(OpenboxWindow &win) { Rect space = screen.availableArea(); - const Size window_size(win.area().w()+screen.getBorderWidth() * 4, - win.area().h()+screen.getBorderWidth() * 4); + const Size window_size(win.area().w()+screen.getBorderWidth() * 2, + win.area().h()+screen.getBorderWidth() * 2); Point *place = NULL; - LinkedListIterator it(windowList); switch (screen.placementPolicy()) { case BScreen::BestFitPlacement: @@ -602,6 +582,10 @@ void Workspace::placeWindow(OpenboxWindow &win) { case BScreen::ColSmartPlacement: place = colSmartPlacement(window_size, space); break; + case BScreen::UnderMousePlacement: + case BScreen::ClickMousePlacement: + place = underMousePlacement(window_size, space); + break; } // switch if (place == NULL)