mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-24 10:52:52 +00:00
196 lines
6.3 KiB
C++
196 lines
6.3 KiB
C++
![]() |
/*
|
||
|
Copyright (c) 2014 Montel Laurent <montel@kde.org>
|
||
|
|
||
|
This program is free software; you can redistribute it and/or modify it
|
||
|
under the terms of the GNU General Public License, version 2, 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, write to the Free Software Foundation, Inc.,
|
||
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||
|
*/
|
||
|
|
||
|
#include "manageaccountwidget.h"
|
||
|
|
||
|
#include <akonadi/agentinstance.h>
|
||
|
#include <akonadi/agentinstancecreatejob.h>
|
||
|
#include <akonadi/agenttypedialog.h>
|
||
|
|
||
|
#include <Akonadi/AgentFilterProxyModel>
|
||
|
#include <Akonadi/AgentManager>
|
||
|
#include "ui_manageaccountwidget.h"
|
||
|
|
||
|
#include <KMessageBox>
|
||
|
#include <KLocalizedString>
|
||
|
#include <KWindowSystem>
|
||
|
#include <KLineEdit>
|
||
|
|
||
|
#include <QAbstractItemDelegate>
|
||
|
|
||
|
using namespace PimCommon;
|
||
|
|
||
|
ManageAccountWidget::ManageAccountWidget(QWidget *parent)
|
||
|
: QWidget(parent)
|
||
|
{
|
||
|
mWidget = new Ui::ManageAccountWidget;
|
||
|
mWidget->setupUi( this );
|
||
|
connect( mWidget->mAddAccountButton, SIGNAL(clicked()),
|
||
|
this, SLOT(slotAddAccount()) );
|
||
|
|
||
|
connect( mWidget->mModifyAccountButton, SIGNAL(clicked()),
|
||
|
this, SLOT(slotModifySelectedAccount()) );
|
||
|
|
||
|
connect( mWidget->mRemoveAccountButton, SIGNAL(clicked()),
|
||
|
this, SLOT(slotRemoveSelectedAccount()) );
|
||
|
connect( mWidget->mRestartAccountButton, SIGNAL(clicked()),
|
||
|
this, SLOT(slotRestartSelectedAccount()) );
|
||
|
|
||
|
connect( mWidget->mAccountList, SIGNAL(clicked(Akonadi::AgentInstance)),
|
||
|
SLOT(slotAccountSelected(Akonadi::AgentInstance)) );
|
||
|
connect( mWidget->mAccountList, SIGNAL(doubleClicked(Akonadi::AgentInstance)),
|
||
|
this, SLOT(slotModifySelectedAccount()) );
|
||
|
|
||
|
mWidget->mAccountList->view()->setSelectionMode( QAbstractItemView::SingleSelection );
|
||
|
|
||
|
mWidget->mFilterAccount->setProxy( mWidget->mAccountList->agentFilterProxyModel() );
|
||
|
mWidget->mFilterAccount->lineEdit()->setTrapReturnKey( true );
|
||
|
slotAccountSelected( mWidget->mAccountList->currentAgentInstance() );
|
||
|
}
|
||
|
|
||
|
ManageAccountWidget::~ManageAccountWidget()
|
||
|
{
|
||
|
delete mWidget;
|
||
|
}
|
||
|
|
||
|
QAbstractItemView *ManageAccountWidget::view() const
|
||
|
{
|
||
|
return mWidget->mAccountList->view();
|
||
|
}
|
||
|
|
||
|
void ManageAccountWidget::setSpecialCollectionIdentifier(const QString &identifier)
|
||
|
{
|
||
|
mSpecialCollectionIdentifier = identifier;
|
||
|
}
|
||
|
|
||
|
void ManageAccountWidget::slotAddAccount()
|
||
|
{
|
||
|
Akonadi::AgentTypeDialog dlg( this );
|
||
|
|
||
|
Akonadi::AgentFilterProxyModel* filter = dlg.agentFilterProxyModel();
|
||
|
Q_FOREACH(const QString &filterStr, mMimeTypeFilter) {
|
||
|
filter->addMimeTypeFilter( filterStr );
|
||
|
}
|
||
|
Q_FOREACH(const QString &capa, mCapabilityFilter) {
|
||
|
filter->addCapabilityFilter( capa );
|
||
|
}
|
||
|
Q_FOREACH(const QString &capa, mExcludeCapabilities) {
|
||
|
filter->excludeCapabilities( capa );
|
||
|
}
|
||
|
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();
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
QStringList ManageAccountWidget::excludeCapabilities() const
|
||
|
{
|
||
|
return mExcludeCapabilities;
|
||
|
}
|
||
|
|
||
|
void ManageAccountWidget::setExcludeCapabilities(const QStringList &excludeCapabilities)
|
||
|
{
|
||
|
mExcludeCapabilities = excludeCapabilities;
|
||
|
}
|
||
|
|
||
|
void ManageAccountWidget::setItemDelegate(QAbstractItemDelegate *delegate)
|
||
|
{
|
||
|
mWidget->mAccountList->view()->setItemDelegate( delegate );
|
||
|
}
|
||
|
|
||
|
QStringList ManageAccountWidget::capabilityFilter() const
|
||
|
{
|
||
|
return mCapabilityFilter;
|
||
|
}
|
||
|
|
||
|
void ManageAccountWidget::setCapabilityFilter(const QStringList &capabilityFilter)
|
||
|
{
|
||
|
mCapabilityFilter = capabilityFilter;
|
||
|
Q_FOREACH(const QString &capability, mCapabilityFilter) {
|
||
|
mWidget->mAccountList->agentFilterProxyModel()->addCapabilityFilter(capability);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
QStringList ManageAccountWidget::mimeTypeFilter() const
|
||
|
{
|
||
|
return mMimeTypeFilter;
|
||
|
}
|
||
|
|
||
|
void ManageAccountWidget::setMimeTypeFilter(const QStringList &mimeTypeFilter)
|
||
|
{
|
||
|
mMimeTypeFilter = mimeTypeFilter;
|
||
|
Q_FOREACH(const QString &mimeType, mMimeTypeFilter) {
|
||
|
mWidget->mAccountList->agentFilterProxyModel()->addMimeTypeFilter( mimeType );
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
void ManageAccountWidget::slotModifySelectedAccount()
|
||
|
{
|
||
|
Akonadi::AgentInstance instance = mWidget->mAccountList->currentAgentInstance();
|
||
|
if ( instance.isValid() ) {
|
||
|
KWindowSystem::allowExternalProcessWindowActivation();
|
||
|
instance.configure( this );
|
||
|
}
|
||
|
}
|
||
|
|
||
|
void ManageAccountWidget::slotRestartSelectedAccount()
|
||
|
{
|
||
|
const Akonadi::AgentInstance instance = mWidget->mAccountList->currentAgentInstance();
|
||
|
if ( instance.isValid() ) {
|
||
|
instance.restart();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
void ManageAccountWidget::slotRemoveSelectedAccount()
|
||
|
{
|
||
|
const Akonadi::AgentInstance instance = mWidget->mAccountList->currentAgentInstance();
|
||
|
|
||
|
const int rc = KMessageBox::questionYesNo( this,
|
||
|
i18n("Do you want to remove account '%1'?", instance.name()),
|
||
|
i18n("Remove account?"));
|
||
|
if ( rc == KMessageBox::No ) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
if ( instance.isValid() )
|
||
|
Akonadi::AgentManager::self()->removeInstance( instance );
|
||
|
|
||
|
slotAccountSelected( mWidget->mAccountList->currentAgentInstance() );
|
||
|
|
||
|
}
|
||
|
|
||
|
void ManageAccountWidget::slotAccountSelected(const Akonadi::AgentInstance& current)
|
||
|
{
|
||
|
if (current.isValid()) {
|
||
|
mWidget->mModifyAccountButton->setEnabled( !current.type().capabilities().contains( QLatin1String( "NoConfig" ) ) );
|
||
|
mWidget->mRemoveAccountButton->setEnabled( mSpecialCollectionIdentifier != current.identifier() );
|
||
|
// Restarting an agent is not possible if it's in Running status... (see AgentProcessInstance::restartWhenIdle)
|
||
|
mWidget->mRestartAccountButton->setEnabled( ( current.status() != 1 ) );
|
||
|
} else {
|
||
|
mWidget->mModifyAccountButton->setEnabled( false );
|
||
|
mWidget->mRemoveAccountButton->setEnabled( false );
|
||
|
mWidget->mRestartAccountButton->setEnabled( false );
|
||
|
}
|
||
|
}
|