Files
ukui-greeter/greeter/proxymodel.cpp
yanghao 8644ffdf1e [Fixed] 修复在多session系统中有session的名称包含关键词之外的词(如xfce会话)时无法启动的问题
[Improved] 去除QWeakPointer、setRoleNames等废弃API的使用,消除警告
2018-05-25 14:22:01 +08:00

129 lines
4.5 KiB
C++

/* proxymodel.cpp
* Copyright (C) 2018 Tianjin KYLIN Information Technology Co., Ltd.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* 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, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301, USA.
**/
#include "proxymodel.h"
#include <QDebug>
ProxyModel::ProxyModel(QObject *parent)
: QAbstractListModel(parent),
m_model(nullptr),
m_extraModel(new QStandardItemModel(this))
{
connect(m_extraModel, SIGNAL(rowsInserted(const QModelIndex&, int, int)),
this, SLOT(onExtraRowsInserted(const QModelIndex&, int, int)));
connect(m_extraModel, SIGNAL(rowsRemoved(const QModelIndex&, int, int)),
this, SLOT(onExtraRowsRemoved(const QModelIndex&, int, int)));
connect(m_extraModel, SIGNAL(dataChanged(const QModelIndex&, const QModelIndex&)),
this, SLOT(onExtraDataChanged(const QModelIndex&, const QModelIndex&)));
}
QVariant ProxyModel::data(const QModelIndex &index, int role) const
{
if(index.row() < sourceRowCount())
return m_model->index(index.row(), 0).data(role);
else
return m_extraModel->index(index.row() - sourceRowCount(), 0).data(role);
}
int ProxyModel::rowCount(const QModelIndex &parent) const
{
Q_UNUSED(parent);
return sourceRowCount() + m_extraModel->rowCount();
}
QHash<int, QByteArray> ProxyModel::roleNames() const
{
return m_model == nullptr ? QHash<int, QByteArray>() : m_model->roleNames();
}
QStandardItemModel* ProxyModel::extraRowModel()
{
return m_extraModel;
}
void ProxyModel::setSourceModel(QAbstractListModel *sourceModel)
{
if(m_model)
{
disconnect(m_model, SIGNAL(rowsInserted(const QModelIndex&, int, int)),
this, SLOT(onSourceRowsInserted(const QModelIndex&, int, int)));
disconnect(m_model, SIGNAL(rowsRemoved(const QModelIndex&, int, int)),
this, SLOT(onSourceRowsRemoved(const QModelIndex&, int, int)));
disconnect(m_model, SIGNAL(dataChanged(QModelIndex,QModelIndex)),
this, SLOT(onSourceDataChanged(const QModelIndex&, const QModelIndex&)));
}
// m_model = QWeakPointer<QAbstractListModel>(sourceModel);
m_model = sourceModel;
// reset();
beginResetModel();
endResetModel();
// setRoleNames(m_model->roleNames());
connect(m_model, SIGNAL(rowsInserted(const QModelIndex&, int, int)),
this, SLOT(onSourceRowsInserted(const QModelIndex&, int, int)));
connect(m_model, SIGNAL(rowsRemoved(const QModelIndex&, int, int)),
this, SLOT(onSourceRowsRemoved(const QModelIndex&, int, int)));
connect(m_model, SIGNAL(dataChanged(QModelIndex,QModelIndex)),
this, SLOT(onSourceDataChanged(const QModelIndex&, const QModelIndex&)));
}
int ProxyModel::sourceRowCount() const
{
return m_model == nullptr ? 0 : m_model->rowCount();
}
void ProxyModel::onSourceDataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight)
{
dataChanged(createIndex(topLeft.row(), 0), createIndex(bottomRight.row(), 0));
}
void ProxyModel::onSourceRowsInserted(const QModelIndex &parent, int start, int end)
{
Q_UNUSED(parent);
beginInsertRows(parent, start, end);
endInsertRows();
}
void ProxyModel::onSourceRowsRemoved(const QModelIndex &parent, int start, int end)
{
Q_UNUSED(parent);
beginRemoveRows(parent, start, end);
endRemoveRows();
}
void ProxyModel::onExtraDataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight)
{
dataChanged(createIndex(sourceRowCount() + topLeft.row(), 0), createIndex(sourceRowCount() + bottomRight.row(), 0));
}
void ProxyModel::onExtraRowsInserted(const QModelIndex &parent, int start, int end)
{
Q_UNUSED(parent);
beginInsertRows(parent, sourceRowCount() + start, sourceRowCount() + end);
endInsertRows();
}
void ProxyModel::onExtraRowsRemoved(const QModelIndex &parent, int start, int end)
{
Q_UNUSED(parent);
beginRemoveRows(parent, sourceRowCount() + start, sourceRowCount() + end);
endRemoveRows();
}