2010-04-25 16:43:14 +00:00
|
|
|
/********************************************************************
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
|
|
|
Copyright (C) 2009 Nikhil Marathe <nsm.nikhil@gmail.com>
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*********************************************************************/
|
|
|
|
|
|
|
|
// all the tiling related code that is extensions to existing KWin classes
|
|
|
|
// Includes Workspace for now
|
|
|
|
|
|
|
|
#include "client.h"
|
|
|
|
#include "workspace.h"
|
|
|
|
#include "tile.h"
|
|
|
|
#include "tilinglayout.h"
|
|
|
|
#include "tilinglayoutfactory.h"
|
|
|
|
|
|
|
|
#include <knotification.h>
|
|
|
|
#include <klocale.h>
|
2010-06-14 15:17:17 +00:00
|
|
|
#include <kwindowinfo.h>
|
|
|
|
#include <kwindowsystem.h>
|
2010-04-25 16:43:14 +00:00
|
|
|
#include "lib/kdecoration.h"
|
|
|
|
|
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
2010-05-05 12:09:49 +00:00
|
|
|
bool Workspace::tilingEnabled() const
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2010-05-05 12:09:49 +00:00
|
|
|
return tilingEnabled_;
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2010-04-25 16:43:14 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
void Workspace::setTilingEnabled(bool tiling)
|
|
|
|
{
|
|
|
|
if (tilingEnabled() == tiling) return;
|
2010-09-12 06:06:23 +00:00
|
|
|
|
2010-05-05 12:09:49 +00:00
|
|
|
tilingEnabled_ = tiling;
|
2010-04-25 16:43:14 +00:00
|
|
|
|
2010-09-12 06:06:23 +00:00
|
|
|
KSharedConfig::Ptr _config = KGlobal::config();
|
2011-01-30 14:34:42 +00:00
|
|
|
KConfigGroup config(_config, "Windows");
|
2010-09-12 06:06:23 +00:00
|
|
|
config.writeEntry("TilingOn", tilingEnabled_);
|
|
|
|
config.sync();
|
|
|
|
options->tilingOn = tilingEnabled_;
|
2011-01-30 14:34:42 +00:00
|
|
|
options->tilingLayout = static_cast<TilingLayoutFactory::Layouts>(config.readEntry("TilingDefaultLayout", 0));
|
|
|
|
options->tilingRaisePolicy = config.readEntry("TilingRaisePolicy", 0);
|
|
|
|
|
|
|
|
if (tilingEnabled_) {
|
|
|
|
tilingLayouts.resize(numberOfDesktops() + 1);
|
|
|
|
foreach (Client * c, stackingOrder()) {
|
|
|
|
createTile(c);
|
2010-04-25 16:43:14 +00:00
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
} else {
|
|
|
|
qDeleteAll(tilingLayouts);
|
2010-04-25 16:43:14 +00:00
|
|
|
tilingLayouts.clear();
|
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2010-04-25 16:43:14 +00:00
|
|
|
|
|
|
|
void Workspace::slotToggleTiling()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
|
|
|
if (tilingEnabled()) {
|
|
|
|
setTilingEnabled(false);
|
|
|
|
QString message = i18n("Tiling Disabled");
|
|
|
|
KNotification::event("tilingdisabled", message, QPixmap(), NULL, KNotification::CloseOnTimeout, KComponentData("kwin"));
|
|
|
|
} else {
|
|
|
|
setTilingEnabled(true);
|
|
|
|
QString message = i18n("Tiling Enabled");
|
|
|
|
KNotification::event("tilingenabled", message, QPixmap(), NULL, KNotification::CloseOnTimeout, KComponentData("kwin"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Workspace::createTile(Client *c)
|
|
|
|
{
|
|
|
|
if (c == NULL)
|
2010-05-05 11:46:19 +00:00
|
|
|
return;
|
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
if (c->desktop() < 0 || c->desktop() >= tilingLayouts.size()) return;
|
2010-04-25 16:43:14 +00:00
|
|
|
|
|
|
|
kDebug(1212) << "Now tiling " << c->caption();
|
2011-01-30 14:34:42 +00:00
|
|
|
if (!tilingEnabled() || !tileable(c))
|
2010-04-25 16:43:14 +00:00
|
|
|
return;
|
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
Tile *t = new Tile(c, clientArea(PlacementArea, c));
|
|
|
|
if (!tileable(c)) {
|
2010-04-25 16:43:14 +00:00
|
|
|
kDebug(1212) << c->caption() << "is not tileable";
|
|
|
|
t->floatTile();
|
|
|
|
}
|
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
if (!tilingLayouts.value(c->desktop())) {
|
|
|
|
tilingLayouts[c->desktop()] = TilingLayoutFactory::createLayout(TilingLayoutFactory::DefaultLayout, this);
|
2010-04-25 16:43:14 +00:00
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
tilingLayouts[c->desktop()]->addTile(t);
|
|
|
|
tilingLayouts[c->desktop()]->commit();
|
|
|
|
}
|
2010-04-25 16:43:14 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
void Workspace::removeTile(Client *c)
|
|
|
|
{
|
|
|
|
if (tilingLayouts[ c->desktop()])
|
|
|
|
tilingLayouts[ c->desktop()]->removeTile(c);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Workspace::tileable(Client *c)
|
|
|
|
{
|
2010-04-25 16:43:14 +00:00
|
|
|
|
2010-06-14 15:17:17 +00:00
|
|
|
kDebug(1212) << c->caption();
|
2011-01-30 14:34:42 +00:00
|
|
|
KWindowInfo info = KWindowSystem::windowInfo(c->window(), -1U, NET::WM2WindowClass);
|
|
|
|
kDebug(1212) << "WINDOW CLASS IS " << info.windowClassClass();
|
|
|
|
if (info.windowClassClass() == "Plasma-desktop") {
|
2010-04-25 16:43:14 +00:00
|
|
|
return false;
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2010-06-14 15:17:17 +00:00
|
|
|
// TODO: if application specific settings
|
|
|
|
// to ignore, put them here
|
2010-04-25 16:43:14 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
if (!c->isNormalWindow()) {
|
|
|
|
return false;
|
|
|
|
}
|
2010-04-25 16:43:14 +00:00
|
|
|
|
2010-05-05 12:29:35 +00:00
|
|
|
// 0 means tile it, if we get 1 (floating), don't tile
|
2011-01-30 14:34:42 +00:00
|
|
|
if (c->rules()->checkTilingOption(0) == 1) {
|
2010-05-05 12:29:35 +00:00
|
|
|
return false;
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2010-05-05 12:29:35 +00:00
|
|
|
|
2010-06-14 15:17:17 +00:00
|
|
|
kDebug() << "Tiling" << c;
|
2010-04-25 16:43:14 +00:00
|
|
|
return true;
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2010-04-25 16:43:14 +00:00
|
|
|
|
|
|
|
void Workspace::belowCursor()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
}
|
2010-04-25 16:43:14 +00:00
|
|
|
|
|
|
|
Tile* Workspace::getNiceTile() const
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
|
|
|
if (!tilingEnabled()) return NULL;
|
|
|
|
if (!tilingLayouts.value(activeClient()->desktop())) return NULL;
|
|
|
|
|
|
|
|
return tilingLayouts[ activeClient()->desktop()]->findTile(activeClient());
|
2010-04-25 16:43:14 +00:00
|
|
|
// TODO
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2010-04-25 16:43:14 +00:00
|
|
|
|
|
|
|
void Workspace::updateAllTiles()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
|
|
|
foreach (TilingLayout * t, tilingLayouts) {
|
|
|
|
if (!t) continue;
|
2010-04-25 16:43:14 +00:00
|
|
|
t->commit();
|
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2010-04-25 16:43:14 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Resize the neighbouring clients to close any gaps
|
|
|
|
*/
|
2011-01-30 14:34:42 +00:00
|
|
|
void Workspace::notifyTilingWindowResize(Client *c, const QRect &moveResizeGeom, const QRect &orig)
|
|
|
|
{
|
|
|
|
if (tilingLayouts.value(c->desktop()) == NULL)
|
2010-04-25 16:43:14 +00:00
|
|
|
return;
|
2011-01-30 14:34:42 +00:00
|
|
|
tilingLayouts[ c->desktop()]->clientResized(c, moveResizeGeom, orig);
|
|
|
|
}
|
2010-04-25 16:43:14 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
void Workspace::notifyTilingWindowMove(Client *c, const QRect &moveResizeGeom, const QRect &orig)
|
|
|
|
{
|
|
|
|
if (tilingLayouts.value(c->desktop()) == NULL) {
|
2010-04-25 16:43:14 +00:00
|
|
|
return;
|
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
tilingLayouts[ c->desktop()]->clientMoved(c, moveResizeGeom, orig);
|
|
|
|
updateAllTiles();
|
|
|
|
}
|
2010-04-25 16:43:14 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
void Workspace::notifyTilingWindowResizeDone(Client *c, const QRect &moveResizeGeom, const QRect &orig, bool canceled)
|
|
|
|
{
|
|
|
|
if (canceled)
|
|
|
|
notifyTilingWindowResize(c, orig, moveResizeGeom);
|
2010-04-25 16:43:14 +00:00
|
|
|
else
|
2011-01-30 14:34:42 +00:00
|
|
|
notifyTilingWindowResize(c, moveResizeGeom, orig);
|
|
|
|
}
|
2010-04-25 16:43:14 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
void Workspace::notifyTilingWindowMoveDone(Client *c, const QRect &moveResizeGeom, const QRect &orig, bool canceled)
|
|
|
|
{
|
|
|
|
if (canceled)
|
|
|
|
notifyTilingWindowMove(c, orig, moveResizeGeom);
|
2010-04-25 16:43:14 +00:00
|
|
|
else
|
2011-01-30 14:34:42 +00:00
|
|
|
notifyTilingWindowMove(c, moveResizeGeom, orig);
|
|
|
|
}
|
2010-04-25 16:43:14 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
void Workspace::notifyTilingWindowDesktopChanged(Client *c, int old_desktop)
|
|
|
|
{
|
|
|
|
if (c->desktop() < 1 || c->desktop() > numberOfDesktops())
|
2010-04-25 16:43:14 +00:00
|
|
|
return;
|
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
if (tilingLayouts.value(old_desktop)) {
|
|
|
|
Tile *t = tilingLayouts[ old_desktop ]->findTile(c);
|
|
|
|
|
2010-04-25 16:43:14 +00:00
|
|
|
// TODO: copied from createTile(), move this into separate method?
|
2011-01-30 14:34:42 +00:00
|
|
|
if (!tilingLayouts.value(c->desktop())) {
|
|
|
|
tilingLayouts[c->desktop()] = TilingLayoutFactory::createLayout(TilingLayoutFactory::DefaultLayout, this);
|
|
|
|
}
|
2010-04-25 16:43:14 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
if (t)
|
|
|
|
tilingLayouts[ c->desktop()]->addTile(t);
|
2010-04-25 16:43:14 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
tilingLayouts[ old_desktop ]->removeTile(c);
|
2010-04-25 16:43:14 +00:00
|
|
|
tilingLayouts[ old_desktop ]->commit();
|
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2010-04-25 16:43:14 +00:00
|
|
|
|
|
|
|
/*
|
2010-05-09 06:15:40 +00:00
|
|
|
* Implements the 3 raising modes in Window Behaviour -> Advanced
|
2010-04-25 16:43:14 +00:00
|
|
|
*/
|
2011-01-30 14:34:42 +00:00
|
|
|
void Workspace::notifyTilingWindowActivated(Client *c)
|
|
|
|
{
|
|
|
|
if (c == NULL)
|
2010-04-25 16:43:14 +00:00
|
|
|
return;
|
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
if (options->tilingRaisePolicy == 1) // individual raise/lowers
|
2010-04-25 16:43:14 +00:00
|
|
|
return;
|
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
if (tilingLayouts.value(c->desktop())) {
|
|
|
|
QList<Tile *> tiles = tilingLayouts[ c->desktop()]->tiles();
|
2010-04-25 16:43:14 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
StackingUpdatesBlocker blocker(this);
|
2010-04-25 16:43:14 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
Tile *tile_to_raise = tilingLayouts[ c->desktop()]->findTile(c);
|
2010-04-25 16:43:14 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
if (!tile_to_raise) {
|
2010-04-25 16:43:14 +00:00
|
|
|
return;
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2010-04-25 16:43:14 +00:00
|
|
|
|
|
|
|
kDebug(1212) << "FOUND TILE";
|
|
|
|
bool raise_floating = false;
|
2011-01-30 14:34:42 +00:00
|
|
|
if (options->tilingRaisePolicy == 2) // floating always on top
|
2010-04-25 16:43:14 +00:00
|
|
|
raise_floating = true;
|
|
|
|
else
|
|
|
|
raise_floating = tile_to_raise->floating();
|
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
foreach (Tile * t, tiles) {
|
|
|
|
if (t->floating() == raise_floating && t != tile_to_raise)
|
|
|
|
raiseClient(t->client());
|
|
|
|
}
|
2010-04-25 16:43:14 +00:00
|
|
|
// raise the current tile last so that it ends up on top
|
|
|
|
// but only if it supposed to be raised, required to support tilingRaisePolicy
|
|
|
|
kDebug(1212) << "Raise floating? " << raise_floating << "to raise is floating?" << tile_to_raise->floating();
|
2011-01-30 14:34:42 +00:00
|
|
|
if (tile_to_raise->floating() == raise_floating)
|
|
|
|
raiseClient(tile_to_raise->client());
|
2010-04-25 16:43:14 +00:00
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2010-04-25 16:43:14 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
void Workspace::notifyTilingWindowMinimizeToggled(Client *c)
|
|
|
|
{
|
|
|
|
if (tilingLayouts.value(c->desktop())) {
|
|
|
|
tilingLayouts[ c->desktop()]->clientMinimizeToggled(c);
|
2010-04-25 16:43:14 +00:00
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2010-04-25 16:43:14 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
void Workspace::notifyTilingWindowMaximized(Client *c, Options::WindowOperation op)
|
|
|
|
{
|
|
|
|
if (tilingLayouts.value(c->desktop())) {
|
|
|
|
Tile *t = tilingLayouts[ c->desktop()]->findTile(c);
|
|
|
|
if (!t) {
|
|
|
|
createTile(c);
|
|
|
|
t = tilingLayouts[ c->desktop()]->findTile(c);
|
2010-04-25 16:43:14 +00:00
|
|
|
|
|
|
|
// if still no tile, it couldn't be tiled
|
|
|
|
// so ignore it
|
2011-01-30 14:34:42 +00:00
|
|
|
if (!t)
|
2010-04-25 16:43:14 +00:00
|
|
|
return;
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2010-04-25 16:43:14 +00:00
|
|
|
|
|
|
|
// if window IS tiled and a maximize
|
|
|
|
// is attempted, make the window float.
|
|
|
|
// That is all we do since that can
|
|
|
|
// mess up the layout.
|
|
|
|
// In all other cases, don't do
|
|
|
|
// anything, let the user manage toggling
|
|
|
|
// using Meta+F
|
2011-01-30 14:34:42 +00:00
|
|
|
if (!t->floating()
|
|
|
|
&& (op == Options::MaximizeOp
|
|
|
|
|| op == Options::HMaximizeOp
|
|
|
|
|| op == Options::VMaximizeOp)) {
|
|
|
|
tilingLayouts[ c->desktop()]->toggleFloatTile(c);
|
2010-04-25 16:43:14 +00:00
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
|
2010-04-25 16:43:14 +00:00
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2010-04-25 16:43:14 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
Tile* Workspace::findAdjacentTile(Tile *ref, int d)
|
|
|
|
{
|
2010-04-25 16:43:14 +00:00
|
|
|
QRect reference = ref->geometry();
|
|
|
|
QPoint origin = reference.center();
|
|
|
|
|
|
|
|
Tile *closest = NULL;
|
|
|
|
int minDist = -1;
|
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
QList<Tile *> tiles = tilingLayouts[ ref->client()->desktop()]->tiles();
|
2010-04-25 16:43:14 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
foreach (Tile * t, tiles) {
|
|
|
|
if (t->client() == ref->client() || t->ignoreGeometry())
|
2010-04-25 16:43:14 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
bool consider = false;
|
|
|
|
|
|
|
|
QRect other = t->geometry();
|
|
|
|
QPoint otherCenter = other.center();
|
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
switch(d) {
|
|
|
|
case Tile::Top:
|
|
|
|
consider = otherCenter.y() < origin.y()
|
|
|
|
&& other.bottom() < reference.top();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Tile::Right:
|
|
|
|
consider = otherCenter.x() > origin.x()
|
|
|
|
&& other.left() > reference.right();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Tile::Bottom:
|
|
|
|
consider = otherCenter.y() > origin.y()
|
|
|
|
&& other.top() > reference.bottom();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Tile::Left:
|
|
|
|
consider = otherCenter.x() < origin.x()
|
|
|
|
&& other.right() < reference.left();
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
abort();
|
|
|
|
}
|
2010-04-25 16:43:14 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
if (consider) {
|
|
|
|
int dist = (otherCenter - origin).manhattanLength();
|
|
|
|
if (minDist > dist || minDist < 0) {
|
|
|
|
minDist = dist;
|
|
|
|
closest = t;
|
2010-04-25 16:43:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
return closest;
|
|
|
|
}
|
2010-04-25 16:43:14 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
void Workspace::focusTile(int d)
|
|
|
|
{
|
2010-04-25 16:43:14 +00:00
|
|
|
Tile *t = getNiceTile();
|
2011-01-30 14:34:42 +00:00
|
|
|
if (t) {
|
|
|
|
Tile *adj = findAdjacentTile(t, d);
|
|
|
|
if (adj)
|
|
|
|
activateClient(adj->client());
|
2010-04-25 16:43:14 +00:00
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2010-04-25 16:43:14 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
void Workspace::moveTile(int d)
|
|
|
|
{
|
2010-04-25 16:43:14 +00:00
|
|
|
Tile *t = getNiceTile();
|
2011-01-30 14:34:42 +00:00
|
|
|
if (t) {
|
|
|
|
Tile* adj = findAdjacentTile(t, d);
|
2010-04-25 16:43:14 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
tilingLayouts[ t->client()->desktop()]->swapTiles(t, adj);
|
2010-04-25 16:43:14 +00:00
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2010-04-25 16:43:14 +00:00
|
|
|
|
2010-05-11 11:10:53 +00:00
|
|
|
void Workspace::slotFocusTileLeft()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
|
|
|
focusTile(Tile::Left);
|
|
|
|
}
|
2010-04-25 16:43:14 +00:00
|
|
|
|
2010-05-11 11:10:53 +00:00
|
|
|
void Workspace::slotFocusTileRight()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
|
|
|
focusTile(Tile::Right);
|
|
|
|
}
|
2010-04-25 16:43:14 +00:00
|
|
|
|
2010-05-11 11:10:53 +00:00
|
|
|
void Workspace::slotFocusTileTop()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
|
|
|
focusTile(Tile::Top);
|
|
|
|
}
|
2010-04-25 16:43:14 +00:00
|
|
|
|
2010-05-11 11:10:53 +00:00
|
|
|
void Workspace::slotFocusTileBottom()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
|
|
|
focusTile(Tile::Bottom);
|
|
|
|
}
|
2010-04-25 16:43:14 +00:00
|
|
|
|
2010-05-11 11:10:53 +00:00
|
|
|
void Workspace::slotMoveTileLeft()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
|
|
|
moveTile(Tile::Left);
|
|
|
|
}
|
2010-04-25 16:43:14 +00:00
|
|
|
|
2010-05-11 11:10:53 +00:00
|
|
|
void Workspace::slotMoveTileRight()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
|
|
|
moveTile(Tile::Right);
|
|
|
|
}
|
2010-04-25 16:43:14 +00:00
|
|
|
|
2010-05-11 11:10:53 +00:00
|
|
|
void Workspace::slotMoveTileTop()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
|
|
|
moveTile(Tile::Top);
|
|
|
|
}
|
2010-04-25 16:43:14 +00:00
|
|
|
|
2010-05-11 11:10:53 +00:00
|
|
|
void Workspace::slotMoveTileBottom()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
|
|
|
moveTile(Tile::Bottom);
|
|
|
|
}
|
2010-04-25 16:43:14 +00:00
|
|
|
|
|
|
|
void Workspace::slotToggleFloating()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2010-04-25 16:43:14 +00:00
|
|
|
Client *c = activeClient();
|
2011-01-30 14:34:42 +00:00
|
|
|
if (tilingLayouts.value(c->desktop())) {
|
|
|
|
tilingLayouts[ c->desktop()]->toggleFloatTile(c);
|
2010-04-25 16:43:14 +00:00
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2010-04-25 16:43:14 +00:00
|
|
|
|
|
|
|
void Workspace::slotNextTileLayout()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
|
|
|
if (tilingLayouts.value(currentDesktop())) {
|
2010-04-25 16:43:14 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
tilingLayouts.replace(currentDesktop(), TilingLayoutFactory::nextLayout(tilingLayouts[currentDesktop()]));
|
2010-04-25 16:43:14 +00:00
|
|
|
|
|
|
|
tilingLayouts[currentDesktop()]->commit();
|
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2010-04-25 16:43:14 +00:00
|
|
|
|
|
|
|
void Workspace::slotPreviousTileLayout()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
|
|
|
if (tilingLayouts.value(currentDesktop())) {
|
2010-04-25 16:43:14 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
tilingLayouts.replace(currentDesktop(), TilingLayoutFactory::previousLayout(tilingLayouts[currentDesktop()]));
|
2010-04-25 16:43:14 +00:00
|
|
|
|
|
|
|
tilingLayouts[currentDesktop()]->commit();
|
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2010-04-25 16:43:14 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
KDecorationDefines::Position Workspace::supportedTilingResizeMode(Client *c, KDecorationDefines::Position currentMode)
|
|
|
|
{
|
|
|
|
if (tilingLayouts.value(c->desktop())) {
|
|
|
|
return tilingLayouts[c->desktop()]->resizeMode(c, currentMode);
|
2010-04-25 16:43:14 +00:00
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
return currentMode;
|
|
|
|
}
|
2010-04-25 16:43:14 +00:00
|
|
|
|
|
|
|
void Workspace::dumpTiles() const
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
|
|
|
foreach (TilingLayout * t, tilingLayouts) {
|
|
|
|
if (!t) {
|
2010-04-25 16:43:14 +00:00
|
|
|
kDebug(1212) << "EMPTY DESKTOP";
|
|
|
|
continue;
|
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
kDebug(1212) << "Desktop" << tilingLayouts.indexOf(t);
|
|
|
|
foreach (Tile * tile, t->tiles()) {
|
|
|
|
tile->dumpTile("--");
|
2010-04-25 16:43:14 +00:00
|
|
|
}
|
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2010-04-25 16:43:14 +00:00
|
|
|
} // namespace
|
|
|
|
|