2002-04-11 03:20:38 +00:00
|
|
|
// Workspace.cc for Openbox
|
2002-04-14 01:11:51 +00:00
|
|
|
// Copyright (c) 2002 - 2002 Ben Jansens (ben@orodu.net)
|
2002-04-11 03:20:38 +00:00
|
|
|
// Copyright (c) 2001 Sean 'Shaleh' Perry <shaleh@debian.org>
|
|
|
|
// Copyright (c) 1997 - 2000 Brad Hughes (bhughes@tcac.net)
|
|
|
|
//
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
// copy of this software and associated documentation files (the "Software"),
|
|
|
|
// to deal in the Software without restriction, including without limitation
|
|
|
|
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
// and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
// Software is furnished to do so, subject to the following conditions:
|
|
|
|
//
|
|
|
|
// The above copyright notice and this permission notice shall be included in
|
|
|
|
// all copies or substantial portions of the Software.
|
|
|
|
//
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
|
// DEALINGS IN THE SOFTWARE.
|
|
|
|
|
|
|
|
// stupid macros needed to access some functions in version 2 of the GNU C
|
|
|
|
// library
|
|
|
|
#ifndef _GNU_SOURCE
|
|
|
|
#define _GNU_SOURCE
|
|
|
|
#endif // _GNU_SOURCE
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "../config.h"
|
|
|
|
#endif // HAVE_CONFIG_H
|
|
|
|
|
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#include <X11/Xatom.h>
|
|
|
|
|
|
|
|
#include "i18n.h"
|
|
|
|
#include "openbox.h"
|
|
|
|
#include "Clientmenu.h"
|
|
|
|
#include "Screen.h"
|
|
|
|
#include "Toolbar.h"
|
|
|
|
#include "Window.h"
|
|
|
|
#include "Workspace.h"
|
2002-04-15 02:37:18 +00:00
|
|
|
|
2002-04-11 03:20:38 +00:00
|
|
|
#include "Windowmenu.h"
|
2002-04-14 01:11:51 +00:00
|
|
|
#include "Geometry.h"
|
2002-04-14 15:57:07 +00:00
|
|
|
#include "Util.h"
|
2002-04-11 03:20:38 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_STDIO_H
|
|
|
|
# include <stdio.h>
|
|
|
|
#endif // HAVE_STDIO_H
|
|
|
|
|
2002-04-14 01:11:51 +00:00
|
|
|
#ifdef HAVE_STDLIB_H
|
|
|
|
# include <stdlib.h>
|
|
|
|
#endif // HAVE_STDLIB_H
|
|
|
|
|
2002-04-16 06:25:00 +00:00
|
|
|
#ifdef HAVE_STRING_H
|
2002-04-11 03:20:38 +00:00
|
|
|
# include <string.h>
|
2002-04-16 06:25:00 +00:00
|
|
|
#endif // HAVE_STRING_H
|
2002-04-11 03:20:38 +00:00
|
|
|
|
2002-04-14 01:11:51 +00:00
|
|
|
#include <vector>
|
2002-04-21 07:58:46 +00:00
|
|
|
#include <algorithm>
|
2002-04-14 01:11:51 +00:00
|
|
|
typedef vector<Rect> rectList;
|
2002-04-11 03:20:38 +00:00
|
|
|
|
2002-04-14 14:20:02 +00:00
|
|
|
Workspace::Workspace(BScreen &scrn, int i) : screen(scrn) {
|
2002-04-11 03:20:38 +00:00
|
|
|
|
|
|
|
cascade_x = cascade_y = 32;
|
|
|
|
|
|
|
|
id = i;
|
|
|
|
|
|
|
|
stackingList = new LinkedList<OpenboxWindow>;
|
|
|
|
windowList = new LinkedList<OpenboxWindow>;
|
2002-04-14 11:37:22 +00:00
|
|
|
clientmenu = new Clientmenu(*this);
|
2002-04-11 03:20:38 +00:00
|
|
|
|
|
|
|
lastfocus = (OpenboxWindow *) 0;
|
|
|
|
|
|
|
|
name = (char *) 0;
|
2002-04-14 14:20:02 +00:00
|
|
|
char *tmp = screen.getNameOfWorkspace(id);
|
2002-04-11 03:20:38 +00:00
|
|
|
setName(tmp);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Workspace::~Workspace(void) {
|
|
|
|
delete stackingList;
|
|
|
|
delete windowList;
|
|
|
|
delete clientmenu;
|
|
|
|
|
|
|
|
if (name)
|
|
|
|
delete [] name;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const int Workspace::addWindow(OpenboxWindow *w, Bool place) {
|
|
|
|
if (! w) return -1;
|
|
|
|
|
|
|
|
if (place) placeWindow(w);
|
|
|
|
|
|
|
|
w->setWorkspace(id);
|
|
|
|
w->setWindowNumber(windowList->count());
|
|
|
|
|
|
|
|
stackingList->insert(w, 0);
|
|
|
|
windowList->insert(w);
|
|
|
|
|
|
|
|
clientmenu->insert((const char **) w->getTitle());
|
|
|
|
clientmenu->update();
|
|
|
|
|
2002-04-14 14:20:02 +00:00
|
|
|
screen.updateNetizenWindowAdd(w->getClientWindow(), id);
|
2002-04-11 03:20:38 +00:00
|
|
|
|
|
|
|
raiseWindow(w);
|
|
|
|
|
|
|
|
return w->getWindowNumber();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const int Workspace::removeWindow(OpenboxWindow *w) {
|
|
|
|
if (! w) return -1;
|
|
|
|
|
|
|
|
stackingList->remove(w);
|
|
|
|
|
|
|
|
if (w->isFocused()) {
|
|
|
|
if (w->isTransient() && w->getTransientFor() &&
|
|
|
|
w->getTransientFor()->isVisible()) {
|
|
|
|
w->getTransientFor()->setInputFocus();
|
2002-04-17 08:30:55 +00:00
|
|
|
} else if (screen.sloppyFocus()) {
|
2002-04-14 14:20:02 +00:00
|
|
|
screen.getOpenbox().setFocusedWindow((OpenboxWindow *) 0);
|
2002-04-11 03:20:38 +00:00
|
|
|
} else {
|
|
|
|
OpenboxWindow *top = stackingList->first();
|
|
|
|
if (! top || ! top->setInputFocus()) {
|
2002-04-14 14:20:02 +00:00
|
|
|
screen.getOpenbox().setFocusedWindow((OpenboxWindow *) 0);
|
|
|
|
XSetInputFocus(screen.getOpenbox().getXDisplay(),
|
|
|
|
screen.getToolbar()->getWindowID(),
|
2002-04-11 03:20:38 +00:00
|
|
|
RevertToParent, CurrentTime);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (lastfocus == w)
|
|
|
|
lastfocus = (OpenboxWindow *) 0;
|
|
|
|
|
|
|
|
windowList->remove(w->getWindowNumber());
|
|
|
|
clientmenu->remove(w->getWindowNumber());
|
|
|
|
clientmenu->update();
|
|
|
|
|
2002-04-14 14:20:02 +00:00
|
|
|
screen.updateNetizenWindowDel(w->getClientWindow());
|
2002-04-11 03:20:38 +00:00
|
|
|
|
|
|
|
LinkedListIterator<OpenboxWindow> it(windowList);
|
|
|
|
OpenboxWindow *bw = it.current();
|
|
|
|
for (int i = 0; bw; it++, i++, bw = it.current())
|
|
|
|
bw->setWindowNumber(i);
|
|
|
|
|
|
|
|
return windowList->count();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Workspace::showAll(void) {
|
|
|
|
LinkedListIterator<OpenboxWindow> it(stackingList);
|
|
|
|
for (OpenboxWindow *bw = it.current(); bw; it++, bw = it.current())
|
|
|
|
bw->deiconify(False, False);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Workspace::hideAll(void) {
|
|
|
|
LinkedList<OpenboxWindow> lst;
|
|
|
|
|
|
|
|
LinkedListIterator<OpenboxWindow> it(stackingList);
|
|
|
|
for (OpenboxWindow *bw = it.current(); bw; it++, bw = it.current())
|
|
|
|
lst.insert(bw, 0);
|
|
|
|
|
|
|
|
LinkedListIterator<OpenboxWindow> it2(&lst);
|
|
|
|
for (OpenboxWindow *bw = it2.current(); bw; it2++, bw = it2.current())
|
|
|
|
if (! bw->isStuck())
|
|
|
|
bw->withdraw();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Workspace::removeAll(void) {
|
|
|
|
LinkedListIterator<OpenboxWindow> it(windowList);
|
|
|
|
for (OpenboxWindow *bw = it.current(); bw; it++, bw = it.current())
|
|
|
|
bw->iconify();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Workspace::raiseWindow(OpenboxWindow *w) {
|
|
|
|
OpenboxWindow *win = (OpenboxWindow *) 0, *bottom = w;
|
|
|
|
|
|
|
|
while (bottom->isTransient() && bottom->getTransientFor())
|
|
|
|
bottom = bottom->getTransientFor();
|
|
|
|
|
|
|
|
int i = 1;
|
|
|
|
win = bottom;
|
|
|
|
while (win->hasTransient() && win->getTransient()) {
|
|
|
|
win = win->getTransient();
|
|
|
|
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
|
|
|
Window *nstack = new Window[i], *curr = nstack;
|
|
|
|
Workspace *wkspc;
|
|
|
|
|
|
|
|
win = bottom;
|
|
|
|
while (True) {
|
|
|
|
*(curr++) = win->getFrameWindow();
|
2002-04-14 14:20:02 +00:00
|
|
|
screen.updateNetizenWindowRaise(win->getClientWindow());
|
2002-04-11 03:20:38 +00:00
|
|
|
|
|
|
|
if (! win->isIconic()) {
|
2002-04-14 14:20:02 +00:00
|
|
|
wkspc = screen.getWorkspace(win->getWorkspaceNumber());
|
2002-04-11 03:20:38 +00:00
|
|
|
wkspc->stackingList->remove(win);
|
|
|
|
wkspc->stackingList->insert(win, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (! win->hasTransient() || ! win->getTransient())
|
|
|
|
break;
|
|
|
|
|
|
|
|
win = win->getTransient();
|
|
|
|
}
|
|
|
|
|
2002-04-14 14:20:02 +00:00
|
|
|
screen.raiseWindows(nstack, i);
|
2002-04-11 03:20:38 +00:00
|
|
|
|
|
|
|
delete [] nstack;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Workspace::lowerWindow(OpenboxWindow *w) {
|
|
|
|
OpenboxWindow *win = (OpenboxWindow *) 0, *bottom = w;
|
|
|
|
|
|
|
|
while (bottom->isTransient() && bottom->getTransientFor())
|
|
|
|
bottom = bottom->getTransientFor();
|
|
|
|
|
|
|
|
int i = 1;
|
|
|
|
win = bottom;
|
|
|
|
while (win->hasTransient() && win->getTransient()) {
|
|
|
|
win = win->getTransient();
|
|
|
|
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
|
|
|
Window *nstack = new Window[i], *curr = nstack;
|
|
|
|
Workspace *wkspc;
|
|
|
|
|
|
|
|
while (True) {
|
|
|
|
*(curr++) = win->getFrameWindow();
|
2002-04-14 14:20:02 +00:00
|
|
|
screen.updateNetizenWindowLower(win->getClientWindow());
|
2002-04-11 03:20:38 +00:00
|
|
|
|
|
|
|
if (! win->isIconic()) {
|
2002-04-14 14:20:02 +00:00
|
|
|
wkspc = screen.getWorkspace(win->getWorkspaceNumber());
|
2002-04-11 03:20:38 +00:00
|
|
|
wkspc->stackingList->remove(win);
|
|
|
|
wkspc->stackingList->insert(win);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (! win->getTransientFor())
|
|
|
|
break;
|
|
|
|
|
|
|
|
win = win->getTransientFor();
|
|
|
|
}
|
|
|
|
|
2002-04-14 14:20:02 +00:00
|
|
|
screen.getOpenbox().grab();
|
2002-04-11 03:20:38 +00:00
|
|
|
|
2002-04-14 14:20:02 +00:00
|
|
|
XLowerWindow(screen.getBaseDisplay().getXDisplay(), *nstack);
|
|
|
|
XRestackWindows(screen.getBaseDisplay().getXDisplay(), nstack, i);
|
2002-04-11 03:20:38 +00:00
|
|
|
|
2002-04-14 14:20:02 +00:00
|
|
|
screen.getOpenbox().ungrab();
|
2002-04-11 03:20:38 +00:00
|
|
|
|
|
|
|
delete [] nstack;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Workspace::reconfigure(void) {
|
|
|
|
clientmenu->reconfigure();
|
|
|
|
|
|
|
|
LinkedListIterator<OpenboxWindow> it(windowList);
|
|
|
|
for (OpenboxWindow *bw = it.current(); bw; it++, bw = it.current()) {
|
|
|
|
if (bw->validateClient())
|
|
|
|
bw->reconfigure();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
OpenboxWindow *Workspace::getWindow(int index) {
|
|
|
|
if ((index >= 0) && (index < windowList->count()))
|
|
|
|
return windowList->find(index);
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const int Workspace::getCount(void) {
|
|
|
|
return windowList->count();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Workspace::update(void) {
|
|
|
|
clientmenu->update();
|
2002-04-14 14:20:02 +00:00
|
|
|
screen.getToolbar()->redrawWindowLabel(True);
|
2002-04-11 03:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Bool Workspace::isCurrent(void) {
|
2002-04-14 14:20:02 +00:00
|
|
|
return (id == screen.getCurrentWorkspaceID());
|
2002-04-11 03:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Bool Workspace::isLastWindow(OpenboxWindow *w) {
|
|
|
|
return (w == windowList->last());
|
|
|
|
}
|
|
|
|
|
|
|
|
void Workspace::setCurrent(void) {
|
2002-04-14 14:20:02 +00:00
|
|
|
screen.changeWorkspaceID(id);
|
2002-04-11 03:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Workspace::setName(char *new_name) {
|
|
|
|
if (name)
|
|
|
|
delete [] name;
|
|
|
|
|
|
|
|
if (new_name) {
|
|
|
|
name = bstrdup(new_name);
|
|
|
|
} else {
|
|
|
|
name = new char[128];
|
|
|
|
sprintf(name, i18n->getMessage(WorkspaceSet, WorkspaceDefaultNameFormat,
|
|
|
|
"Workspace %d"), id + 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
clientmenu->setLabel(name);
|
|
|
|
clientmenu->update();
|
2002-04-17 08:30:55 +00:00
|
|
|
screen.saveWorkspaceNames();
|
2002-04-11 03:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Workspace::shutdown(void) {
|
|
|
|
while (windowList->count()) {
|
|
|
|
windowList->first()->restore();
|
|
|
|
delete windowList->first();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-04-20 18:30:47 +00:00
|
|
|
static rectList calcSpace(const Rect &win, const rectList &spaces) {
|
2002-04-14 01:11:51 +00:00
|
|
|
rectList result;
|
|
|
|
rectList::const_iterator siter;
|
|
|
|
for(siter=spaces.begin(); siter!=spaces.end(); ++siter) {
|
2002-04-20 18:30:47 +00:00
|
|
|
if(win.Intersect(*siter)) {
|
2002-04-14 01:11:51 +00:00
|
|
|
//Check for space to the left of the window
|
2002-04-23 19:59:44 +00:00
|
|
|
if(win.x() > siter->x())
|
2002-04-14 01:11:51 +00:00
|
|
|
result.push_back(Rect(siter->x(), siter->y(),
|
2002-04-23 19:59:44 +00:00
|
|
|
win.x() - siter->x() - 1,
|
2002-04-14 01:11:51 +00:00
|
|
|
siter->h()));
|
|
|
|
//Check for space above the window
|
2002-04-23 19:59:44 +00:00
|
|
|
if(win.y() > siter->y())
|
2002-04-14 01:11:51 +00:00
|
|
|
result.push_back(Rect(siter->x(), siter->y(),
|
|
|
|
siter->w(),
|
2002-04-23 19:59:44 +00:00
|
|
|
win.y() - siter->y() - 1));
|
2002-04-14 01:11:51 +00:00
|
|
|
//Check for space to the right of the window
|
2002-04-23 19:59:44 +00:00
|
|
|
if((win.x()+win.w()) <
|
2002-04-14 01:11:51 +00:00
|
|
|
(siter->x()+siter->w()))
|
2002-04-23 19:59:44 +00:00
|
|
|
result.push_back(Rect(win.x() + win.w() + 1,
|
2002-04-14 01:11:51 +00:00
|
|
|
siter->y(),
|
|
|
|
siter->x() + siter->w() -
|
2002-04-23 19:59:44 +00:00
|
|
|
win.x() - win.w() - 1,
|
2002-04-14 01:11:51 +00:00
|
|
|
siter->h()));
|
|
|
|
//Check for space below the window
|
2002-04-23 19:59:44 +00:00
|
|
|
if((win.y()+win.h()) <
|
2002-04-14 01:11:51 +00:00
|
|
|
(siter->y()+siter->h()))
|
|
|
|
result.push_back(Rect(siter->x(),
|
2002-04-23 19:59:44 +00:00
|
|
|
win.y() + win.h() + 1,
|
2002-04-14 01:11:51 +00:00
|
|
|
siter->w(),
|
|
|
|
siter->y() + siter->h()-
|
2002-04-23 19:59:44 +00:00
|
|
|
win.y() - win.h() - 1));
|
2002-04-14 01:11:51 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
else
|
|
|
|
result.push_back(*siter);
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2002-04-21 07:58:46 +00:00
|
|
|
|
|
|
|
bool incWidth(const Rect &first, const Rect &second) {
|
|
|
|
return first.x() < second.x();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool decWidth(const Rect &first, const Rect &second) {
|
|
|
|
if (second.x() == first.x())
|
|
|
|
return second.w() < first.w();
|
|
|
|
return second.x() < first.x();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool incHeight(const Rect &first, const Rect &second) {
|
|
|
|
return first.y() < second.y();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool decHeight(const Rect &first, const Rect &second) {
|
|
|
|
if (second.y() == first.y())
|
|
|
|
return second.h() < first.h();
|
|
|
|
return second.y() < first.y();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-04-14 01:11:51 +00:00
|
|
|
//BestFitPlacement finds the smallest free space that fits the window
|
|
|
|
//to be placed. It currentl ignores whether placement is right to left or top
|
|
|
|
//to bottom.
|
2002-04-21 07:58:46 +00:00
|
|
|
Point *Workspace::bestFitPlacement(const Size &win_size, const Rect &space) {
|
2002-04-14 01:11:51 +00:00
|
|
|
const Rect *best;
|
|
|
|
rectList spaces;
|
|
|
|
LinkedListIterator<OpenboxWindow> 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())
|
2002-04-20 18:30:47 +00:00
|
|
|
spaces = calcSpace(cur->area().Inflate(screen.getBorderWidth() * 4),
|
|
|
|
spaces);
|
2002-04-14 01:11:51 +00:00
|
|
|
|
2002-04-21 17:54:51 +00:00
|
|
|
//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);
|
|
|
|
|
2002-04-14 01:11:51 +00:00
|
|
|
//Find first space that fits the window
|
2002-04-15 02:37:18 +00:00
|
|
|
best = NULL;
|
2002-04-14 01:11:51 +00:00
|
|
|
for (siter=spaces.begin(); siter!=spaces.end(); ++siter) {
|
2002-04-21 03:36:09 +00:00
|
|
|
if ((siter->w() >= win_size.w()) && (siter->h() >= win_size.h())) {
|
2002-04-21 17:54:51 +00:00
|
|
|
if (best==NULL)
|
2002-04-21 03:36:09 +00:00
|
|
|
best = siter;
|
2002-04-21 17:54:51 +00:00
|
|
|
else if(siter->w()*siter->h()<best->h()*best->w())
|
2002-04-21 03:36:09 +00:00
|
|
|
best = siter;
|
|
|
|
}
|
2002-04-14 01:11:51 +00:00
|
|
|
}
|
2002-04-21 02:02:27 +00:00
|
|
|
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
|
2002-04-15 02:37:18 +00:00
|
|
|
return NULL; //fall back to cascade
|
2002-04-14 01:11:51 +00:00
|
|
|
}
|
|
|
|
|
2002-04-21 07:58:46 +00:00
|
|
|
|
|
|
|
Point *Workspace::rowSmartPlacement(const Size &win_size, const Rect &space) {
|
2002-04-23 19:59:44 +00:00
|
|
|
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;
|
2002-04-21 07:58:46 +00:00
|
|
|
LinkedListIterator<OpenboxWindow> it(windowList);
|
|
|
|
|
2002-04-23 19:59:44 +00:00
|
|
|
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;
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
test_x += (change_x * delta_x);
|
2002-04-21 07:58:46 +00:00
|
|
|
}
|
|
|
|
|
2002-04-23 19:59:44 +00:00
|
|
|
test_y += (change_y * delta_y);
|
|
|
|
}
|
|
|
|
if (placed)
|
|
|
|
return new Point(place_x, place_y);
|
|
|
|
else
|
|
|
|
return NULL; // fall back to cascade
|
2002-04-21 07:58:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Point *Workspace::colSmartPlacement(const Size &win_size, const Rect &space) {
|
2002-04-23 19:59:44 +00:00
|
|
|
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;
|
2002-04-21 07:58:46 +00:00
|
|
|
LinkedListIterator<OpenboxWindow> it(windowList);
|
|
|
|
|
2002-04-23 19:59:44 +00:00
|
|
|
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);
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
test_y += (change_y * delta_y);
|
2002-04-21 07:58:46 +00:00
|
|
|
}
|
|
|
|
|
2002-04-23 19:59:44 +00:00
|
|
|
test_x += (change_x * delta_x);
|
|
|
|
}
|
|
|
|
if (placed)
|
2002-04-21 07:58:46 +00:00
|
|
|
return pt;
|
2002-04-23 19:59:44 +00:00
|
|
|
else
|
|
|
|
return NULL;
|
2002-04-21 07:58:46 +00:00
|
|
|
}
|
2002-04-14 01:11:51 +00:00
|
|
|
|
2002-04-16 01:10:53 +00:00
|
|
|
|
|
|
|
Point *const Workspace::cascadePlacement(const OpenboxWindow *const win){
|
|
|
|
if (((unsigned) cascade_x > (screen.size().w() / 2)) ||
|
|
|
|
((unsigned) cascade_y > (screen.size().h() / 2)))
|
|
|
|
cascade_x = cascade_y = 32;
|
|
|
|
|
|
|
|
cascade_x += win->getTitleHeight();
|
|
|
|
cascade_y += win->getTitleHeight();
|
|
|
|
|
|
|
|
return new Point(cascade_x, cascade_y);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-04-11 03:20:38 +00:00
|
|
|
void Workspace::placeWindow(OpenboxWindow *win) {
|
2002-04-14 15:57:07 +00:00
|
|
|
ASSERT(win != NULL);
|
2002-04-14 01:11:51 +00:00
|
|
|
|
2002-04-18 07:26:05 +00:00
|
|
|
// the following code is temporary and will be taken care of by Screen in the
|
|
|
|
// future (with the NETWM 'strut')
|
|
|
|
Rect space(0, 0, screen.size().w(), screen.size().h());
|
|
|
|
|
|
|
|
#ifdef SLIT
|
2002-04-22 22:24:15 +00:00
|
|
|
Slit *slit = screen.getSlit();
|
|
|
|
int slit_x = slit->autoHide() ? slit->hiddenOrigin().x() : slit->area().x(),
|
|
|
|
slit_y = slit->autoHide() ? slit->hiddenOrigin().y() : slit->area().y();
|
|
|
|
Toolbar *toolbar = screen.getToolbar();
|
|
|
|
int tbarh = screen.hideToolbar() ? 0 :
|
|
|
|
toolbar->getExposedHeight() + screen.getBorderWidth() * 2;
|
|
|
|
bool tbartop;
|
|
|
|
switch (toolbar->placement()) {
|
|
|
|
case Toolbar::TopLeft:
|
|
|
|
case Toolbar::TopCenter:
|
|
|
|
case Toolbar::TopRight:
|
|
|
|
tbartop = true;
|
|
|
|
break;
|
|
|
|
case Toolbar::BottomLeft:
|
|
|
|
case Toolbar::BottomCenter:
|
|
|
|
case Toolbar::BottomRight:
|
|
|
|
tbartop = false;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ASSERT(false); // unhandled placement
|
|
|
|
}
|
|
|
|
if ((slit->direction() == Slit::Horizontal &&
|
|
|
|
(slit->placement() == Slit::TopLeft ||
|
|
|
|
slit->placement() == Slit::TopRight)) ||
|
|
|
|
slit->placement() == Slit::TopCenter) {
|
|
|
|
// exclude top
|
2002-04-22 23:00:57 +00:00
|
|
|
if (tbartop && slit_y + slit->area().h() < tbarh) {
|
|
|
|
space.setY(space.y() + tbarh);
|
2002-04-22 22:24:15 +00:00
|
|
|
space.setH(space.h() - tbarh);
|
2002-04-22 23:00:57 +00:00
|
|
|
} else {
|
|
|
|
space.setY(space.y() + (slit_y + slit->area().h() +
|
|
|
|
screen.getBorderWidth() * 2));
|
|
|
|
space.setH(space.h() - (slit_y + slit->area().h() +
|
|
|
|
screen.getBorderWidth() * 2));
|
|
|
|
if (!tbartop)
|
|
|
|
space.setH(space.h() - tbarh);
|
|
|
|
}
|
2002-04-22 22:24:15 +00:00
|
|
|
} else if ((slit->direction() == Slit::Vertical &&
|
2002-04-20 19:53:19 +00:00
|
|
|
(slit->placement() == Slit::TopRight ||
|
|
|
|
slit->placement() == Slit::BottomRight)) ||
|
|
|
|
slit->placement() == Slit::CenterRight) {
|
2002-04-22 22:24:15 +00:00
|
|
|
// exclude right
|
2002-04-22 23:00:57 +00:00
|
|
|
space.setW(space.w() - (screen.size().w() - slit_x));
|
2002-04-22 22:24:15 +00:00
|
|
|
if (tbartop)
|
|
|
|
space.setY(space.y() + tbarh);
|
|
|
|
space.setH(space.h() - tbarh);
|
|
|
|
} else if ((slit->direction() == Slit::Horizontal &&
|
2002-04-20 19:53:19 +00:00
|
|
|
(slit->placement() == Slit::BottomLeft ||
|
|
|
|
slit->placement() == Slit::BottomRight)) ||
|
|
|
|
slit->placement() == Slit::BottomCenter) {
|
2002-04-22 22:24:15 +00:00
|
|
|
// exclude bottom
|
2002-04-22 23:00:57 +00:00
|
|
|
if (!tbartop && (screen.size().h() - slit_y) < tbarh) {
|
|
|
|
space.setH(space.h() - tbarh);
|
|
|
|
} else {
|
|
|
|
space.setH(space.h() - (screen.size().h() - slit_y));
|
|
|
|
if (tbartop) {
|
|
|
|
space.setY(space.y() + tbarh);
|
|
|
|
space.setH(space.h() - tbarh);
|
|
|
|
}
|
|
|
|
}
|
2002-04-22 22:24:15 +00:00
|
|
|
} else {// if ((slit->direction() == Slit::Vertical &&
|
|
|
|
// (slit->placement() == Slit::TopLeft ||
|
|
|
|
// slit->placement() == Slit::BottomLeft)) ||
|
|
|
|
// slit->placement() == Slit::CenterLeft)
|
|
|
|
// exclude left
|
|
|
|
space.setX(slit_x + slit->area().w() +
|
|
|
|
screen.getBorderWidth() * 2);
|
|
|
|
space.setW(space.w() - (slit_x + slit->area().w() +
|
|
|
|
screen.getBorderWidth() * 2));
|
|
|
|
if (tbartop)
|
|
|
|
space.setY(space.y() + tbarh);
|
|
|
|
space.setH(space.h() - tbarh);
|
|
|
|
}
|
2002-04-20 19:53:19 +00:00
|
|
|
#else // !SLIT
|
2002-04-18 07:26:05 +00:00
|
|
|
Toolbar *toolbar = screen.getToolbar();
|
|
|
|
int tbarh = screen.hideToolbar() ? 0 :
|
|
|
|
toolbar->getExposedHeight() + screen.getBorderWidth() * 2;
|
|
|
|
switch (toolbar->placement()) {
|
|
|
|
case Toolbar::TopLeft:
|
|
|
|
case Toolbar::TopCenter:
|
|
|
|
case Toolbar::TopRight:
|
2002-04-20 19:53:19 +00:00
|
|
|
space.setY(toolbar->getExposedHeight());
|
|
|
|
space.setH(space.h() - toolbar->getExposedHeight());
|
2002-04-18 07:26:05 +00:00
|
|
|
break;
|
|
|
|
case Toolbar::BottomLeft:
|
|
|
|
case Toolbar::BottomCenter:
|
|
|
|
case Toolbar::BottomRight:
|
2002-04-20 19:53:19 +00:00
|
|
|
space.setH(space.h() - tbarh);
|
2002-04-18 07:26:05 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ASSERT(false); // unhandled placement
|
|
|
|
}
|
2002-04-20 19:53:19 +00:00
|
|
|
#endif // SLIT
|
2002-04-18 07:26:05 +00:00
|
|
|
|
2002-04-21 18:52:28 +00:00
|
|
|
const Size window_size(win->area().w()+screen.getBorderWidth() * 4,
|
|
|
|
win->area().h()+screen.getBorderWidth() * 4);
|
2002-04-16 01:10:53 +00:00
|
|
|
Point *place = NULL;
|
2002-04-21 17:54:51 +00:00
|
|
|
LinkedListIterator<OpenboxWindow> it(windowList);
|
2002-04-14 01:11:51 +00:00
|
|
|
|
2002-04-17 08:30:55 +00:00
|
|
|
switch (screen.placementPolicy()) {
|
2002-04-16 01:10:53 +00:00
|
|
|
case BScreen::BestFitPlacement:
|
|
|
|
place = bestFitPlacement(window_size, space);
|
2002-04-14 01:11:51 +00:00
|
|
|
break;
|
2002-04-16 01:10:53 +00:00
|
|
|
case BScreen::RowSmartPlacement:
|
|
|
|
place = rowSmartPlacement(window_size, space);
|
2002-04-11 03:20:38 +00:00
|
|
|
break;
|
2002-04-16 01:10:53 +00:00
|
|
|
case BScreen::ColSmartPlacement:
|
|
|
|
place = colSmartPlacement(window_size, space);
|
2002-04-11 03:20:38 +00:00
|
|
|
break;
|
|
|
|
} // switch
|
|
|
|
|
2002-04-16 01:10:53 +00:00
|
|
|
if (place == NULL)
|
|
|
|
place = cascadePlacement(win);
|
|
|
|
|
|
|
|
ASSERT(place != NULL);
|
2002-04-21 17:54:51 +00:00
|
|
|
if (place->x() + window_size.w() > (signed) screen.size().w())
|
|
|
|
place->setX(((signed) screen.size().w() - window_size.w()) / 2);
|
|
|
|
if (place->y() + window_size.h() > (signed) screen.size().h())
|
|
|
|
place->setY(((signed) screen.size().h() - window_size.h()) / 2);
|
2002-04-16 01:10:53 +00:00
|
|
|
|
2002-04-21 18:52:28 +00:00
|
|
|
win->configure(place->x(), place->y(), win->area().w(), win->area().h());
|
2002-04-16 01:10:53 +00:00
|
|
|
delete place;
|
2002-04-15 02:37:18 +00:00
|
|
|
}
|