~arjunak234-deactivatedaccount/kde-workspace/fix125114

« back to all changes in this revision

Viewing changes to kwin/effects/cube/cubeslide.h

  • Committer: Bazaar Package Importer
  • Author(s): Michał Zając
  • Date: 2011-07-09 08:31:15 UTC
  • Revision ID: james.westby@ubuntu.com-20110709083115-ohyxn6z93mily9fc
Tags: upstream-4.6.90
Import upstream version 4.6.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/********************************************************************
 
2
 KWin - the KDE window manager
 
3
 This file is part of the KDE project.
 
4
 
 
5
 Copyright (C) 2009 Martin Gräßlin <kde@martin-graesslin.com>
 
6
 
 
7
This program is free software; you can redistribute it and/or modify
 
8
it under the terms of the GNU General Public License as published by
 
9
the Free Software Foundation; either version 2 of the License, or
 
10
(at your option) any later version.
 
11
 
 
12
This program is distributed in the hope that it will be useful,
 
13
but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
GNU General Public License for more details.
 
16
 
 
17
You should have received a copy of the GNU General Public License
 
18
along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
19
*********************************************************************/
 
20
 
 
21
#ifndef KWIN_CUBESLIDE_H
 
22
#define KWIN_CUBESLIDE_H
 
23
 
 
24
#include <kwineffects.h>
 
25
#include <kwinglutils.h>
 
26
#include <QQueue>
 
27
#include <QSet>
 
28
#include <QTimeLine>
 
29
 
 
30
namespace KWin
 
31
{
 
32
class CubeSlideEffect
 
33
    : public Effect
 
34
{
 
35
    Q_OBJECT
 
36
public:
 
37
    CubeSlideEffect();
 
38
    ~CubeSlideEffect();
 
39
    virtual void reconfigure(ReconfigureFlags);
 
40
    virtual void prePaintScreen(ScreenPrePaintData& data, int time);
 
41
    virtual void paintScreen(int mask, QRegion region, ScreenPaintData& data);
 
42
    virtual void postPaintScreen();
 
43
    virtual void prePaintWindow(EffectWindow* w, WindowPrePaintData& data, int time);
 
44
    virtual void paintWindow(EffectWindow* w, int mask, QRegion region, WindowPaintData& data);
 
45
 
 
46
    static bool supported();
 
47
 
 
48
private Q_SLOTS:
 
49
    void slotDesktopChanged(int old, int current);
 
50
    void slotWindowStepUserMovedResized(EffectWindow *w);
 
51
    void slotWindowFinishUserMovedResized(EffectWindow *w);
 
52
 
 
53
private:
 
54
    enum RotationDirection {
 
55
        Left,
 
56
        Right,
 
57
        Upwards,
 
58
        Downwards
 
59
    };
 
60
    void paintSlideCube(int mask, QRegion region, ScreenPaintData& data);
 
61
    void windowMovingChanged(float progress, RotationDirection direction);
 
62
    bool cube_painting;
 
63
    int front_desktop;
 
64
    int painting_desktop;
 
65
    int other_desktop;
 
66
    bool firstDesktop;
 
67
    QTimeLine timeLine;
 
68
    QQueue<RotationDirection> slideRotations;
 
69
    QSet<EffectWindow*> panels;
 
70
    QSet<EffectWindow*> stickyWindows;
 
71
    bool dontSlidePanels;
 
72
    bool dontSlideStickyWindows;
 
73
    bool usePagerLayout;
 
74
    int rotationDuration;
 
75
    bool useWindowMoving;
 
76
    bool windowMoving;
 
77
    bool desktopChangedWhileMoving;
 
78
    double progressRestriction;
 
79
};
 
80
}
 
81
 
 
82
#endif