~ubuntu-branches/ubuntu/vivid/muon/vivid-proposed

« back to all changes in this revision

Viewing changes to installer/effects/GraphicsOpacityDropShadowEffect.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2015-03-24 23:06:35 UTC
  • mto: This revision was merged to the branch mainline in revision 88.
  • Revision ID: package-import@ubuntu.com-20150324230635-nvt7aq7kqvaxq36e
Tags: upstream-5.2.2-1
ImportĀ upstreamĀ versionĀ 5.2.2-1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
 *   Copyright (C) 2010 by Daniel Nicoletti                                *
 
3
 *   dantti85-pk@yahoo.com.br                                              *
 
4
 *                                                                         *
 
5
 *   This program is free software; you can redistribute it and/or modify  *
 
6
 *   it under the terms of the GNU General Public License as published by  *
 
7
 *   the Free Software Foundation; either version 2 of the License, or     *
 
8
 *   (at your option) any later version.                                   *
 
9
 *                                                                         *
 
10
 *   This program is distributed in the hope that it will be useful,       *
 
11
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 
12
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 
13
 *   GNU General Public License for more details.                          *
 
14
 *                                                                         *
 
15
 *   You should have received a copy of the GNU General Public License     *
 
16
 *   along with this program; see the file COPYING. If not, write to       *
 
17
 *   the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,  *
 
18
 *   Boston, MA 02110-1301, USA.                                           *
 
19
 ***************************************************************************/
 
20
 
 
21
#ifndef GRAPHICS_OPACITY_DROP_SHADOW_EFFECT_H
 
22
#define GRAPHICS_OPACITY_DROP_SHADOW_EFFECT_H
 
23
 
 
24
#include <QGraphicsDropShadowEffect>
 
25
 
 
26
class GraphicsOpacityDropShadowEffect : public QGraphicsDropShadowEffect
 
27
{
 
28
    Q_OBJECT
 
29
    Q_PROPERTY(qreal opacity READ opacity WRITE setOpacity USER true)
 
30
public:
 
31
    GraphicsOpacityDropShadowEffect(QObject *parent = 0);
 
32
    ~GraphicsOpacityDropShadowEffect();
 
33
 
 
34
    qreal opacity() const;
 
35
    void  setOpacity(qreal opacity);
 
36
 
 
37
    virtual void draw(QPainter *painter);
 
38
 
 
39
private:
 
40
    qreal m_opacity;
 
41
};
 
42
 
 
43
#endif