mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-24 10:52:52 +00:00
146 lines
4.7 KiB
C++
146 lines
4.7 KiB
C++
/*
|
|
Copyright (c) 2013, 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 "contactconfigurationdialog.h"
|
|
#include "contacteditorutil.h"
|
|
#include "pimcommon/texteditor/richtexteditor/richtexteditorwidget.h"
|
|
|
|
|
|
#include "configurewidget.h"
|
|
|
|
#include <Akonadi/Contact/ContactEditor>
|
|
|
|
#include <KABC/VCardConverter>
|
|
|
|
#include <KLocalizedString>
|
|
#include <KConfig>
|
|
#include <KGlobal>
|
|
#include <KConfigGroup>
|
|
|
|
#include <QVBoxLayout>
|
|
#include <QLabel>
|
|
#include <QTabWidget>
|
|
|
|
ContactConfigureDialog::ContactConfigureDialog(QWidget *parent)
|
|
: KDialog(parent)
|
|
{
|
|
setCaption( i18n( "Configure" ) );
|
|
setButtons( Default|Ok|Cancel );
|
|
setButtonFocus( Ok );
|
|
|
|
QTabWidget *tab = new QTabWidget;
|
|
|
|
QWidget *w = new QWidget;
|
|
QVBoxLayout *lay = new QVBoxLayout;
|
|
w->setLayout(lay);
|
|
|
|
mConfigureWidget = new GrantleeThemeEditor::ConfigureWidget;
|
|
lay->addWidget(mConfigureWidget);
|
|
|
|
QLabel *lab = new QLabel(i18n("Default contact:"));
|
|
lay->addWidget(lab);
|
|
|
|
mDefaultContact = new Akonadi::ContactEditor(Akonadi::ContactEditor::CreateMode, Akonadi::ContactEditor::VCardMode);
|
|
lay->addWidget(mDefaultContact);
|
|
|
|
tab->addTab(w, i18n("General"));
|
|
|
|
mDefaultTemplate = new PimCommon::RichTextEditorWidget;
|
|
mDefaultTemplate->setAcceptRichText(false);
|
|
tab->addTab(mDefaultTemplate, i18n("Default Template"));
|
|
|
|
setMainWidget(tab);
|
|
connect(this, SIGNAL(defaultClicked()), this, SLOT(slotDefaultClicked()));
|
|
connect(this, SIGNAL(okClicked()), this, SLOT(slotOkClicked()));
|
|
readConfig();
|
|
}
|
|
|
|
ContactConfigureDialog::~ContactConfigureDialog()
|
|
{
|
|
KSharedConfig::Ptr config = KGlobal::config();
|
|
|
|
KConfigGroup group = config->group( QLatin1String("ContactConfigureDialog") );
|
|
group.writeEntry( "Size", size() );
|
|
}
|
|
|
|
void ContactConfigureDialog::slotDefaultClicked()
|
|
{
|
|
mConfigureWidget->setDefault();
|
|
|
|
if (!contacteditorutil::defaultContact().isEmpty()) {
|
|
KABC::VCardConverter converter;
|
|
KABC::Addressee addr = converter.parseVCard( contacteditorutil::defaultContact().toUtf8() );
|
|
mDefaultContact->setContactTemplate(addr);
|
|
} else {
|
|
mDefaultContact->setContactTemplate(KABC::Addressee());
|
|
}
|
|
mDefaultTemplate->clear();
|
|
}
|
|
|
|
void ContactConfigureDialog::slotOkClicked()
|
|
{
|
|
writeConfig();
|
|
}
|
|
|
|
void ContactConfigureDialog::readConfig()
|
|
{
|
|
KSharedConfig::Ptr config = KGlobal::config();
|
|
|
|
if (config->hasGroup(QLatin1String("Global"))) {
|
|
KConfigGroup group = config->group(QLatin1String("Global"));
|
|
const QString defaultContact = group.readEntry("defaultContact",contacteditorutil::defaultContact());
|
|
if (!defaultContact.isEmpty()) {
|
|
KABC::VCardConverter converter;
|
|
KABC::Addressee addr = converter.parseVCard( defaultContact.toUtf8() );
|
|
mDefaultContact->setContactTemplate(addr);
|
|
} else {
|
|
mDefaultContact->setContactTemplate(KABC::Addressee());
|
|
}
|
|
mDefaultTemplate->setPlainText(group.readEntry("defaultTemplate",QString()));
|
|
} else {
|
|
if (!contacteditorutil::defaultContact().isEmpty()) {
|
|
KABC::VCardConverter converter;
|
|
KABC::Addressee addr = converter.parseVCard( contacteditorutil::defaultContact().toUtf8() );
|
|
mDefaultContact->setContactTemplate(addr);
|
|
} else {
|
|
mDefaultContact->setContactTemplate(KABC::Addressee());
|
|
}
|
|
mDefaultTemplate->setPlainText(QString());
|
|
}
|
|
|
|
mConfigureWidget->readConfig();
|
|
|
|
KConfigGroup group = KConfigGroup( config, "ContactConfigureDialog" );
|
|
const QSize sizeDialog = group.readEntry( "Size", QSize(600,400) );
|
|
if ( sizeDialog.isValid() ) {
|
|
resize( sizeDialog );
|
|
}
|
|
}
|
|
|
|
void ContactConfigureDialog::writeConfig()
|
|
{
|
|
KSharedConfig::Ptr config = KGlobal::config();
|
|
KConfigGroup group = config->group(QLatin1String("Global"));
|
|
const KABC::Addressee addr = mDefaultContact->contact();
|
|
KABC::VCardConverter converter;
|
|
const QByteArray data = converter.exportVCard( addr, KABC::VCardConverter::v3_0 );
|
|
group.writeEntry("defaultContact", data);
|
|
|
|
group.writeEntry("defaultTemplate", mDefaultTemplate->toPlainText());
|
|
mConfigureWidget->writeConfig();
|
|
}
|
|
|