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

« back to all changes in this revision

Viewing changes to src/showallfilteroption.cpp

  • 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
// self
 
21
#include "showallfilteroption.h"
 
22
 
 
23
#include <libintl.h>
 
24
 
 
25
unsigned int ShowAllFilterOption::m_showAllCount = 0;
 
26
 
 
27
ShowAllFilterOption::ShowAllFilterOption(QObject *parent) :
 
28
    AbstractFilterOption(parent),
 
29
    m_active(false)
 
30
{
 
31
    m_id = QString("show_all::%1").arg(m_showAllCount++);
 
32
}
 
33
 
 
34
QString ShowAllFilterOption::id() const
 
35
{
 
36
    return m_id;
 
37
}
 
38
 
 
39
QString ShowAllFilterOption::name() const
 
40
{
 
41
    return QString::fromUtf8(dgettext("unity", "All"));
 
42
}
 
43
 
 
44
QString ShowAllFilterOption::iconHint() const
 
45
{
 
46
    return QString::Null();
 
47
}
 
48
 
 
49
bool ShowAllFilterOption::active() const
 
50
{
 
51
    return m_active;
 
52
}
 
53
 
 
54
void ShowAllFilterOption::setActive(bool active)
 
55
{
 
56
    if (active != m_active) {
 
57
        m_active = active;
 
58
        Q_EMIT activeChanged(m_active);
 
59
    }
 
60
}