~ubuntu-branches/ubuntu/utopic/kde-workspace/utopic-proposed

« back to all changes in this revision

Viewing changes to kwin/effects/glide/glide.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) 2007 Philip Falkner <philip.falkner@gmail.com>
 
6
Copyright (C) 2009 Martin Gräßlin <kde@martin-graesslin.com>
 
7
Copyright (C) 2010 Alexandre Pereira <pereira.alex@gmail.com>
 
8
 
 
9
This program is free software; you can redistribute it and/or modify
 
10
it under the terms of the GNU General Public License as published by
 
11
the Free Software Foundation; either version 2 of the License, or
 
12
(at your option) any later version.
 
13
 
 
14
This program is distributed in the hope that it will be useful,
 
15
but WITHOUT ANY WARRANTY; without even the implied warranty of
 
16
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
17
GNU General Public License for more details.
 
18
 
 
19
You should have received a copy of the GNU General Public License
 
20
along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
21
*********************************************************************/
 
22
 
 
23
#ifndef KWIN_GLIDE_H
 
24
#define KWIN_GLIDE_H
 
25
 
 
26
#include <kwineffects.h>
 
27
 
 
28
class QTimeLine;
 
29
 
 
30
namespace KWin
 
31
{
 
32
 
 
33
class GlideEffect
 
34
    : public Effect
 
35
{
 
36
    Q_OBJECT
 
37
public:
 
38
    GlideEffect();
 
39
    virtual void reconfigure(ReconfigureFlags);
 
40
    virtual void prePaintScreen(ScreenPrePaintData& data, int time);
 
41
    virtual void prePaintWindow(EffectWindow* w, WindowPrePaintData& data, int time);
 
42
    virtual void paintWindow(EffectWindow* w, int mask, QRegion region, WindowPaintData& data);
 
43
    virtual void postPaintWindow(EffectWindow* w);
 
44
 
 
45
    static bool supported();
 
46
public Q_SLOTS:
 
47
    void slotWindowAdded(EffectWindow* c);
 
48
    void slotWindowClosed(EffectWindow *c);
 
49
    void slotWindowDeleted(EffectWindow *w);
 
50
 
 
51
private:
 
52
    class WindowInfo;
 
53
    typedef QMap< const EffectWindow*, WindowInfo > InfoHash;
 
54
    void glideIn(EffectWindow* w, WindowPaintData& data);
 
55
    void glideOut(EffectWindow* w, WindowPaintData& data);
 
56
    bool isGlideWindow(EffectWindow* w);
 
57
    InfoHash windows;
 
58
    float duration;
 
59
    int angle;
 
60
    enum EffectStyle {
 
61
        GlideIn = 0,
 
62
        GlideInOut = 1,
 
63
        GlideOutIn = 2,
 
64
        GlideOut = 3
 
65
    };
 
66
    EffectStyle effect;
 
67
};
 
68
 
 
69
class GlideEffect::WindowInfo
 
70
{
 
71
public:
 
72
    WindowInfo();
 
73
    ~WindowInfo();
 
74
    bool deleted;
 
75
    bool added;
 
76
    bool closed;
 
77
    QTimeLine *timeLine;
 
78
};
 
79
 
 
80
} // namespace
 
81
 
 
82
#endif