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();
}
|