mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-23 18:32:51 +00:00
117 lines
3.2 KiB
C++
117 lines
3.2 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 "templateeditdialog.h"
|
|
#include "pimcommon/texteditor/richtexteditor/richtexteditorwidget.h"
|
|
#include "pimcommon/texteditor/richtexteditor/richtexteditor.h"
|
|
|
|
#include <KLocalizedString>
|
|
#include <KLineEdit>
|
|
|
|
#include <QVBoxLayout>
|
|
#include <QHBoxLayout>
|
|
#include <QLabel>
|
|
|
|
|
|
using namespace PimCommon;
|
|
|
|
TemplateEditDialog::TemplateEditDialog(QWidget *parent, bool defaultTemplate)
|
|
: KDialog(parent)
|
|
{
|
|
setCaption( defaultTemplate ? i18n("Default template") : i18n("Template") );
|
|
if (defaultTemplate) {
|
|
setButtons( Close );
|
|
} else {
|
|
setButtons( Ok |Cancel );
|
|
}
|
|
setButtonFocus(Ok);
|
|
QWidget *w = new QWidget;
|
|
QVBoxLayout *vbox = new QVBoxLayout;
|
|
|
|
QHBoxLayout *hbox = new QHBoxLayout;
|
|
QLabel *label = new QLabel(i18n("Name:"));
|
|
hbox->addWidget(label);
|
|
|
|
mTemplateNameEdit = new KLineEdit;
|
|
mTemplateNameEdit->setEnabled(!defaultTemplate);
|
|
hbox->addWidget(mTemplateNameEdit);
|
|
|
|
vbox->addLayout(hbox);
|
|
|
|
mTextEdit = new PimCommon::RichTextEditorWidget;
|
|
mTextEdit->setAcceptRichText(false);
|
|
mTextEdit->setReadOnly(defaultTemplate);
|
|
vbox->addWidget(mTextEdit);
|
|
|
|
w->setLayout(vbox);
|
|
setMainWidget(w);
|
|
if (!defaultTemplate) {
|
|
enableButtonOk(false);
|
|
connect(mTemplateNameEdit, SIGNAL(textChanged(QString)),SLOT(slotTemplateChanged()));
|
|
connect(mTextEdit->editor(), SIGNAL(textChanged()),SLOT(slotTemplateChanged()));
|
|
mTemplateNameEdit->setFocus();
|
|
}
|
|
readConfig();
|
|
}
|
|
|
|
TemplateEditDialog::~TemplateEditDialog()
|
|
{
|
|
writeConfig();
|
|
}
|
|
|
|
|
|
void TemplateEditDialog::writeConfig()
|
|
{
|
|
KConfigGroup group( KGlobal::config(), "TemplateEditDialog" );
|
|
group.writeEntry( "Size", size() );
|
|
}
|
|
|
|
void TemplateEditDialog::readConfig()
|
|
{
|
|
KConfigGroup group( KGlobal::config(), "TemplateEditDialog" );
|
|
const QSize sizeDialog = group.readEntry( "Size", QSize(600,400) );
|
|
if ( sizeDialog.isValid() ) {
|
|
resize( sizeDialog );
|
|
}
|
|
}
|
|
|
|
|
|
void TemplateEditDialog::slotTemplateChanged()
|
|
{
|
|
enableButtonOk(!mTemplateNameEdit->text().trimmed().isEmpty() && !mTextEdit->editor()->toPlainText().trimmed().isEmpty());
|
|
}
|
|
|
|
void TemplateEditDialog::setScript(const QString &text)
|
|
{
|
|
mTextEdit->setPlainText(text);
|
|
}
|
|
|
|
QString TemplateEditDialog::script() const
|
|
{
|
|
return mTextEdit->toPlainText();
|
|
}
|
|
|
|
void TemplateEditDialog::setTemplateName(const QString &name)
|
|
{
|
|
mTemplateNameEdit->setText(name);
|
|
}
|
|
|
|
QString TemplateEditDialog::templateName() const
|
|
{
|
|
return mTemplateNameEdit->text();
|
|
}
|
|
|