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

« back to all changes in this revision

Viewing changes to kwin/effects/windowgeometry/windowgeometry.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) 2010 Thomas Lübking <thomas.luebking@web.de>
 
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 WINDOWGEOMETRY_H
 
22
#define WINDOWGEOMETRY_H
 
23
 
 
24
#include <kwineffects.h>
 
25
 
 
26
namespace KWin
 
27
{
 
28
 
 
29
class WindowGeometry : public Effect
 
30
{
 
31
    Q_OBJECT
 
32
public:
 
33
    WindowGeometry();
 
34
    ~WindowGeometry();
 
35
 
 
36
    inline bool provides(Effect::Feature ef) {
 
37
        return ef == Effect::GeometryTip;
 
38
    }
 
39
    void reconfigure(ReconfigureFlags);
 
40
    void paintScreen(int mask, QRegion region, ScreenPaintData &data);
 
41
 
 
42
private slots:
 
43
    void toggle();
 
44
    void slotWindowStartUserMovedResized(EffectWindow *w);
 
45
    void slotWindowFinishUserMovedResized(EffectWindow *w);
 
46
    void slotWindowStepUserMovedResized(EffectWindow *w, const QRect &geometry);
 
47
private:
 
48
    EffectWindow *myResizeWindow;
 
49
    EffectFrame *myMeasure[3];
 
50
    QRect myOriginalGeometry, myCurrentGeometry;
 
51
    bool iAmActive, iAmActivated, iHandleMoves, iHandleResizes;
 
52
    QString myCoordString[2], myResizeString;
 
53
};
 
54
 
 
55
} // namespace
 
56
 
 
57
#endif