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

« back to all changes in this revision

Viewing changes to src/showallfilteroption.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 SHOWALLFILTEROPTION_H
 
21
#define SHOWALLFILTEROPTION_H
 
22
 
 
23
// local
 
24
#include "abstractfilteroption.h"
 
25
 
 
26
class Q_DECL_EXPORT ShowAllFilterOption : public AbstractFilterOption
 
27
{
 
28
    Q_OBJECT
 
29
 
 
30
public:
 
31
    explicit ShowAllFilterOption(QObject *parent = nullptr);
 
32
 
 
33
    /* getters */
 
34
    QString id() const override;
 
35
    QString name() const override;
 
36
    QString iconHint() const override;
 
37
    bool active() const override;
 
38
 
 
39
    /* setters */
 
40
    void setActive(bool active) override;
 
41
 
 
42
private:
 
43
    bool m_active;
 
44
    QString m_id;
 
45
 
 
46
    static unsigned int m_showAllCount;
 
47
};
 
48
 
 
49
Q_DECLARE_METATYPE(ShowAllFilterOption*)
 
50
 
 
51
#endif // SHOWALLFILTEROPTION_H