~ps-jenkins/unity-scopes-shell/ubuntu-rtm-14.09-proposed

« back to all changes in this revision

Viewing changes to src/abstractfilteroption.h

  • Committer: Michal Hruby
  • Date: 2013-11-07 17:48:16 UTC
  • Revision ID: michal.mhr@gmail.com-20131107174816-w1vqq6juarrawx23
Initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2013 Canonical, Ltd.
 
3
 *
 
4
 * Authors:
 
5
 *  Pawel Stolowski <pawel.stolowski@canonical.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; version 3.
 
10
 *
 
11
 * This program is distributed in the hope that it will be useful,
 
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 * GNU General Public License for more details.
 
15
 *
 
16
 * You should have received a copy of the GNU General Public License
 
17
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
18
 */
 
19
 
 
20
#ifndef ABSTRACTFILTEROPTION_H
 
21
#define ABSTRACTFILTEROPTION_H
 
22
 
 
23
// Qt
 
24
#include <QObject>
 
25
#include <QMetaType>
 
26
 
 
27
class Q_DECL_EXPORT AbstractFilterOption : public QObject
 
28
{
 
29
    Q_OBJECT
 
30
 
 
31
    Q_PROPERTY(QString id READ id NOTIFY idChanged)
 
32
    Q_PROPERTY(QString name READ name NOTIFY nameChanged)
 
33
    Q_PROPERTY(QString iconHint READ iconHint NOTIFY iconHintChanged)
 
34
    Q_PROPERTY(bool active READ active WRITE setActive NOTIFY activeChanged)
 
35
 
 
36
public:
 
37
    /* getters */
 
38
    virtual QString id() const = 0;
 
39
    virtual QString name() const = 0;
 
40
    virtual QString iconHint() const = 0;
 
41
    virtual bool active() const = 0;
 
42
 
 
43
    /* setters */
 
44
    virtual void setActive(bool active) = 0;
 
45
 
 
46
protected:
 
47
    AbstractFilterOption(QObject *parent);
 
48
 
 
49
Q_SIGNALS:
 
50
    void idChanged(const QString &);
 
51
    void nameChanged(const QString &);
 
52
    void iconHintChanged(const QString &);
 
53
    void activeChanged(bool);
 
54
};
 
55
 
 
56
Q_DECLARE_METATYPE(AbstractFilterOption*)
 
57
 
 
58
#endif // ABSTRACTFILTEROPTION_H