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

« back to all changes in this revision

Viewing changes to kwin/effects/zoom/zoom.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) 2006 Lubos Lunak <l.lunak@kde.org>
 
6
Copyright (C) 2010 Sebastian Sauer <sebsauer@kdab.com>
 
7
 
 
8
This program is free software; you can redistribute it and/or modify
 
9
it under the terms of the GNU General Public License as published by
 
10
the Free Software Foundation; either version 2 of the License, or
 
11
(at your option) any later version.
 
12
 
 
13
This program is distributed in the hope that it will be useful,
 
14
but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
GNU General Public License for more details.
 
17
 
 
18
You should have received a copy of the GNU General Public License
 
19
along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
20
*********************************************************************/
 
21
 
 
22
#ifndef KWIN_ZOOM_H
 
23
#define KWIN_ZOOM_H
 
24
 
 
25
#include <kwineffects.h>
 
26
#include <QtCore/QTime>
 
27
#include <QtCore/QTimeLine>
 
28
 
 
29
namespace KWin
 
30
{
 
31
 
 
32
class GLTexture;
 
33
class XRenderPicture;
 
34
 
 
35
class ZoomEffect
 
36
    : public Effect
 
37
{
 
38
    Q_OBJECT
 
39
public:
 
40
    ZoomEffect();
 
41
    virtual ~ZoomEffect();
 
42
    virtual void reconfigure(ReconfigureFlags flags);
 
43
    virtual void prePaintScreen(ScreenPrePaintData& data, int time);
 
44
    virtual void paintScreen(int mask, QRegion region, ScreenPaintData& data);
 
45
    virtual void postPaintScreen();
 
46
private slots:
 
47
    void zoomIn();
 
48
    void zoomOut();
 
49
    void actualSize();
 
50
    void moveZoomLeft();
 
51
    void moveZoomRight();
 
52
    void moveZoomUp();
 
53
    void moveZoomDown();
 
54
    void moveMouseToFocus();
 
55
    void moveMouseToCenter();
 
56
    void timelineFrameChanged(int frame);
 
57
    void focusChanged(int px, int py, int rx, int ry, int rwidth, int rheight);
 
58
    void slotMouseChanged(const QPoint& pos, const QPoint& old,
 
59
                              Qt::MouseButtons buttons, Qt::MouseButtons oldbuttons,
 
60
                              Qt::KeyboardModifiers modifiers, Qt::KeyboardModifiers oldmodifiers);
 
61
private:
 
62
    void showCursor();
 
63
    void hideCursor();
 
64
    void recreateTexture();
 
65
    void moveZoom(int x, int y);
 
66
private:
 
67
    double zoom;
 
68
    double target_zoom;
 
69
    bool polling; // Mouse polling
 
70
    double zoomFactor;
 
71
    enum MouseTrackingType { MouseTrackingProportional = 0, MouseTrackingCentred = 1, MouseTrackingPush = 2, MouseTrackingDisabled = 3 };
 
72
    MouseTrackingType mouseTracking;
 
73
    bool enableFocusTracking;
 
74
    bool followFocus;
 
75
    enum MousePointerType { MousePointerScale = 0, MousePointerKeep = 1, MousePointerHide = 2 };
 
76
    MousePointerType mousePointer;
 
77
    int focusDelay;
 
78
    QPoint cursorPoint;
 
79
    QPoint focusPoint;
 
80
    QPoint prevPoint;
 
81
    QTime lastMouseEvent;
 
82
    QTime lastFocusEvent;
 
83
    GLTexture* texture;
 
84
    XRenderPicture* xrenderPicture;
 
85
    int imageWidth;
 
86
    int imageHeight;
 
87
    bool isMouseHidden;
 
88
    QTimeLine timeline;
 
89
    int xMove, yMove;
 
90
    double moveFactor;
 
91
};
 
92
 
 
93
} // namespace
 
94
 
 
95
#endif