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

« back to all changes in this revision

Viewing changes to src/checkoptionfilter.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) 2011 Canonical, Ltd.
 
3
 *
 
4
 * Authors:
 
5
 *  Florian Boucault <florian.boucault@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 CHECKOPTIONFILTER_H
 
21
#define CHECKOPTIONFILTER_H
 
22
 
 
23
// Qt
 
24
#include <QObject>
 
25
#include <QMetaType>
 
26
 
 
27
// libunity-core
 
28
#include <UnityCore/CheckOptionFilter.h>
 
29
 
 
30
// Local
 
31
#include "filter.h"
 
32
#include "signalslist.h"
 
33
 
 
34
class Q_DECL_EXPORT CheckOptionFilter : public Filter
 
35
{
 
36
    Q_OBJECT
 
37
 
 
38
public:
 
39
    explicit CheckOptionFilter(QObject *parent = nullptr);
 
40
 
 
41
    /* getters */
 
42
    GenericOptionsModel* options() const override;
 
43
 
 
44
protected:
 
45
    void setUnityFilter(unity::dash::Filter::Ptr filter) override;
 
46
 
 
47
private:
 
48
    void onOptionsChanged(unity::dash::CheckOptionFilter::CheckOptions filter);
 
49
 
 
50
    unity::dash::CheckOptionFilter::Ptr m_unityCheckOptionFilter;
 
51
    SignalsList m_signals;
 
52
    GenericOptionsModel* m_options;
 
53
};
 
54
 
 
55
Q_DECLARE_METATYPE(CheckOptionFilter*)
 
56
 
 
57
#endif // CHECKOPTIONFILTER_H