2007-11-27 19:40:25 +00:00
|
|
|
/********************************************************************
|
2007-04-29 17:35:43 +00:00
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
|
|
|
Copyright (C) 2007 Lubos Lunak <l.lunak@kde.org>
|
2008-08-12 15:22:06 +00:00
|
|
|
Copyright (C) 2008 Lucas Murray <lmurray@undefinedfire.com>
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2007-11-27 19:40:25 +00:00
|
|
|
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/>.
|
|
|
|
*********************************************************************/
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
#ifndef KWIN_DESKTOPGRID_H
|
|
|
|
#define KWIN_DESKTOPGRID_H
|
|
|
|
|
|
|
|
#include <kwineffects.h>
|
2008-02-02 20:54:19 +00:00
|
|
|
#include <QObject>
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
|
|
|
class DesktopGridEffect
|
|
|
|
: public QObject, public Effect
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
DesktopGridEffect();
|
2008-01-29 13:48:26 +00:00
|
|
|
~DesktopGridEffect();
|
2008-10-02 09:27:32 +00:00
|
|
|
virtual void reconfigure( ReconfigureFlags );
|
2007-07-07 14:01:32 +00:00
|
|
|
virtual void prePaintScreen( ScreenPrePaintData& data, int time );
|
2007-04-29 17:35:43 +00:00
|
|
|
virtual void paintScreen( int mask, QRegion region, ScreenPaintData& data );
|
|
|
|
virtual void postPaintScreen();
|
2007-07-07 14:01:32 +00:00
|
|
|
virtual void prePaintWindow( EffectWindow* w, WindowPrePaintData& data, int time );
|
2007-04-29 17:35:43 +00:00
|
|
|
virtual void paintWindow( EffectWindow* w, int mask, QRegion region, WindowPaintData& data );
|
|
|
|
virtual void windowClosed( EffectWindow* w );
|
|
|
|
virtual void windowInputMouseEvent( Window w, QEvent* e );
|
|
|
|
virtual void grabbedKeyboardEvent( QKeyEvent* e );
|
2008-01-29 13:48:26 +00:00
|
|
|
virtual bool borderActivated( ElectricBorder border );
|
2008-09-04 14:37:07 +00:00
|
|
|
|
|
|
|
enum { LayoutPager, LayoutAutomatic, LayoutCustom }; // Layout modes
|
|
|
|
|
2007-04-29 17:35:43 +00:00
|
|
|
private slots:
|
|
|
|
void toggle();
|
2008-09-04 14:37:07 +00:00
|
|
|
|
2007-04-29 17:35:43 +00:00
|
|
|
private:
|
2008-08-12 15:22:06 +00:00
|
|
|
QPointF scalePos( const QPoint& pos, int desktop, int screen = -1 ) const;
|
|
|
|
QPoint unscalePos( const QPoint& pos, int* desktop = NULL ) const;
|
2007-04-29 17:35:43 +00:00
|
|
|
int posToDesktop( const QPoint& pos ) const;
|
2008-08-12 15:22:06 +00:00
|
|
|
EffectWindow* windowAt( QPoint pos ) const;
|
|
|
|
void setCurrentDesktop( int desktop );
|
|
|
|
void setHighlightedDesktop( int desktop );
|
2007-04-29 17:35:43 +00:00
|
|
|
void setActive( bool active );
|
|
|
|
void setup();
|
|
|
|
void finish();
|
2008-08-12 15:22:06 +00:00
|
|
|
|
|
|
|
ElectricBorder borderActivate;
|
|
|
|
int zoomDuration;
|
|
|
|
int border;
|
|
|
|
Qt::Alignment desktopNameAlignment;
|
2008-09-04 14:37:07 +00:00
|
|
|
int layoutMode;
|
2008-08-12 15:22:06 +00:00
|
|
|
int customLayoutRows;
|
|
|
|
|
2007-04-29 17:35:43 +00:00
|
|
|
bool activated;
|
2008-08-12 15:22:06 +00:00
|
|
|
TimeLine timeline;
|
|
|
|
int paintingDesktop;
|
|
|
|
int highlightedDesktop;
|
2007-04-29 17:35:43 +00:00
|
|
|
Window input;
|
2008-08-12 15:22:06 +00:00
|
|
|
bool keyboardGrab;
|
|
|
|
bool wasWindowMove;
|
|
|
|
EffectWindow* windowMove;
|
|
|
|
QPoint windowMoveDiff;
|
|
|
|
|
|
|
|
// Soft highlighting
|
|
|
|
QList<TimeLine> hoverTimeline;
|
|
|
|
|
|
|
|
QSize gridSize;
|
|
|
|
Qt::Orientation orientation;
|
|
|
|
QPoint activeCell;
|
|
|
|
// Per screen variables
|
|
|
|
QList<double> scale; // Because the border isn't a ratio each screen is different
|
|
|
|
QList<double> unscaledBorder;
|
|
|
|
QList<QSizeF> scaledSize;
|
|
|
|
QList<QPointF> scaledOffset;
|
2008-04-19 00:28:35 +00:00
|
|
|
|
2007-04-29 17:35:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
#endif
|