fluxbox/src/Workspace.cc

683 lines
21 KiB
C++
Raw Normal View History

2002-02-09 16:41:53 +00:00
// Workspace.cc for Fluxbox
2003-04-14 15:01:55 +00:00
// Copyright (c) 2001 - 2003 Henrik Kinnunen (fluxgen[at]users.sourceforge.net)
2002-02-09 16:41:53 +00:00
//
2001-12-11 20:47:02 +00:00
// Workspace.cc for Blackbox - an X11 Window manager
2003-01-12 18:08:05 +00:00
// Copyright (c) 1997 - 2000 Brad Hughes (bhughes at tcac.net)
2001-12-11 20:47:02 +00:00
//
// 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,
2003-01-12 18:08:05 +00:00
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
2001-12-11 20:47:02 +00:00
// 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.
2003-12-18 18:03:23 +00:00
// $Id: Workspace.cc,v 1.88 2003/12/18 18:03:22 fluxgen Exp $
2002-01-20 02:08:12 +00:00
2002-08-11 22:35:40 +00:00
#include "Workspace.hh"
2001-12-11 20:47:02 +00:00
#include "I18n.hh"
2001-12-11 20:47:02 +00:00
#include "fluxbox.hh"
#include "Screen.hh"
#include "Window.hh"
2003-04-14 15:01:55 +00:00
#include "WinClient.hh"
2003-05-19 15:32:47 +00:00
#include "FbWinFrame.hh"
2003-06-24 18:34:01 +00:00
#include "MenuItem.hh"
2001-12-11 20:47:02 +00:00
#include "FbTk/StringUtil.hh"
2002-08-11 22:35:40 +00:00
// use GNU extensions
2003-08-04 16:28:10 +00:00
#ifndef _GNU_SOURCE
#define _GNU_SOURCE
2002-08-11 22:35:40 +00:00
#endif // _GNU_SOURCE
#ifdef HAVE_CONFIG_H
2002-10-13 21:52:00 +00:00
#include "config.h"
2002-08-11 22:35:40 +00:00
#endif // HAVE_CONFIG_H
2001-12-11 20:47:02 +00:00
2002-01-20 02:08:12 +00:00
#include <X11/Xlib.h>
#include <X11/Xatom.h>
2002-08-11 22:35:40 +00:00
#include <cstdio>
#include <cstring>
2002-02-08 14:06:35 +00:00
#include <algorithm>
2002-02-10 19:05:12 +00:00
#include <iostream>
2003-04-14 15:01:55 +00:00
#include <iterator>
2002-08-11 22:35:40 +00:00
2002-02-10 19:05:12 +00:00
using namespace std;
2002-02-08 14:06:35 +00:00
namespace { // anonymous
int countTransients(const WinClient &client) {
if (client.transientList().empty())
2002-12-01 13:42:15 +00:00
return 0;
// now go throu the entire tree and count transients
size_t ret = client.transientList().size();
WinClient::TransientList::const_iterator it = client.transientList().begin();
WinClient::TransientList::const_iterator it_end = client.transientList().end();
2002-12-01 13:42:15 +00:00
for (; it != it_end; ++it)
ret += countTransients(*(*it));
return ret;
}
2003-04-14 15:01:55 +00:00
class ClientMenuItem:public FbTk::MenuItem {
public:
ClientMenuItem(WinClient &client):
2003-12-03 23:05:29 +00:00
FbTk::MenuItem(client.title().c_str(), client.fbwindow() ? &client.fbwindow()->menu() : 0),
m_client(client) {
2003-04-14 15:01:55 +00:00
}
void click(int button, int time) {
if (m_client.fbwindow() == 0)
return;
FluxboxWindow &win = *m_client.fbwindow();
win.screen().changeWorkspaceID(win.workspaceNumber());
2003-04-14 15:01:55 +00:00
win.setCurrentClient(m_client);
win.raiseAndFocus();
}
const std::string &label() const { return m_client.title(); }
bool isSelected() const {
if (m_client.fbwindow() == 0)
return false;
if (m_client.fbwindow()->isFocused() == false)
return false;
return (&(m_client.fbwindow()->winClient()) == &m_client);
}
private:
2003-04-14 15:01:55 +00:00
WinClient &m_client;
};
};
2002-08-11 22:35:40 +00:00
Workspace::GroupList Workspace::m_groups;
2002-05-07 13:57:09 +00:00
Workspace::Workspace(BScreen &scrn, FbTk::MultLayers &layermanager,
const std::string &name, unsigned int id):
2003-05-11 15:35:03 +00:00
m_screen(scrn),
2003-05-11 17:14:41 +00:00
m_lastfocus(0),
2003-12-18 18:03:23 +00:00
m_clientmenu(scrn.menuTheme(), scrn.imageControl(),
*scrn.layerManager().getLayer(Fluxbox::instance()->getMenuLayer())),
m_layermanager(layermanager),
m_name(name),
m_id(id) {
2001-12-11 20:47:02 +00:00
m_cascade_x = new int[scrn.numHeads() + 1];
m_cascade_y = new int[scrn.numHeads() + 1];
for (int i=0; i < scrn.numHeads()+1; i++) {
m_cascade_x[i] = 32 + scrn.getHeadX(i);
m_cascade_y[i] = 32 + scrn.getHeadY(i);
}
2003-12-18 18:03:23 +00:00
menu().setInternalMenu();
setName(name);
2001-12-11 20:47:02 +00:00
}
2002-01-20 02:08:12 +00:00
Workspace::~Workspace() {
delete [] m_cascade_x;
delete [] m_cascade_y;
2001-12-11 20:47:02 +00:00
}
2002-09-21 16:02:22 +00:00
void Workspace::setLastFocusedWindow(FluxboxWindow *win) {
2002-12-01 13:42:15 +00:00
// make sure we have this window in the list
if (std::find(m_windowlist.begin(), m_windowlist.end(), win) != m_windowlist.end())
2003-05-11 17:14:41 +00:00
m_lastfocus = win;
2002-12-01 13:42:15 +00:00
else
2003-05-11 17:14:41 +00:00
m_lastfocus = 0;
2002-09-21 16:02:22 +00:00
}
2001-12-11 20:47:02 +00:00
2003-06-24 14:57:54 +00:00
void Workspace::addWindow(FluxboxWindow &w, bool place) {
2003-04-14 15:01:55 +00:00
// we don't need to add a window that already exist in our list
if (find(m_windowlist.begin(), m_windowlist.end(), &w) !=
m_windowlist.end())
2003-06-24 14:57:54 +00:00
return;
2002-12-01 13:42:15 +00:00
2003-04-14 15:01:55 +00:00
w.setWorkspace(m_id);
2003-12-07 17:49:07 +00:00
// attach signals
w.titleSig().attach(this);
2003-04-14 15:01:55 +00:00
2002-12-01 13:42:15 +00:00
if (place)
placeWindow(w);
2003-04-14 15:01:55 +00:00
m_windowlist.push_back(&w);
updateClientmenu();
if (!w.isStuck()) {
FluxboxWindow::ClientList::iterator client_it =
w.clientList().begin();
FluxboxWindow::ClientList::iterator client_it_end =
w.clientList().end();
for (; client_it != client_it_end; ++client_it)
2003-05-11 15:35:03 +00:00
screen().updateNetizenWindowAdd((*client_it)->window(), m_id);
}
2001-12-11 20:47:02 +00:00
}
int Workspace::removeWindow(FluxboxWindow *w) {
2003-04-14 15:01:55 +00:00
2002-12-01 13:42:15 +00:00
if (w == 0)
return -1;
2003-12-07 17:49:07 +00:00
// detach from signals
w->titleSig().detach(this);
2003-05-11 17:14:41 +00:00
if (m_lastfocus == w) {
m_lastfocus = 0;
2002-12-01 13:42:15 +00:00
}
if (w->isFocused()) {
2003-05-11 15:35:03 +00:00
if (screen().isSloppyFocus()) {
Fluxbox::instance()->revertFocus(screen());
2002-12-01 13:42:15 +00:00
} else {
// go up the transient tree looking for a focusable window
WinClient *client = 0;
if (w->numClients() > 0) {
client = w->winClient().transientFor();
while (client) {
if (client->fbwindow() &&
client->fbwindow() != w && // can't be this window
client->fbwindow()->isVisible() &&
client->fbwindow()->setCurrentClient(*client, true))
break;
client = client->transientFor();
}
2002-12-01 13:42:15 +00:00
}
if (client == 0) // we were unsuccessful
2003-05-11 15:35:03 +00:00
Fluxbox::instance()->revertFocus(screen());
2002-12-01 13:42:15 +00:00
}
}
2001-12-11 20:47:02 +00:00
// we don't remove it from the layermanager, as it may be being moved
2003-04-14 15:01:55 +00:00
Windows::iterator erase_it = remove(m_windowlist.begin(),
m_windowlist.end(), w);
if (erase_it != m_windowlist.end())
m_windowlist.erase(erase_it);
2001-12-11 20:47:02 +00:00
updateClientmenu();
2003-04-14 15:01:55 +00:00
2003-05-11 17:14:41 +00:00
if (m_lastfocus == w || m_windowlist.empty())
m_lastfocus = 0;
2003-04-14 15:01:55 +00:00
2003-08-19 16:16:28 +00:00
if (!w->isStuck()) {
FluxboxWindow::ClientList::iterator client_it =
w->clientList().begin();
FluxboxWindow::ClientList::iterator client_it_end =
w->clientList().end();
for (; client_it != client_it_end; ++client_it)
2003-05-11 15:35:03 +00:00
screen().updateNetizenWindowDel((*client_it)->window());
}
2002-12-01 13:42:15 +00:00
return m_windowlist.size();
2001-12-11 20:47:02 +00:00
}
2003-01-13 12:59:26 +00:00
void Workspace::showAll() {
Windows::iterator it = m_windowlist.begin();
Windows::iterator it_end = m_windowlist.end();
2003-08-24 11:19:45 +00:00
for (; it != it_end; ++it)
2002-12-01 13:42:15 +00:00
(*it)->deiconify(false, false);
2001-12-11 20:47:02 +00:00
}
2003-01-13 12:59:26 +00:00
void Workspace::hideAll() {
Windows::reverse_iterator it = m_windowlist.rbegin();
Windows::reverse_iterator it_end = m_windowlist.rend();
2002-12-01 13:42:15 +00:00
for (; it != it_end; ++it) {
if (! (*it)->isStuck())
(*it)->withdraw();
}
2001-12-11 20:47:02 +00:00
}
2003-01-13 12:59:26 +00:00
void Workspace::removeAll() {
2002-12-01 13:42:15 +00:00
Windows::iterator it = m_windowlist.begin();
Windows::const_iterator it_end = m_windowlist.end();
2003-08-24 11:19:45 +00:00
for (; it != it_end; ++it)
2002-12-01 13:42:15 +00:00
(*it)->iconify();
2001-12-11 20:47:02 +00:00
}
2002-11-03 15:02:21 +00:00
void Workspace::reconfigure() {
2003-12-18 18:03:23 +00:00
menu().reconfigure();
2002-12-01 13:42:15 +00:00
Windows::iterator it = m_windowlist.begin();
Windows::iterator it_end = m_windowlist.end();
for (; it != it_end; ++it) {
if ((*it)->winClient().validateClient())
2002-12-01 13:42:15 +00:00
(*it)->reconfigure();
}
2001-12-11 20:47:02 +00:00
}
2003-05-11 17:14:41 +00:00
int Workspace::numberOfWindows() const {
2002-12-01 13:42:15 +00:00
return m_windowlist.size();
2001-12-11 20:47:02 +00:00
}
2002-08-11 22:35:40 +00:00
namespace {
// helper class for checkGrouping
class FindInGroup {
public:
2002-12-01 13:42:15 +00:00
FindInGroup(const FluxboxWindow &w):m_w(w) { }
2003-08-24 11:19:45 +00:00
bool operator ()(const string &name) const {
2003-06-15 19:34:34 +00:00
return (name == m_w.winClient().getWMClassName());
2002-12-01 13:42:15 +00:00
}
2002-08-11 22:35:40 +00:00
private:
2002-12-01 13:42:15 +00:00
const FluxboxWindow &m_w;
2002-08-11 22:35:40 +00:00
};
};
//Note: this function doesn't check if the window is groupable
bool Workspace::checkGrouping(FluxboxWindow &win) {
2003-06-15 19:34:34 +00:00
if (win.numClients() == 0)
return false;
2002-08-11 22:35:40 +00:00
#ifdef DEBUG
2003-06-15 19:34:34 +00:00
cerr<<__FILE__<<"("<<__LINE__<<"): Checking grouping. ("<<win.title()<<")"<<endl;
2002-08-11 22:35:40 +00:00
#endif // DEBUG
2002-12-01 13:42:15 +00:00
if (!win.isGroupable()) { // make sure this window can hold a tab
2002-10-22 14:47:22 +00:00
#ifdef DEBUG
2002-12-01 13:42:15 +00:00
cerr<<__FILE__<<"("<<__LINE__<<"): window can't use a tab"<<endl;
2002-10-22 14:47:22 +00:00
#endif // DEBUG
return false;
2002-12-01 13:42:15 +00:00
}
2003-06-15 19:34:34 +00:00
string instance_name = win.winClient().getWMClassName();
2002-12-01 13:42:15 +00:00
// go throu every group and search for matching win instancename
GroupList::iterator g(m_groups.begin());
GroupList::iterator g_end(m_groups.end());
for (; g != g_end; ++g) {
Group::iterator name((*g).begin());
Group::iterator name_end((*g).end());
for (; name != name_end; ++name) {
2003-06-15 19:34:34 +00:00
if ((*name) != instance_name)
2002-12-01 13:42:15 +00:00
continue;
// find a window with the specific name
Windows::iterator wit(m_windowlist.begin());
Windows::iterator wit_end(m_windowlist.end());
for (; wit != wit_end; ++wit) {
2002-08-11 22:35:40 +00:00
#ifdef DEBUG
2003-06-15 19:34:34 +00:00
cerr<<__FILE__<<" check group with : "<<(*wit)->winClient().getWMClassName()<<endl;
2002-08-11 22:35:40 +00:00
#endif // DEBUG
if (find_if((*g).begin(),
(*g).end(),
FindInGroup(*(*wit))) != (*g).end()) {
2002-12-01 13:42:15 +00:00
// make sure the window is groupable
if ( !(*wit)->isGroupable() && (*wit)->winClient().fbwindow() == &win)
2002-12-01 13:42:15 +00:00
break; // try next name
#ifdef DEBUG
cerr<<__FILE__<<"("<<__FUNCTION__<<"): window ("<<*wit<<") attaching window ("<<&win<<")"<<endl;
#endif // DEBUG
(*wit)->attachClient(win.winClient());
return true; // grouping done
2003-06-15 19:34:34 +00:00
2002-12-01 13:42:15 +00:00
}
2003-06-15 19:34:34 +00:00
2002-12-01 13:42:15 +00:00
}
}
}
return false;
2002-08-11 22:35:40 +00:00
}
bool Workspace::loadGroups(const std::string &filename) {
string real_filename = filename;
FbTk::StringUtil::removeTrailingWhitespace(real_filename);
ifstream infile(real_filename.c_str());
2002-12-01 13:42:15 +00:00
if (!infile)
return false;
2002-12-01 13:42:15 +00:00
m_groups.clear(); // erase old groups
// load new groups
while (!infile.eof()) {
string line;
vector<string> names;
getline(infile, line);
2003-04-26 18:58:30 +00:00
FbTk::StringUtil::stringtok(names, line);
2002-12-01 13:42:15 +00:00
m_groups.push_back(names);
}
2002-08-11 22:35:40 +00:00
2002-12-01 13:42:15 +00:00
return true;
2002-08-11 22:35:40 +00:00
}
2003-12-07 17:49:07 +00:00
void Workspace::update(FbTk::Subject *subj) {
2003-12-18 18:03:23 +00:00
menu().update();
2001-12-11 20:47:02 +00:00
}
2002-08-11 22:35:40 +00:00
void Workspace::setName(const std::string &name) {
2002-12-01 13:42:15 +00:00
if (name.size() != 0) {
m_name = name;
} else { //if name == 0 then set default name from nls
char tname[128];
sprintf(tname, I18n::instance()->
2003-08-04 16:28:10 +00:00
getMessage(FBNLS::WorkspaceSet,
2003-04-14 15:01:55 +00:00
FBNLS::WorkspaceDefaultNameFormat,
"Workspace %d"), m_id + 1); //m_id starts at 0
2002-12-01 13:42:15 +00:00
m_name = tname;
}
2001-12-11 20:47:02 +00:00
2003-05-11 15:35:03 +00:00
screen().updateWorkspaceNamesAtom();
2001-12-11 20:47:02 +00:00
2003-12-18 18:03:23 +00:00
menu().setLabel(m_name.c_str());
menu().update();
2001-12-11 20:47:02 +00:00
}
2003-01-13 12:59:26 +00:00
/**
Calls restore on all windows
on the workspace and then
clears the m_windowlist
*/
void Workspace::shutdown() {
2002-12-01 13:42:15 +00:00
// note: when the window dies it'll remove it self from the list
while (!m_windowlist.empty()) {
2003-04-14 15:01:55 +00:00
// restore with remap on all clients in that window
m_windowlist.back()->restore(true);
//delete window (the window removes it self from m_windowlist)
delete m_windowlist.back();
2002-12-01 13:42:15 +00:00
}
2001-12-11 20:47:02 +00:00
}
void Workspace::updateClientmenu() {
2003-04-14 15:01:55 +00:00
// remove all items and then add them again
2003-12-18 18:03:23 +00:00
menu().removeAll();
2003-04-14 15:01:55 +00:00
// for each fluxboxwindow add every client in them to our clientlist
Windows::iterator win_it = m_windowlist.begin();
Windows::iterator win_it_end = m_windowlist.end();
for (; win_it != win_it_end; ++win_it) {
2003-04-14 15:01:55 +00:00
// add every client in this fluxboxwindow to menu
FluxboxWindow::ClientList::iterator client_it =
(*win_it)->clientList().begin();
FluxboxWindow::ClientList::iterator client_it_end =
(*win_it)->clientList().end();
2003-04-15 12:22:52 +00:00
for (; client_it != client_it_end; ++client_it)
2003-12-18 18:03:23 +00:00
menu().insert(new ClientMenuItem(*(*client_it)));
}
2003-04-15 12:22:52 +00:00
2003-12-18 18:03:23 +00:00
menu().update();
}
2001-12-11 20:47:02 +00:00
2003-04-14 15:01:55 +00:00
void Workspace::placeWindow(FluxboxWindow &win) {
bool placed = false;
2003-01-12 18:08:05 +00:00
// restrictions
int head = (signed) screen().getCurrHead();
int head_left = (signed) screen().maxLeft(head);
int head_right = (signed) screen().maxRight(head);
int head_top = (signed) screen().maxTop(head);
int head_bot = (signed) screen().maxBottom(head);
int place_x = head_left, place_y = head_top, change_x = 1, change_y = 1;
2002-12-01 13:42:15 +00:00
2003-05-11 15:35:03 +00:00
if (screen().getColPlacementDirection() == BScreen::BOTTOMTOP)
2002-12-01 13:42:15 +00:00
change_y = -1;
2003-05-11 15:35:03 +00:00
if (screen().getRowPlacementDirection() == BScreen::RIGHTLEFT)
2002-12-01 13:42:15 +00:00
change_x = -1;
2003-05-15 11:17:29 +00:00
int win_w = win.width() + win.fbWindow().borderWidth()*2,
win_h = win.height() + win.fbWindow().borderWidth()*2;
2003-04-25 11:22:40 +00:00
2002-12-01 13:42:15 +00:00
2003-04-14 15:01:55 +00:00
int test_x, test_y, curr_x, curr_y, curr_w, curr_h;
2002-12-01 13:42:15 +00:00
2003-05-11 15:35:03 +00:00
switch (screen().getPlacementPolicy()) {
case BScreen::UNDERMOUSEPLACEMENT: {
int root_x, root_y, ignore_i;
unsigned int ignore_ui;
Window ignore_w;
2003-04-25 11:22:40 +00:00
XQueryPointer(FbTk::App::instance()->display(),
2003-05-11 15:35:03 +00:00
screen().rootWindow().window(), &ignore_w,
2003-04-25 11:22:40 +00:00
&ignore_w, &root_x, &root_y,
&ignore_i, &ignore_i, &ignore_ui);
test_x = root_x - (win_w / 2);
test_y = root_y - (win_h / 2);
// keep the window inside the screen
if (test_x < head_left)
test_x = head_left;
if (test_x > head_right)
test_x = head_right;
if (test_y < head_top)
test_y = head_top;
if (test_y > head_bot)
test_y = head_bot;
place_x = test_x;
place_y = test_y;
placed = true;
break;
} // end case UNDERMOUSEPLACEMENT
2002-12-01 13:42:15 +00:00
case BScreen::ROWSMARTPLACEMENT: {
int next_x, next_y;
bool top_bot = screen().getColPlacementDirection() == BScreen::TOPBOTTOM;
bool left_right = screen().getRowPlacementDirection() == BScreen::LEFTRIGHT;
2003-04-14 15:01:55 +00:00
if (top_bot)
test_y = head_top;
else
test_y = head_bot - win_h;
2003-04-14 15:01:55 +00:00
while (!placed &&
(top_bot ? test_y + win_h < head_bot
: test_y > head_top)) {
2003-04-14 15:01:55 +00:00
if (left_right)
test_x = head_left;
else
test_x = head_right - win_w;
2003-04-14 15:01:55 +00:00
if (top_bot)
next_y = head_right; // it will get shrunk
else
next_y = head_left;
2002-03-19 14:30:43 +00:00
while (!placed &&
(left_right ? test_x + win_w < head_right
2003-08-04 16:28:10 +00:00
: test_x > head_left)) {
2003-04-14 15:01:55 +00:00
placed = true;
next_x = test_x + change_x;
2003-04-14 15:01:55 +00:00
Windows::iterator win_it = m_windowlist.begin();
const Windows::iterator win_it_end = m_windowlist.end();
2003-04-14 15:01:55 +00:00
for (; win_it != win_it_end && placed; ++win_it) {
FluxboxWindow &window = **win_it;
2003-05-15 11:17:29 +00:00
curr_x = window.x();
curr_y = window.y();
curr_w = window.width() + window.fbWindow().borderWidth()*2;
curr_h = window.height() + window.fbWindow().borderWidth()*2;
if (curr_x < test_x + win_w &&
curr_x + curr_w > test_x &&
curr_y < test_y + win_h &&
curr_y + curr_h > test_y) {
// this window is in the way
2003-04-14 15:01:55 +00:00
placed = false;
// we find the next x that we can go to (a window will be in the way
// all the way to its far side)
if (left_right) {
if (curr_x + curr_w > next_x)
next_x = curr_x + curr_w;
} else {
if (curr_x - win_w < next_x)
next_x = curr_x - win_w;
}
// but we can only go to the nearest y, since that is where the
// next time current windows in the way will change
if (top_bot) {
if (curr_y + curr_h < next_y)
next_y = curr_y + curr_h;
} else {
if (curr_y - win_h > next_y)
next_y = curr_y - win_h;
}
}
}
2002-12-01 13:42:15 +00:00
if (placed) {
place_x = test_x;
place_y = test_y;
2002-12-01 13:42:15 +00:00
break;
}
2002-12-01 13:42:15 +00:00
test_x = next_x;
2003-04-14 15:01:55 +00:00
} // end while
2002-12-01 13:42:15 +00:00
test_y = next_y;
2003-04-14 15:01:55 +00:00
} // end while
2002-12-01 13:42:15 +00:00
2003-04-14 15:01:55 +00:00
break;
} // end case ROWSMARTPLACEMENT
2002-12-01 13:42:15 +00:00
case BScreen::COLSMARTPLACEMENT: {
int next_x, next_y;
bool top_bot = screen().getColPlacementDirection() == BScreen::TOPBOTTOM;
bool left_right = screen().getRowPlacementDirection() == BScreen::LEFTRIGHT;
2003-04-14 15:01:55 +00:00
if (left_right)
test_x = head_left;
else
test_x = head_right - win_w;
2002-12-01 13:42:15 +00:00
while (!placed &&
(left_right ? test_x + win_w < head_right
2003-08-04 16:28:10 +00:00
: test_x > head_left)) {
if (left_right)
next_x = head_right; // it will get shrunk
else
next_x = head_left;
if (top_bot)
test_y = head_top;
else
test_y = head_bot - win_h;
2002-12-01 13:42:15 +00:00
while (!placed &&
(top_bot ? test_y + win_h < head_bot
: test_y > head_top)) {
placed = True;
next_y = test_y + change_y;
Windows::iterator it = m_windowlist.begin();
Windows::iterator it_end = m_windowlist.end();
for (; it != it_end && placed; ++it) {
2003-05-15 11:17:29 +00:00
curr_x = (*it)->x();
curr_y = (*it)->y();
curr_w = (*it)->width() + (*it)->fbWindow().borderWidth()*2;
curr_h = (*it)->height() + (*it)->fbWindow().borderWidth()*2;
if (curr_x < test_x + win_w &&
curr_x + curr_w > test_x &&
curr_y < test_y + win_h &&
curr_y + curr_h > test_y) {
// this window is in the way
placed = False;
// we find the next y that we can go to (a window will be in the way
// all the way to its bottom)
if (top_bot) {
if (curr_y + curr_h > next_y)
next_y = curr_y + curr_h;
} else {
if (curr_y - win_h < next_y)
next_y = curr_y - win_h;
}
// but we can only go to the nearest x, since that is where the
// next time current windows in the way will change
if (left_right) {
if (curr_x + curr_w < next_x)
next_x = curr_x + curr_w;
} else {
if (curr_x - win_w > next_x)
next_x = curr_x - win_w;
}
}
2002-12-01 13:42:15 +00:00
}
if (placed) {
place_x = test_x;
place_y = test_y;
}
2002-12-01 13:42:15 +00:00
test_y = next_y;
2003-04-14 15:01:55 +00:00
} // end while
2002-12-01 13:42:15 +00:00
test_x = next_x;
2003-04-14 15:01:55 +00:00
} // end while
break;
} // end COLSMARTPLACEMENT
2002-12-01 13:42:15 +00:00
}
2002-12-01 13:42:15 +00:00
// cascade placement or smart placement failed
if (! placed) {
2003-04-14 15:01:55 +00:00
if ((m_cascade_x[head] > ((head_left + head_right) / 2)) ||
(m_cascade_y[head] > ((head_top + head_bot) / 2))) {
m_cascade_x[head] = head_left + 32;
m_cascade_y[head] = head_top + 32;
}
2003-04-14 15:01:55 +00:00
place_x = m_cascade_x[head];
place_y = m_cascade_y[head];
2003-04-14 15:01:55 +00:00
// just one borderwidth, so they can share a borderwidth (looks better)
int titlebar_height = win.titlebarHeight() + win.fbWindow().borderWidth();
if (titlebar_height < 4) // make sure it is not insignificant
titlebar_height = 32;
m_cascade_x[head] += titlebar_height;
m_cascade_y[head] += titlebar_height;
}
2001-12-11 20:47:02 +00:00
if (place_x + win_w > head_right)
place_x = (head_right - win_w) / 2;
if (place_y + win_h > head_bot)
place_y = (head_bot - win_h) / 2;
2001-12-11 20:47:02 +00:00
2003-04-14 15:01:55 +00:00
2003-05-11 13:36:12 +00:00
win.moveResize(place_x, place_y, win.width(), win.height());
2001-12-11 20:47:02 +00:00
}