File: click_applications_notify_model.cpp

package info (click to toggle)
lomiri-system-settings 1.3.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 22,484 kB
  • sloc: cpp: 15,892; python: 5,994; xml: 362; javascript: 80; makefile: 46; sh: 5
file content (121 lines) | stat: -rw-r--r-- 3,743 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
/*
 * Copyright (C) 2016 Canonical Ltd.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 3 as
 * published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
*/

#include "click_applications_notify_model.h"
#include "click_applications_model.h"

ClickApplicationsNotifyModel::ClickApplicationsNotifyModel(QObject* parent)
    : QSortFilterProxyModel(parent),
    m_notifyType(-1)
{
    setDynamicSortFilter(false);

    connect(this, SIGNAL(rowsInserted(QModelIndex, int, int)), SLOT(onModelChanged()));
    connect(this, SIGNAL(rowsRemoved(QModelIndex, int, int)), SLOT(onModelChanged()));
}

ClickApplicationsModel* ClickApplicationsNotifyModel::sourceModel() const
{
    return qobject_cast<ClickApplicationsModel*>(QSortFilterProxyModel::sourceModel());
}

void ClickApplicationsNotifyModel::setSourceModel(ClickApplicationsModel* sourceModel)
{
    if (sourceModel != this->sourceModel()) {
        QSortFilterProxyModel::setSourceModel(sourceModel);
        Q_EMIT sourceModelChanged();
        Q_EMIT countChanged();
    }
}

int ClickApplicationsNotifyModel::notifyType() const
{
    return m_notifyType;
}

void ClickApplicationsNotifyModel::setNotifyType(int type)
{
    if (m_notifyType != type) {
        m_notifyType = type;
        invalidate();
        Q_EMIT notifyTypeChanged();
        Q_EMIT countChanged();
    }
}

int ClickApplicationsNotifyModel::count() const
{
    return rowCount();
}

void ClickApplicationsNotifyModel::updateEnabledEntries()
{
    invalidateFilter();
}

bool ClickApplicationsNotifyModel::setNotifyEnabled(int row, bool enabled)
{
    if (row < 0 || row >= rowCount()) {
        return false;
    }

    QModelIndex idx = mapToSource(index(row, 0));

    switch (m_notifyType) {
    case SoundsNotify:
        return sourceModel()->setNotifyEnabled(ClickApplicationsModel::SoundsNotify, idx.row(), enabled);
    case VibrationsNotify:
        return sourceModel()->setNotifyEnabled(ClickApplicationsModel::VibrationsNotify, idx.row(), enabled);
    case BubblesNotify:
        return sourceModel()->setNotifyEnabled(ClickApplicationsModel::BubblesNotify, idx.row(), enabled);
    case ListNotify:
        return sourceModel()->setNotifyEnabled(ClickApplicationsModel::ListNotify, idx.row(), enabled);
    default:
        return false;
    }

    return false; 
}

bool ClickApplicationsNotifyModel::filterAcceptsRow(int source_row, const QModelIndex& source_parent) const
{
    QModelIndex index = sourceModel()->index(source_row, 0, source_parent);

    if (!sourceModel()->data(index, ClickApplicationsModel::EnableNotifications).toBool()) {
        return false;
    }

    if (m_notifyType == SoundsNotify) {
        return sourceModel()->data(index, ClickApplicationsModel::SoundsNotify).toBool();
    }
    if (m_notifyType == VibrationsNotify) {
        return sourceModel()->data(index, ClickApplicationsModel::VibrationsNotify).toBool();
    }
    if (m_notifyType == BubblesNotify) {
        return sourceModel()->data(index, ClickApplicationsModel::BubblesNotify).toBool();
    }
    if (m_notifyType == ListNotify) {
        return sourceModel()->data(index, ClickApplicationsModel::ListNotify).toBool();
    }

    return false;
}

void ClickApplicationsNotifyModel::onModelChanged()
{
    Q_EMIT countChanged();
}