kdelibs/kdeui/itemviews/kviewstatemaintainer.cpp
2014-11-13 01:04:59 +02:00

119 lines
3.8 KiB
C++

/*
Copyright (C) 2010 Klarälvdalens Datakonsult AB,
a KDAB Group company, info@kdab.net,
author Stephen Kelly <stephen@kdab.com>
This library is free software; you can redistribute it and/or modify it
under the terms of the GNU Library General Public License as published by
the Free Software Foundation; either version 2 of the License, or (at your
option) any later version.
This library 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 Library General Public
License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301, USA.
*/
#include "kviewstatemaintainer.h"
#include <QtCore/QWeakPointer>
class KViewStateMaintainerBasePrivate
{
KViewStateMaintainerBasePrivate(KConfigGroup configGroup, KViewStateMaintainerBase *qq)
: q_ptr(qq), m_configGroup(configGroup)
{
}
Q_DECLARE_PUBLIC(KViewStateMaintainerBase)
KViewStateMaintainerBase * const q_ptr;
void _k_modelAboutToBeReset();
void _k_modelReset();
QWeakPointer<QAbstractItemView> m_view;
QWeakPointer<QItemSelectionModel> m_selectionModel;
const KConfigGroup m_configGroup;
};
void KViewStateMaintainerBasePrivate::_k_modelAboutToBeReset()
{
Q_Q(KViewStateMaintainerBase);
q->saveState();
}
void KViewStateMaintainerBasePrivate::_k_modelReset()
{
Q_Q(KViewStateMaintainerBase);
q->restoreState();
}
KViewStateMaintainerBase::KViewStateMaintainerBase(KConfigGroup configPtr, QObject* parent)
: QObject(parent), d_ptr(new KViewStateMaintainerBasePrivate(configPtr, this))
{
}
KViewStateMaintainerBase::~KViewStateMaintainerBase()
{
delete d_ptr;
}
KConfigGroup KViewStateMaintainerBase::configGroup() const
{
Q_D(const KViewStateMaintainerBase);
return d->m_configGroup;
}
QItemSelectionModel* KViewStateMaintainerBase::selectionModel() const
{
Q_D(const KViewStateMaintainerBase);
if (d->m_selectionModel.isNull())
return 0;
return d->m_selectionModel.data();
}
void KViewStateMaintainerBase::setSelectionModel(QItemSelectionModel* selectionModel)
{
Q_D(KViewStateMaintainerBase);
d->m_selectionModel = selectionModel;
if (d->m_view && d->m_view.data()->model()) {
disconnect(d->m_view.data()->model(), SIGNAL(modelAboutToBeReset()), this, SLOT(_k_modelAboutToBeReset()));
disconnect(d->m_view.data()->model(), SIGNAL(modelReset()), this, SLOT(_k_modelReset()));
}
connect(d->m_selectionModel.data()->model(), SIGNAL(modelAboutToBeReset()), SLOT(_k_modelAboutToBeReset()), Qt::UniqueConnection);
connect(d->m_selectionModel.data()->model(), SIGNAL(modelReset()), SLOT(_k_modelReset()), Qt::UniqueConnection);
}
QAbstractItemView* KViewStateMaintainerBase::view() const
{
Q_D(const KViewStateMaintainerBase);
if (d->m_view.isNull())
return 0;
return d->m_view.data();
}
void KViewStateMaintainerBase::setView(QAbstractItemView* view)
{
Q_D(KViewStateMaintainerBase);
d->m_view = view;
if (d->m_selectionModel && d->m_selectionModel.data()->model()) {
disconnect(d->m_selectionModel.data()->model(), SIGNAL(modelAboutToBeReset()), this, SLOT(_k_modelAboutToBeReset()));
disconnect(d->m_selectionModel.data()->model(), SIGNAL(modelReset()), this, SLOT(_k_modelReset()));
}
if (d->m_view && d->m_view.data()->model()) {
connect(d->m_view.data()->model(), SIGNAL(modelAboutToBeReset()), SLOT(_k_modelAboutToBeReset()), Qt::UniqueConnection);
connect(d->m_view.data()->model(), SIGNAL(modelReset()), SLOT(_k_modelReset()), Qt::UniqueConnection);
}
}
#include "kviewstatemaintainer.moc"