2005-12-29 22:55:22 +01:00
|
|
|
/*
|
2007-08-06 13:20:02 +02:00
|
|
|
* Copyright 2005 by Aaron Seigo <aseigo@kde.org>
|
2005-12-29 22:55:22 +01:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
2007-09-14 21:06:18 +02:00
|
|
|
* it under the terms of the GNU Library General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2, or
|
|
|
|
* (at your option) any later version.
|
2005-12-29 22:55:22 +01:00
|
|
|
*
|
|
|
|
* 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 Library General Public
|
|
|
|
* License along with this program; if not, write to the
|
|
|
|
* Free Software Foundation, Inc.,
|
2006-01-23 12:37:31 +01:00
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2005-12-29 22:55:22 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <plasma.h>
|
|
|
|
|
|
|
|
namespace Plasma
|
|
|
|
{
|
|
|
|
|
2007-07-26 00:43:43 +02:00
|
|
|
qreal scalingFactor(ZoomLevel level)
|
|
|
|
{
|
|
|
|
switch (level) {
|
|
|
|
case DesktopZoom:
|
|
|
|
return 1;
|
|
|
|
break;
|
|
|
|
case GroupZoom:
|
|
|
|
return 0.5;
|
|
|
|
break;
|
|
|
|
case OverviewZoom:
|
2007-07-26 00:54:35 +02:00
|
|
|
return 0.2;
|
2007-07-26 00:43:43 +02:00
|
|
|
break;
|
|
|
|
}
|
2007-07-26 00:54:35 +02:00
|
|
|
|
|
|
|
// to make odd compilers not warn like silly beasts
|
|
|
|
return 1;
|
2007-07-26 00:43:43 +02:00
|
|
|
}
|
|
|
|
|
2007-05-26 00:51:23 +02:00
|
|
|
Direction locationToDirection(Location location)
|
2005-12-29 22:55:22 +01:00
|
|
|
{
|
2007-05-26 00:51:23 +02:00
|
|
|
switch (location)
|
2005-12-29 22:55:22 +01:00
|
|
|
{
|
|
|
|
case Floating:
|
|
|
|
case Desktop:
|
|
|
|
case TopEdge:
|
2007-07-26 00:54:35 +02:00
|
|
|
case FullScreen:
|
2007-05-26 00:51:23 +02:00
|
|
|
//TODO: should we be smarter for floating and planer?
|
|
|
|
// perhaps we should take a QRect and/or QPos as well?
|
2005-12-29 22:55:22 +01:00
|
|
|
return Down;
|
|
|
|
case BottomEdge:
|
|
|
|
return Up;
|
|
|
|
case LeftEdge:
|
|
|
|
return Right;
|
|
|
|
case RightEdge:
|
|
|
|
return Left;
|
|
|
|
}
|
2007-05-26 00:51:23 +02:00
|
|
|
|
|
|
|
return Down;
|
2005-12-29 22:55:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
} // Plasma namespace
|