kwin/tilinglayouts/spiral/spiral.cpp
Nikhil Marathe 5fc7e93d69 Tiling is here!
This commit merges the kwin-tiling branch. Ideally it shouldn't break anything and add a few features ;-)
It was applied as a patch. Do not attempt to merge the branch directly, it has a few issues.
This feature is currently experimental, although it hasn't crashed in quite a long time. It lacks some features and probably leaks some memory. Fixes will be on the way.

Season Of KDE 2009 project by Nikhil Marathe

svn path=/trunk/KDE/kdebase/workspace/; revision=1118677
2010-04-25 16:43:14 +00:00

82 lines
2.1 KiB
C++

/********************************************************************
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/>.
*********************************************************************/
#include "spiral.h"
#include "client.h"
#include "tile.h"
namespace KWin
{
Spiral::Spiral( Workspace *w )
: TilingLayout( w )
{
}
Spiral::~Spiral()
{
}
void Spiral::arrange( QRect wgeom )
{
QList<Tile *> tiled( tiles() );
QMutableListIterator<Tile *> it(tiled);
while( it.hasNext() )
{
Tile *t = it.next();
if( t->ignoreGeometry() )
it.remove();
}
int n = tiled.length();
int i = 1;
foreach( Tile *t, tiled )
{
if( t->floating() )
continue;
if( i < n )
{
if( i % 2 == 0 )
wgeom.setHeight( wgeom.height() / 2 );
else
wgeom.setWidth( wgeom.width() / 2 );
}
if( i % 4 == 0 )
wgeom.moveLeft( wgeom.x() - wgeom.width() );
else if( i % 2 == 0 || ( i % 4 == 3 && i < n ) )
wgeom.moveLeft( wgeom.x() + wgeom.width() );
if( i % 4 == 1 && i != 1 )
wgeom.moveTop( wgeom.y() - wgeom.height() );
else if( i % 2 == 1 && i != 1
|| ( i % 4 == 0 && i < n ) )
wgeom.moveTop( wgeom.y() + wgeom.height() );
t->setGeometry( wgeom );
t->commit();
i++;
}
}
}