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
|
|
|
|
|
2002-05-11 05:33:49 +00:00
|
|
|
#ifdef HAVE_STDIO_H
|
|
|
|
# include <stdio.h>
|
|
|
|
#endif // HAVE_STDIO_H
|
|
|
|
|
|
|
|
#ifdef HAVE_STDLIB_H
|
|
|
|
# include <stdlib.h>
|
|
|
|
#endif // HAVE_STDLIB_H
|
|
|
|
|
|
|
|
#ifdef HAVE_STRING_H
|
|
|
|
# include <string.h>
|
|
|
|
#endif // HAVE_STRING_H
|
|
|
|
|
2002-04-11 03:20:38 +00:00
|
|
|
#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"
|
|
|
|
#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
|
|
|
|
2002-04-21 07:58:46 +00:00
|
|
|
#include <algorithm>
|
2002-05-07 15:34:46 +00:00
|
|
|
#include <vector>
|
|
|
|
typedef std::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-27 21:15:00 +00:00
|
|
|
cascade_x = cascade_y = 0;
|
2002-05-10 02:58:09 +00:00
|
|
|
_focused = (OpenboxWindow *) 0;
|
2002-04-11 03:20:38 +00:00
|
|
|
id = i;
|
|
|
|
|
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 clientmenu;
|
|
|
|
|
|
|
|
if (name)
|
|
|
|
delete [] name;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const int Workspace::addWindow(OpenboxWindow *w, Bool place) {
|
|
|
|
if (! w) return -1;
|
|
|
|
|
2002-04-27 21:15:00 +00:00
|
|
|
if (place) placeWindow(*w);
|
2002-04-11 03:20:38 +00:00
|
|
|
|
|
|
|
w->setWorkspace(id);
|
2002-05-11 05:33:49 +00:00
|
|
|
w->setWindowNumber(_windows.size());
|
2002-04-11 03:20:38 +00:00
|
|
|
|
2002-05-11 05:33:49 +00:00
|
|
|
_zorder.push_front(w);
|
|
|
|
_windows.push_back(w);
|
2002-04-11 03:20:38 +00:00
|
|
|
|
|
|
|
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;
|
|
|
|
|
2002-05-11 05:33:49 +00:00
|
|
|
_zorder.remove(w);
|
2002-04-11 03:20:38 +00:00
|
|
|
|
|
|
|
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-05-10 02:58:09 +00:00
|
|
|
screen.getOpenbox().focusWindow((OpenboxWindow *) 0);
|
2002-04-11 03:20:38 +00:00
|
|
|
} else {
|
2002-05-11 05:33:49 +00:00
|
|
|
if (_zorder.empty() || !_zorder.front()->setInputFocus()) {
|
2002-05-10 02:58:09 +00:00
|
|
|
screen.getOpenbox().focusWindow((OpenboxWindow *) 0);
|
2002-04-14 14:20:02 +00:00
|
|
|
XSetInputFocus(screen.getOpenbox().getXDisplay(),
|
|
|
|
screen.getToolbar()->getWindowID(),
|
2002-04-11 03:20:38 +00:00
|
|
|
RevertToParent, CurrentTime);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (lastfocus == w)
|
|
|
|
lastfocus = (OpenboxWindow *) 0;
|
|
|
|
|
2002-05-11 05:33:49 +00:00
|
|
|
_windows.erase(_windows.begin() + w->getWindowNumber());
|
2002-04-11 03:20:38 +00:00
|
|
|
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
|
|
|
|
2002-05-11 05:33:49 +00:00
|
|
|
winVect::iterator it = _windows.begin();
|
|
|
|
for (int i=0; it != _windows.end(); ++it, ++i)
|
|
|
|
(*it)->setWindowNumber(i);
|
2002-04-11 03:20:38 +00:00
|
|
|
|
2002-05-11 05:33:49 +00:00
|
|
|
return _windows.size();
|
2002-04-11 03:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-05-10 02:58:09 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-04-11 03:20:38 +00:00
|
|
|
void Workspace::showAll(void) {
|
2002-05-11 05:33:49 +00:00
|
|
|
winList::iterator it;
|
|
|
|
for (it = _zorder.begin(); it != _zorder.end(); ++it)
|
|
|
|
(*it)->deiconify(false, false);
|
2002-04-11 03:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Workspace::hideAll(void) {
|
2002-05-11 05:33:49 +00:00
|
|
|
winList::reverse_iterator it;
|
|
|
|
for (it = _zorder.rbegin(); it != _zorder.rend(); ++it)
|
|
|
|
if (!(*it)->isStuck())
|
|
|
|
(*it)->withdraw();
|
2002-04-11 03:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Workspace::removeAll(void) {
|
2002-05-11 05:33:49 +00:00
|
|
|
winVect::iterator it;
|
|
|
|
for (it = _windows.begin(); it != _windows.end(); ++it)
|
|
|
|
(*it)->iconify();
|
2002-04-11 03:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
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-05-11 05:33:49 +00:00
|
|
|
wkspc->_zorder.remove(win);
|
|
|
|
wkspc->_zorder.push_front(win);
|
2002-04-11 03:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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-05-11 05:33:49 +00:00
|
|
|
wkspc->_zorder.remove(win);
|
|
|
|
wkspc->_zorder.push_back(win);
|
2002-04-11 03:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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();
|
|
|
|
|
2002-05-11 05:33:49 +00:00
|
|
|
winVect::iterator it;
|
|
|
|
for (it = _windows.begin(); it != _windows.end(); ++it)
|
|
|
|
if ((*it)->validateClient())
|
|
|
|
(*it)->reconfigure();
|
2002-04-11 03:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
OpenboxWindow *Workspace::getWindow(int index) {
|
2002-05-11 05:33:49 +00:00
|
|
|
if ((index >= 0) && (index < _windows.size()))
|
|
|
|
return _windows[index];
|
2002-04-11 03:20:38 +00:00
|
|
|
else
|
2002-05-11 05:33:49 +00:00
|
|
|
return (OpenboxWindow *) 0;
|
2002-04-11 03:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const int Workspace::getCount(void) {
|
2002-05-11 05:33:49 +00:00
|
|
|
return _windows.size();
|
2002-04-11 03:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
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) {
|
2002-05-11 05:33:49 +00:00
|
|
|
while (!_windows.empty()) {
|
|
|
|
_windows[0]->restore();
|
|
|
|
_windows.erase(_windows.begin());
|
2002-04-11 03:20:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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-28 01:05:12 +00:00
|
|
|
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();
|
2002-04-21 07:58:46 +00:00
|
|
|
}
|
2002-04-28 01:05:12 +00:00
|
|
|
|
|
|
|
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();
|
2002-04-21 07:58:46 +00:00
|
|
|
}
|
|
|
|
|
2002-04-28 01:05:12 +00:00
|
|
|
bool rowLRBT(const Rect &first, const Rect &second){
|
|
|
|
if (first.y()+first.h()==second.y()+second.h())
|
|
|
|
return first.x()<second.x();
|
|
|
|
return first.y()+first.h()>second.y()+second.h();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool rowLRTB(const Rect &first, const Rect &second){
|
|
|
|
if (first.y()==second.y())
|
|
|
|
return first.x()<second.x();
|
|
|
|
return first.y()<second.y();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool colLRTB(const Rect &first, const Rect &second){
|
|
|
|
if (first.x()==second.x())
|
|
|
|
return first.y()<second.y();
|
2002-04-29 20:29:10 +00:00
|
|
|
return first.x()<second.x();
|
2002-04-28 01:05:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool colLRBT(const Rect &first, const Rect &second){
|
|
|
|
if (first.x()==second.x())
|
|
|
|
return first.y()+first.h()>second.y()+second.h();
|
2002-04-29 20:29:10 +00:00
|
|
|
return first.x()<second.x();
|
2002-04-21 07:58:46 +00:00
|
|
|
}
|
|
|
|
|
2002-04-28 01:05:12 +00:00
|
|
|
bool colRLTB(const Rect &first, const Rect &second){
|
|
|
|
if (first.x()+first.w()==second.x()+second.w())
|
|
|
|
return first.y()<second.y();
|
|
|
|
return first.x()+first.w()>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();
|
2002-04-21 07:58:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
rectList::const_iterator siter;
|
|
|
|
spaces.push_back(space); //initially the entire screen is free
|
|
|
|
|
|
|
|
//Find Free Spaces
|
2002-05-11 05:33:49 +00:00
|
|
|
for (winVect::iterator it = _windows.begin(); it != _windows.end(); ++it)
|
|
|
|
spaces = calcSpace((*it)->area().Inflate(screen.getBorderWidth() * 4),
|
2002-04-20 18:30:47 +00:00
|
|
|
spaces);
|
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-05-07 15:34:46 +00:00
|
|
|
best = &*siter;
|
2002-04-21 17:54:51 +00:00
|
|
|
else if(siter->w()*siter->h()<best->h()*best->w())
|
2002-05-07 15:34:46 +00:00
|
|
|
best = &*siter;
|
2002-04-21 03:36:09 +00:00
|
|
|
}
|
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-28 00:11:19 +00:00
|
|
|
Point *Workspace::underMousePlacement(const Size &win_size, const Rect &space) {
|
|
|
|
Point *pt;
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
2002-04-21 07:58:46 +00:00
|
|
|
|
|
|
|
Point *Workspace::rowSmartPlacement(const Size &win_size, const Rect &space) {
|
2002-04-28 01:05:12 +00:00
|
|
|
const Rect *best;
|
|
|
|
rectList spaces;
|
2002-04-21 07:58:46 +00:00
|
|
|
|
2002-04-28 01:05:12 +00:00
|
|
|
rectList::const_iterator siter;
|
|
|
|
spaces.push_back(space); //initially the entire screen is free
|
|
|
|
|
|
|
|
//Find Free Spaces
|
2002-05-11 05:33:49 +00:00
|
|
|
for (winVect::iterator it = _windows.begin(); it != _windows.end(); ++it)
|
|
|
|
spaces = calcSpace((*it)->area().Inflate(screen.getBorderWidth() * 4),
|
2002-04-28 01:05:12 +00:00
|
|
|
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())) {
|
2002-05-10 02:58:09 +00:00
|
|
|
best = &*siter;
|
2002-04-28 01:05:12 +00:00
|
|
|
break;
|
2002-04-21 07:58:46 +00:00
|
|
|
}
|
|
|
|
|
2002-04-28 01:05:12 +00:00
|
|
|
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
|
2002-04-21 07:58:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Point *Workspace::colSmartPlacement(const Size &win_size, const Rect &space) {
|
2002-04-28 01:05:12 +00:00
|
|
|
const Rect *best;
|
|
|
|
rectList spaces;
|
2002-04-21 07:58:46 +00:00
|
|
|
|
2002-04-28 01:05:12 +00:00
|
|
|
rectList::const_iterator siter;
|
|
|
|
spaces.push_back(space); //initially the entire screen is free
|
|
|
|
|
|
|
|
//Find Free Spaces
|
2002-05-11 05:33:49 +00:00
|
|
|
for (winVect::iterator it = _windows.begin(); it != _windows.end(); ++it)
|
|
|
|
spaces = calcSpace((*it)->area().Inflate(screen.getBorderWidth() * 4),
|
2002-04-28 01:05:12 +00:00
|
|
|
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);
|
2002-05-02 04:44:19 +00:00
|
|
|
|
2002-04-28 01:05:12 +00:00
|
|
|
//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())) {
|
2002-05-10 02:58:09 +00:00
|
|
|
best = &*siter;
|
2002-04-28 01:05:12 +00:00
|
|
|
break;
|
2002-04-21 07:58:46 +00:00
|
|
|
}
|
|
|
|
|
2002-04-28 01:05:12 +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()));
|
2002-04-21 07:58:46 +00:00
|
|
|
return pt;
|
2002-04-28 01:05:12 +00:00
|
|
|
} else
|
|
|
|
return NULL; //fall back to cascade
|
2002-04-21 07:58:46 +00:00
|
|
|
}
|
2002-04-14 01:11:51 +00:00
|
|
|
|
2002-04-16 01:10:53 +00:00
|
|
|
|
2002-04-27 21:15:00 +00:00
|
|
|
Point *const Workspace::cascadePlacement(const OpenboxWindow &win,
|
|
|
|
const Rect &space) {
|
|
|
|
if ((cascade_x + win.area().w() + screen.getBorderWidth() * 2 >
|
|
|
|
(space.x() + space.w())) ||
|
|
|
|
(cascade_y + win.area().h() + screen.getBorderWidth() * 2 >
|
|
|
|
(space.y() + space.h())))
|
|
|
|
cascade_x = cascade_y = 0;
|
|
|
|
if (cascade_x < space.x() || cascade_y < space.y()) {
|
|
|
|
cascade_x = space.x();
|
|
|
|
cascade_y = space.y();
|
|
|
|
}
|
2002-04-16 01:10:53 +00:00
|
|
|
|
2002-04-27 21:15:00 +00:00
|
|
|
Point *p = new Point(cascade_x, cascade_y);
|
|
|
|
cascade_x += win.getTitleHeight();
|
|
|
|
cascade_y += win.getTitleHeight();
|
|
|
|
return p;
|
2002-04-16 01:10:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-04-27 21:15:00 +00:00
|
|
|
void Workspace::placeWindow(OpenboxWindow &win) {
|
2002-04-27 19:25:20 +00:00
|
|
|
Rect space = screen.availableArea();
|
2002-04-28 00:11:19 +00:00
|
|
|
const Size window_size(win.area().w()+screen.getBorderWidth() * 2,
|
|
|
|
win.area().h()+screen.getBorderWidth() * 2);
|
2002-04-16 01:10:53 +00:00
|
|
|
Point *place = NULL;
|
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;
|
2002-04-28 00:11:19 +00:00
|
|
|
case BScreen::UnderMousePlacement:
|
2002-04-28 12:12:24 +00:00
|
|
|
case BScreen::ClickMousePlacement:
|
2002-04-28 00:11:19 +00:00
|
|
|
place = underMousePlacement(window_size, space);
|
|
|
|
break;
|
2002-04-11 03:20:38 +00:00
|
|
|
} // switch
|
|
|
|
|
2002-04-16 01:10:53 +00:00
|
|
|
if (place == NULL)
|
2002-04-27 21:15:00 +00:00
|
|
|
place = cascadePlacement(win, space);
|
2002-04-16 01:10:53 +00:00
|
|
|
|
|
|
|
ASSERT(place != NULL);
|
2002-04-27 21:15:00 +00:00
|
|
|
if (place->x() + window_size.w() > (signed) space.x() + space.w())
|
|
|
|
place->setX(((signed) space.x() + space.w() - window_size.w()) / 2);
|
|
|
|
if (place->y() + window_size.h() > (signed) space.y() + space.h())
|
|
|
|
place->setY(((signed) space.y() + space.h() - window_size.h()) / 2);
|
2002-04-16 01:10:53 +00:00
|
|
|
|
2002-04-27 21:15:00 +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
|
|
|
}
|