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

« back to all changes in this revision

Viewing changes to kwin/effects/highlightwindow/highlightwindow.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 Lucas Murray <lmurray@undefinedfire.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_HIGHLIGHTWINDOW_H
 
22
#define KWIN_HIGHLIGHTWINDOW_H
 
23
 
 
24
#include <kwineffects.h>
 
25
 
 
26
namespace KWin
 
27
{
 
28
 
 
29
class HighlightWindowEffect
 
30
    : public Effect
 
31
{
 
32
    Q_OBJECT
 
33
public:
 
34
    HighlightWindowEffect();
 
35
    virtual ~HighlightWindowEffect();
 
36
 
 
37
    virtual void prePaintWindow(EffectWindow* w, WindowPrePaintData& data, int time);
 
38
    virtual void paintWindow(EffectWindow* w, int mask, QRegion region, WindowPaintData& data);
 
39
 
 
40
public Q_SLOTS:
 
41
    void slotWindowAdded(EffectWindow* w);
 
42
    void slotWindowClosed(EffectWindow *w);
 
43
    void slotWindowDeleted(EffectWindow *w);
 
44
    void slotPropertyNotify(EffectWindow* w, long atom);
 
45
 
 
46
private:
 
47
    void prepareHighlighting();
 
48
    void finishHighlighting();
 
49
 
 
50
    bool m_finishing;
 
51
 
 
52
    double m_fadeDuration;
 
53
    QHash<EffectWindow*, double> m_windowOpacity;
 
54
 
 
55
    long m_atom;
 
56
    QList<EffectWindow*> m_highlightedWindows;
 
57
    EffectWindow* m_monitorWindow;
 
58
 
 
59
    // Offscreen position cache
 
60
    /*QRect m_thumbArea; // Thumbnail area
 
61
    QPoint m_arrowTip; // Position of the arrow's tip
 
62
    QPoint m_arrowA; // Arrow vertex position at the base (First)
 
63
    QPoint m_arrowB; // Arrow vertex position at the base (Second)
 
64
 
 
65
    // Helper functions
 
66
    inline double aspectRatio( EffectWindow *w )
 
67
        { return w->width() / double( w->height() ); }
 
68
    inline int widthForHeight( EffectWindow *w, int height )
 
69
        { return int(( height / double( w->height() )) * w->width() ); }
 
70
    inline int heightForWidth( EffectWindow *w, int width )
 
71
        { return int(( width / double( w->width() )) * w->height() ); }*/
 
72
};
 
73
 
 
74
} // namespace
 
75
 
 
76
#endif