mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-24 19:02:51 +00:00
84 lines
3.1 KiB
C++
84 lines
3.1 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 "configurestorageservicewidget.h"
|
|
#include "kmkernel.h"
|
|
#include "settings/globalsettings.h"
|
|
#include "pimcommon/storageservice/settings/storageservicesettingswidget.h"
|
|
#include "pimcommon/widgets/configureimmutablewidgetutils.h"
|
|
using namespace PimCommon::ConfigureImmutableWidgetUtils;
|
|
|
|
#include <KLocalizedString>
|
|
#include <KStandardDirs>
|
|
#include <KMessageBox>
|
|
|
|
#include <QVBoxLayout>
|
|
#include <QHBoxLayout>
|
|
#include <QCheckBox>
|
|
#include <QSpinBox>
|
|
#include <QProcess>
|
|
#include <QPushButton>
|
|
|
|
ConfigureStorageServiceWidget::ConfigureStorageServiceWidget(QWidget *parent)
|
|
: QWidget(parent)
|
|
{
|
|
QVBoxLayout *lay = new QVBoxLayout;
|
|
mStorageServiceWidget = new PimCommon::StorageServiceSettingsWidget;
|
|
connect(mStorageServiceWidget, SIGNAL(changed()), this, SIGNAL(changed()));
|
|
lay->addWidget(mStorageServiceWidget);
|
|
|
|
QHBoxLayout *hbox = new QHBoxLayout;
|
|
mManageStorageService = new QPushButton(i18n("Manage Storage Service"));
|
|
hbox->addWidget(mManageStorageService);
|
|
hbox->addStretch();
|
|
lay->addLayout(hbox);
|
|
if (KStandardDirs::findExe(QLatin1String("storageservicemanager")).isEmpty()) {
|
|
mManageStorageService->setEnabled(false);
|
|
} else {
|
|
connect(mManageStorageService, SIGNAL(clicked(bool)), this, SLOT(slotManageStorageService()));
|
|
}
|
|
QList<PimCommon::StorageServiceAbstract::Capability> lstCapabilities;
|
|
lstCapabilities << PimCommon::StorageServiceAbstract::ShareLinkCapability;
|
|
if (KMKernel::self() && KMKernel::self()->storageServiceManager()) {
|
|
mStorageServiceWidget->setListService(KMKernel::self()->storageServiceManager()->listService(), lstCapabilities);
|
|
} else {
|
|
mStorageServiceWidget->setEnabled(false);
|
|
}
|
|
setLayout(lay);
|
|
}
|
|
|
|
ConfigureStorageServiceWidget::~ConfigureStorageServiceWidget()
|
|
{
|
|
}
|
|
|
|
void ConfigureStorageServiceWidget::slotManageStorageService()
|
|
{
|
|
if ( !QProcess::startDetached(QLatin1String("storageservicemanager") ) )
|
|
KMessageBox::error( this, i18n( "Could not start storage service manager; "
|
|
"please check your installation." ),
|
|
i18n( "KMail Error" ) );
|
|
}
|
|
|
|
void ConfigureStorageServiceWidget::save()
|
|
{
|
|
if (KMKernel::self() && KMKernel::self()->storageServiceManager())
|
|
KMKernel::self()->storageServiceManager()->setListService(mStorageServiceWidget->listService());
|
|
}
|
|
|
|
void ConfigureStorageServiceWidget::doLoadFromGlobalSettings()
|
|
{
|
|
}
|