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

« back to all changes in this revision

Viewing changes to src/unityoptionsmodel.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 UNITYOPTIONSMODEL_H
 
21
#define UNITYOPTIONSMODEL_H
 
22
 
 
23
#include "genericoptionsmodel.h"
 
24
 
 
25
// libunity-core
 
26
#include <UnityCore/Filter.h>
 
27
 
 
28
#include <sigc++/signal.h>
 
29
 
 
30
class UnityOptionsModel : public GenericOptionsModel
 
31
{
 
32
    Q_OBJECT
 
33
 
 
34
public:
 
35
    UnityOptionsModel(QObject *parent,
 
36
                      const std::vector<unity::dash::FilterOption::Ptr> options,
 
37
                      sigc::signal<void, unity::dash::FilterOption::Ptr> optionAdded,
 
38
                      sigc::signal<void, unity::dash::FilterOption::Ptr> optionRemoved,
 
39
                      bool showAllOption);
 
40
 
 
41
private:
 
42
    void setOptions(const std::vector<unity::dash::FilterOption::Ptr> options,
 
43
                          sigc::signal<void, unity::dash::FilterOption::Ptr> optionAdded,
 
44
                          sigc::signal<void, unity::dash::FilterOption::Ptr> optionRemoved);
 
45
 
 
46
    void onOptionAdded(unity::dash::FilterOption::Ptr option);
 
47
    void onOptionRemoved(unity::dash::FilterOption::Ptr option);
 
48
};
 
49
 
 
50
#endif // UNITYOPTIONSMODEL_H