kde-playground/kdepim-runtime/kcm/resourcesmanagementwidget.cpp
2015-09-25 12:06:19 +00:00

138 lines
5.3 KiB
C++

/*
Copyright (c) 2006 - 2007 Volker Krause <vkrause@kde.org>
Copyright (c) 2008 Omat Holding B.V. <tomalbers@kde.nl>
Based on KMail code by:
Copyright (C) 2001-2003 Marc Mutz <mutz@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 "resourcesmanagementwidget.h"
#include "ui_resourcesmanagementwidget.h"
#include <akonadi/agentmanager.h>
#include <akonadi/agentinstancecreatejob.h>
#include <akonadi/agentfilterproxymodel.h>
#include <akonadi/agenttypedialog.h>
#include <akonadi/control.h>
#include <KWindowSystem>
#include <KLocale>
#include <KDebug>
#include <KMessageBox>
#include <KLineEdit>
class ResourcesManagementWidget::Private
{
public:
Ui::ResourcesManagementWidget ui;
QHash<QAction*, Akonadi::AgentType> menuOptions;
QStringList wantedMimeTypes;
};
ResourcesManagementWidget::ResourcesManagementWidget( QWidget *parent, const QStringList &args ) :
QWidget( parent ),
d( new Private )
{
d->wantedMimeTypes = args;
d->ui.setupUi( this );
d->ui.resourcesList->agentFilterProxyModel()->addCapabilityFilter( QLatin1String("Resource") );
foreach ( const QString& type, d->wantedMimeTypes )
d->ui.resourcesList->agentFilterProxyModel()->addMimeTypeFilter( type );
connect( d->ui.resourcesList->view()->selectionModel(), SIGNAL(selectionChanged(QItemSelection,QItemSelection)),
SLOT(updateButtonState()) );
connect( d->ui.resourcesList, SIGNAL(doubleClicked(Akonadi::AgentInstance)),
SLOT(editClicked()) );
connect( d->ui.addButton, SIGNAL(clicked()), SLOT(addClicked()) );
connect( d->ui.editButton, SIGNAL(clicked()), SLOT(editClicked()) );
connect( d->ui.removeButton, SIGNAL(clicked()), SLOT(removeClicked()) );
d->ui.mFilterAccount->setProxy( d->ui.resourcesList->agentFilterProxyModel() );
d->ui.mFilterAccount->lineEdit()->setTrapReturnKey( true );
updateButtonState();
Akonadi::Control::widgetNeedsAkonadi( this );
}
ResourcesManagementWidget::~ResourcesManagementWidget()
{
delete d;
}
void ResourcesManagementWidget::updateButtonState()
{
const QList<Akonadi::AgentInstance> instanceList = d->ui.resourcesList->selectedAgentInstances();
if ( instanceList.isEmpty() ) {
d->ui.editButton->setEnabled( false );
d->ui.removeButton->setEnabled( false );
} else {
const Akonadi::AgentInstance current = instanceList.first();
d->ui.editButton->setEnabled( !current.type().capabilities().contains( QLatin1String( "NoConfig" ) ) );
d->ui.removeButton->setEnabled( true );
}
}
void ResourcesManagementWidget::addClicked()
{
Akonadi::AgentTypeDialog dlg( this );
Akonadi::AgentFilterProxyModel* filter = dlg.agentFilterProxyModel();
foreach ( const QString& type, d->wantedMimeTypes )
filter->addMimeTypeFilter( type );
if ( dlg.exec() ) {
const Akonadi::AgentType agentType = dlg.agentType();
if ( agentType.isValid() ) {
Akonadi::AgentInstanceCreateJob *job = new Akonadi::AgentInstanceCreateJob( agentType, this );
job->configure( this );
job->start();
}
}
}
void ResourcesManagementWidget::editClicked()
{
const QList<Akonadi::AgentInstance> instanceList = d->ui.resourcesList->selectedAgentInstances();
if ( !instanceList.isEmpty() && instanceList.first().isValid() ) {
KWindowSystem::allowExternalProcessWindowActivation();
Akonadi::AgentInstance instance = instanceList.first();
instance.configure( this );
}
}
void ResourcesManagementWidget::removeClicked()
{
const QList<Akonadi::AgentInstance> instanceList = d->ui.resourcesList->selectedAgentInstances();
if ( !instanceList.isEmpty() ) {
if ( KMessageBox::questionYesNo( this,
i18np( "Do you really want to delete the selected agent instance?",
"Do you really want to delete these %1 agent instances?",
instanceList.size() ),
i18n( "Multiple Agent Deletion" ),
KStandardGuiItem::del(),
KStandardGuiItem::cancel(),
QString(),
KMessageBox::Dangerous )
== KMessageBox::Yes ) {
foreach ( const Akonadi::AgentInstance &agent, instanceList )
Akonadi::AgentManager::self()->removeInstance( agent );
updateButtonState();
}
}
}