~sil2100/unity-2d/precise-security

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/*
 * This file is part of unity-2d
 *
 * Copyright 2012 Canonical Ltd.
 *
 * Authors:
 * - Ugo Riboni <ugo.riboni@canonical.com>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; version 3.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#ifndef INPUTSHAPEMASK_H
#define INPUTSHAPEMASK_H

#include <QObject>
#include <QColor>
#include <QPoint>
#include <QBitmap>

class InputShapeMask : public QObject
{
    Q_OBJECT
    Q_PROPERTY(QString source READ source WRITE setSource NOTIFY sourceChanged)
    Q_PROPERTY(QColor color READ color WRITE setColor NOTIFY colorChanged)
    Q_PROPERTY(QPointF position READ position WRITE setPosition NOTIFY positionChanged)
    Q_PROPERTY(QBitmap shape READ shape NOTIFY shapeChanged)
    Q_PROPERTY(bool enabled READ enabled WRITE setEnabled NOTIFY enabledChanged)

public:
    explicit InputShapeMask(QObject *parent = 0);

    QString source() const;
    QColor color() const;
    QPointF position() const;
    bool enabled() const;
    QBitmap shape() const;

    void setSource(const QString& source);
    void setColor(const QColor& color);
    void setPosition(const QPointF& position);
    void setEnabled(bool enabled);

Q_SIGNALS:
    void sourceChanged(const QString& source);
    void colorChanged(const QColor& color);
    void enabledChanged();
    void shapeChanged();
    void positionChanged();

protected:
    void updateShape();

private:
    QString m_source;
    QColor m_color;
    QPointF m_position;
    bool m_enabled;
    QBitmap m_shape;
};

#endif // INPUTSHAPEMASK_H