2008-01-24 10:36:32 +00:00
|
|
|
/********************************************************************
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
2009-07-21 10:18:48 +00:00
|
|
|
Copyright (C) 2008, 2009 Martin Gräßlin <kde@martin-graesslin.com>
|
2008-01-24 10:36:32 +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/>.
|
|
|
|
*********************************************************************/
|
|
|
|
|
|
|
|
#ifndef KWIN_FLIPSWITCH_H
|
|
|
|
#define KWIN_FLIPSWITCH_H
|
|
|
|
|
|
|
|
#include <kwineffects.h>
|
2009-07-21 10:18:48 +00:00
|
|
|
#include <KShortcut>
|
|
|
|
#include <QQueue>
|
|
|
|
|
|
|
|
class KShortcut;
|
2008-01-24 10:36:32 +00:00
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
|
|
|
class FlipSwitchEffect
|
2009-07-21 10:18:48 +00:00
|
|
|
: public QObject, public Effect
|
2008-01-24 10:36:32 +00:00
|
|
|
{
|
2009-07-21 10:18:48 +00:00
|
|
|
Q_OBJECT
|
2008-01-24 10:36:32 +00:00
|
|
|
public:
|
|
|
|
FlipSwitchEffect();
|
|
|
|
~FlipSwitchEffect();
|
|
|
|
|
2008-10-02 09:27:32 +00:00
|
|
|
virtual void reconfigure( ReconfigureFlags );
|
2008-01-24 10:36:32 +00:00
|
|
|
virtual void prePaintScreen( ScreenPrePaintData& data, int time );
|
|
|
|
virtual void paintScreen( int mask, QRegion region, ScreenPaintData& data );
|
|
|
|
virtual void postPaintScreen();
|
2009-07-21 10:18:48 +00:00
|
|
|
virtual void prePaintWindow( EffectWindow *w, WindowPrePaintData &data, int time );
|
2008-01-24 10:36:32 +00:00
|
|
|
virtual void paintWindow( EffectWindow* w, int mask, QRegion region, WindowPaintData& data );
|
|
|
|
virtual void tabBoxAdded( int mode );
|
|
|
|
virtual void tabBoxClosed();
|
|
|
|
virtual void tabBoxUpdated();
|
2009-07-21 10:18:48 +00:00
|
|
|
virtual void windowAdded( EffectWindow* w );
|
|
|
|
virtual void windowClosed( EffectWindow* w );
|
|
|
|
virtual bool borderActivated( ElectricBorder border );
|
|
|
|
virtual void grabbedKeyboardEvent( QKeyEvent* e );
|
2008-12-04 08:47:07 +00:00
|
|
|
|
|
|
|
static bool supported();
|
2009-07-21 10:18:48 +00:00
|
|
|
private Q_SLOTS:
|
|
|
|
void toggleActiveCurrent();
|
|
|
|
void toggleActiveAllDesktops();
|
|
|
|
void globalShortcutChangedCurrent( QKeySequence shortcut );
|
|
|
|
void globalShortcutChangedAll( QKeySequence shortcut );
|
|
|
|
|
2008-01-24 10:36:32 +00:00
|
|
|
private:
|
2009-07-21 10:18:48 +00:00
|
|
|
class ItemInfo;
|
|
|
|
enum SwitchingDirection
|
|
|
|
{
|
|
|
|
DirectionForward,
|
|
|
|
DirectionBackward
|
|
|
|
};
|
|
|
|
enum FlipSwitchMode
|
|
|
|
{
|
|
|
|
TabboxMode,
|
|
|
|
CurrentDesktopMode,
|
|
|
|
AllDesktopsMode
|
|
|
|
};
|
|
|
|
void setActive( bool activate, FlipSwitchMode mode );
|
|
|
|
bool isSelectableWindow( EffectWindow *w ) const;
|
|
|
|
void scheduleAnimation( const SwitchingDirection& direction, int distance = 1 );
|
|
|
|
void adjustWindowMultiScreen( const EffectWindow *w, WindowPaintData& data );
|
|
|
|
QQueue< SwitchingDirection> m_scheduledDirections;
|
|
|
|
EffectWindow* m_selectedWindow;
|
|
|
|
TimeLine m_timeLine;
|
|
|
|
TimeLine m_startStopTimeLine;
|
|
|
|
TimeLine::CurveShape m_currentAnimationShape;
|
|
|
|
QRect m_screenArea;
|
|
|
|
int m_activeScreen;
|
|
|
|
bool m_active;
|
|
|
|
bool m_start;
|
|
|
|
bool m_stop;
|
|
|
|
bool m_animation;
|
|
|
|
bool m_hasKeyboardGrab;
|
|
|
|
Window m_input;
|
|
|
|
FlipSwitchMode m_mode;
|
2010-07-18 16:32:37 +00:00
|
|
|
EffectFrame* m_captionFrame;
|
2009-07-21 10:18:48 +00:00
|
|
|
QFont m_captionFont;
|
|
|
|
EffectWindowList m_flipOrderedWindows;
|
|
|
|
QHash< const EffectWindow*, ItemInfo* > m_windows;
|
|
|
|
// options
|
|
|
|
QList<ElectricBorder> m_borderActivate;
|
|
|
|
QList<ElectricBorder> m_borderActivateAll;
|
|
|
|
bool m_tabbox;
|
2009-09-13 11:36:45 +00:00
|
|
|
bool m_tabboxAlternative;
|
2009-07-21 10:18:48 +00:00
|
|
|
float m_angle;
|
|
|
|
float m_xPosition;
|
|
|
|
float m_yPosition;
|
|
|
|
bool m_windowTitle;
|
|
|
|
// Shortcuts
|
|
|
|
KShortcut m_shortcutCurrent;
|
|
|
|
KShortcut m_shortcutAll;
|
|
|
|
};
|
|
|
|
|
|
|
|
class FlipSwitchEffect::ItemInfo
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ItemInfo();
|
|
|
|
~ItemInfo();
|
|
|
|
bool deleted;
|
|
|
|
double opacity;
|
|
|
|
double brightness;
|
|
|
|
double saturation;
|
2008-01-24 10:36:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
#endif
|