mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-24 19:02:51 +00:00
222 lines
8 KiB
C++
222 lines
8 KiB
C++
/*
|
|
Copyright (c) 2013 Laurent Montel <montel@kde.org>
|
|
|
|
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 "newmailnotifierselectcollectionwidget.h"
|
|
#include "newmailnotifierattribute.h"
|
|
|
|
|
|
#include <Akonadi/CollectionModifyJob>
|
|
#include <Akonadi/CollectionFilterProxyModel>
|
|
#include <KRecursiveFilterProxyModel>
|
|
|
|
#include <Akonadi/ChangeRecorder>
|
|
#include <Akonadi/EntityTreeModel>
|
|
#include <Akonadi/Collection>
|
|
#include <KMime/Message>
|
|
|
|
#include <KCheckableProxyModel>
|
|
|
|
#include <KLocalizedString>
|
|
#include <KPushButton>
|
|
#include <KLineEdit>
|
|
#include <KDebug>
|
|
|
|
#include <QVBoxLayout>
|
|
#include <QHBoxLayout>
|
|
#include <QTreeView>
|
|
#include <QLabel>
|
|
#include <QTimer>
|
|
|
|
NewMailNotifierSelectCollectionWidget::NewMailNotifierSelectCollectionWidget(QWidget *parent)
|
|
: QWidget(parent),
|
|
mNeedUpdate(false)
|
|
{
|
|
QVBoxLayout *vbox = new QVBoxLayout;
|
|
|
|
QLabel *label = new QLabel(i18n("Select which folders to monitor for new message notifications:"));
|
|
vbox->addWidget(label);
|
|
|
|
// Create a new change recorder.
|
|
mChangeRecorder = new Akonadi::ChangeRecorder( this );
|
|
mChangeRecorder->setMimeTypeMonitored( KMime::Message::mimeType() );
|
|
mChangeRecorder->fetchCollection( true );
|
|
mChangeRecorder->setAllMonitored( true );
|
|
|
|
mModel = new Akonadi::EntityTreeModel( mChangeRecorder, this );
|
|
// Set the model to show only collections, not items.
|
|
mModel->setItemPopulationStrategy( Akonadi::EntityTreeModel::NoItemPopulation );
|
|
connect(mModel, SIGNAL(collectionTreeFetched(Akonadi::Collection::List)), SLOT(slotCollectionTreeFetched()));
|
|
|
|
Akonadi::CollectionFilterProxyModel *mimeTypeProxy = new Akonadi::CollectionFilterProxyModel( this );
|
|
mimeTypeProxy->setExcludeVirtualCollections( true );
|
|
mimeTypeProxy->addMimeTypeFilters( QStringList() << KMime::Message::mimeType() );
|
|
mimeTypeProxy->setSourceModel( mModel );
|
|
|
|
// Create the Check proxy model.
|
|
mSelectionModel = new QItemSelectionModel( mimeTypeProxy );
|
|
mCheckProxy = new KCheckableProxyModel( this );
|
|
mCheckProxy->setSelectionModel( mSelectionModel );
|
|
mCheckProxy->setSourceModel( mimeTypeProxy );
|
|
|
|
|
|
mCollectionFilter = new KRecursiveFilterProxyModel(this);
|
|
mCollectionFilter->setSourceModel(mCheckProxy);
|
|
mCollectionFilter->setDynamicSortFilter(true);
|
|
mCollectionFilter->setFilterCaseSensitivity(Qt::CaseInsensitive);
|
|
|
|
|
|
KLineEdit *searchLine = new KLineEdit(this);
|
|
searchLine->setPlaceholderText(i18n("Search..."));
|
|
searchLine->setClearButtonShown(true);
|
|
connect(searchLine, SIGNAL(textChanged(QString)),
|
|
this, SLOT(slotSetCollectionFilter(QString)));
|
|
|
|
vbox->addWidget(searchLine);
|
|
|
|
mFolderView = new QTreeView;
|
|
mFolderView->setEditTriggers(QAbstractItemView::NoEditTriggers);
|
|
mFolderView->setAlternatingRowColors(true);
|
|
vbox->addWidget(mFolderView);
|
|
|
|
mFolderView->setModel( mCollectionFilter );
|
|
|
|
QHBoxLayout *hbox = new QHBoxLayout;
|
|
vbox->addLayout(hbox);
|
|
|
|
KPushButton *button = new KPushButton(i18n("&Select All"), this);
|
|
connect(button, SIGNAL(clicked(bool)), this, SLOT(slotSelectAllCollections()));
|
|
hbox->addWidget(button);
|
|
|
|
button = new KPushButton(i18n("&Unselect All"), this);
|
|
connect(button, SIGNAL(clicked(bool)), this, SLOT(slotUnselectAllCollections()));
|
|
hbox->addWidget(button);
|
|
hbox->addStretch(1);
|
|
setLayout(vbox);
|
|
}
|
|
|
|
NewMailNotifierSelectCollectionWidget::~NewMailNotifierSelectCollectionWidget()
|
|
{
|
|
|
|
}
|
|
|
|
void NewMailNotifierSelectCollectionWidget::slotCollectionTreeFetched()
|
|
{
|
|
if (!mNeedUpdate) {
|
|
mNeedUpdate = true;
|
|
QTimer::singleShot(1000, this, SLOT(slotUpdateCollectionStatus()));
|
|
}
|
|
mFolderView->expandAll();
|
|
}
|
|
|
|
void NewMailNotifierSelectCollectionWidget::slotSetCollectionFilter(const QString &filter)
|
|
{
|
|
mCollectionFilter->setFilterWildcard(filter);
|
|
mFolderView->expandAll();
|
|
}
|
|
|
|
void NewMailNotifierSelectCollectionWidget::slotUpdateCollectionStatus()
|
|
{
|
|
updateStatus(QModelIndex());
|
|
}
|
|
|
|
void NewMailNotifierSelectCollectionWidget::slotSelectAllCollections()
|
|
{
|
|
forceStatus(QModelIndex(), true);
|
|
}
|
|
|
|
void NewMailNotifierSelectCollectionWidget::slotUnselectAllCollections()
|
|
{
|
|
forceStatus(QModelIndex(), false);
|
|
}
|
|
|
|
void NewMailNotifierSelectCollectionWidget::updateStatus(const QModelIndex &parent)
|
|
{
|
|
const int nbCol = mCheckProxy->rowCount( parent );
|
|
for ( int i = 0; i < nbCol; ++i ) {
|
|
const QModelIndex child = mCheckProxy->index( i, 0, parent );
|
|
|
|
const Akonadi::Collection collection =
|
|
mCheckProxy->data( child, Akonadi::EntityTreeModel::CollectionRole ).value<Akonadi::Collection>();
|
|
|
|
NewMailNotifierAttribute *attr = collection.attribute<NewMailNotifierAttribute>();
|
|
if (!attr || !attr->ignoreNewMail()) {
|
|
mCheckProxy->setData( child, Qt::Checked, Qt::CheckStateRole );
|
|
}
|
|
updateStatus( child );
|
|
}
|
|
mNeedUpdate = false;
|
|
}
|
|
|
|
void NewMailNotifierSelectCollectionWidget::forceStatus(const QModelIndex &parent, bool status)
|
|
{
|
|
const int nbCol = mCheckProxy->rowCount( parent );
|
|
for ( int i = 0; i < nbCol; ++i ) {
|
|
const QModelIndex child = mCheckProxy->index( i, 0, parent );
|
|
mCheckProxy->setData( child, status ? Qt::Checked : Qt::Unchecked, Qt::CheckStateRole );
|
|
forceStatus( child, status );
|
|
}
|
|
}
|
|
|
|
void NewMailNotifierSelectCollectionWidget::updateCollectionsRecursive(const QModelIndex &parent)
|
|
{
|
|
const int nbCol = mCheckProxy->rowCount( parent );
|
|
for ( int i = 0; i < nbCol; ++i ) {
|
|
const QModelIndex child = mCheckProxy->index( i, 0, parent );
|
|
|
|
Akonadi::Collection collection =
|
|
mCheckProxy->data( child, Akonadi::EntityTreeModel::CollectionRole ).value<Akonadi::Collection>();
|
|
|
|
NewMailNotifierAttribute *attr = collection.attribute<NewMailNotifierAttribute>();
|
|
Akonadi::CollectionModifyJob *modifyJob = 0;
|
|
const bool selected = (mCheckProxy->data( child, Qt::CheckStateRole ).value<int>() != 0);
|
|
if (selected && attr && attr->ignoreNewMail()) {
|
|
collection.removeAttribute<NewMailNotifierAttribute>();
|
|
modifyJob = new Akonadi::CollectionModifyJob(collection);
|
|
modifyJob->setProperty("AttributeAdded", true);
|
|
} else if (!selected && (!attr || !attr->ignoreNewMail())) {
|
|
attr = collection.attribute<NewMailNotifierAttribute>(Akonadi::Entity::AddIfMissing);
|
|
attr->setIgnoreNewMail(true);
|
|
modifyJob = new Akonadi::CollectionModifyJob(collection);
|
|
modifyJob->setProperty("AttributeAdded", false);
|
|
}
|
|
|
|
if (modifyJob) {
|
|
connect(modifyJob, SIGNAL(finished(KJob*)), SLOT(slotModifyJobDone(KJob*)));
|
|
}
|
|
updateCollectionsRecursive(child);
|
|
}
|
|
}
|
|
|
|
void NewMailNotifierSelectCollectionWidget::slotModifyJobDone(KJob* job)
|
|
{
|
|
Akonadi::CollectionModifyJob *modifyJob = qobject_cast<Akonadi::CollectionModifyJob*>(job);
|
|
if (modifyJob && job->error()) {
|
|
if (job->property("AttributeAdded").toBool()) {
|
|
kWarning() << "Failed to append NewMailNotifierAttribute to collection"
|
|
<< modifyJob->collection().id() << ":"
|
|
<< job->errorString();
|
|
} else {
|
|
kWarning() << "Failed to remove NewMailNotifierAttribute from collection"
|
|
<< modifyJob->collection().id() << ":"
|
|
<< job->errorString();
|
|
}
|
|
}
|
|
}
|
|
|
|
|