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

« back to all changes in this revision

Viewing changes to src/checkoptionfilter.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) 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
// Self
 
21
#include "checkoptionfilter.h"
 
22
 
 
23
// local
 
24
#include "unityoptionsmodel.h"
 
25
 
 
26
CheckOptionFilter::CheckOptionFilter(QObject *parent) :
 
27
    Filter(parent),
 
28
    m_unityCheckOptionFilter(nullptr),
 
29
    m_options(nullptr)
 
30
{
 
31
}
 
32
 
 
33
GenericOptionsModel* CheckOptionFilter::options() const
 
34
{
 
35
    return m_options;
 
36
}
 
37
 
 
38
void CheckOptionFilter::setUnityFilter(unity::dash::Filter::Ptr filter)
 
39
{
 
40
    Filter::setUnityFilter(filter);
 
41
    m_unityCheckOptionFilter = std::dynamic_pointer_cast<unity::dash::CheckOptionFilter>(m_unityFilter);
 
42
    onOptionsChanged(m_unityCheckOptionFilter->options);
 
43
}
 
44
 
 
45
void CheckOptionFilter::onOptionsChanged(unity::dash::CheckOptionFilter::CheckOptions options)
 
46
{
 
47
    if (m_options != nullptr) {
 
48
        m_signals.disconnectAll();
 
49
        delete m_options;
 
50
        m_options = nullptr;
 
51
    }
 
52
 
 
53
    m_options = new UnityOptionsModel(this, options,
 
54
                                      m_unityCheckOptionFilter->option_added,
 
55
                                      m_unityCheckOptionFilter->option_removed,
 
56
                                      m_unityCheckOptionFilter->show_all_button);
 
57
 
 
58
    connect(m_options, SIGNAL(activeChanged(AbstractFilterOption *)), m_options, SLOT(ensureTheOnlyActive(AbstractFilterOption *)));
 
59
    connect(m_options, SIGNAL(showAllActivated()), this, SLOT(clear()));
 
60
 
 
61
    /* Property change signals */
 
62
    m_signals << m_unityCheckOptionFilter->options.changed.connect(sigc::mem_fun(this, &CheckOptionFilter::onOptionsChanged));
 
63
 
 
64
    Q_EMIT optionsChanged();
 
65
}