mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-24 10:52:52 +00:00
77 lines
2.6 KiB
C++
77 lines
2.6 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 "sievescriptparsingerrordialog.h"
|
|
#include "pimcommon/util/pimutil.h"
|
|
#include "pimcommon/texteditor/richtexteditor/richtexteditorwidget.h"
|
|
|
|
#include <KLocalizedString>
|
|
#include <KSharedConfig>
|
|
|
|
#include <errno.h>
|
|
|
|
SieveScriptParsingErrorDialog::SieveScriptParsingErrorDialog(QWidget *parent)
|
|
: KDialog(parent)
|
|
{
|
|
setCaption( i18n( "Sieve Parsing Error" ) );
|
|
setButtons( Close | User1 );
|
|
setButtonText(User1, i18n("Save As..."));
|
|
|
|
mTextEdit = new PimCommon::RichTextEditorWidget( this );
|
|
mTextEdit->setReadOnly( true );
|
|
setMainWidget( mTextEdit );
|
|
readConfig();
|
|
connect(this, SIGNAL(user1Clicked()), this, SLOT(slotSaveAs()));
|
|
}
|
|
|
|
SieveScriptParsingErrorDialog::~SieveScriptParsingErrorDialog()
|
|
{
|
|
writeConfig();
|
|
}
|
|
|
|
void SieveScriptParsingErrorDialog::setError(QString script, QString error)
|
|
{
|
|
QString str;
|
|
str = QLatin1String("<b>") + i18n("Sieve script:") + QLatin1String("</b><br>");
|
|
str += script.replace(QLatin1Char('\n'), QLatin1String("<br>")) + QLatin1String("<br><br>");
|
|
str += QLatin1String("<b>") + i18n("Errors reported:") + QLatin1String("</b><br>");
|
|
str += error.replace(QLatin1Char('\n'), QLatin1String("<br>")) + QLatin1String("<br>");
|
|
mTextEdit->setHtml(str);
|
|
}
|
|
|
|
void SieveScriptParsingErrorDialog::readConfig()
|
|
{
|
|
KConfigGroup group( KGlobal::config(), "SieveScriptParsingErrorDialog" );
|
|
const QSize sizeDialog = group.readEntry( "Size", QSize(800,600) );
|
|
if ( sizeDialog.isValid() ) {
|
|
resize( sizeDialog );
|
|
}
|
|
}
|
|
|
|
void SieveScriptParsingErrorDialog::writeConfig()
|
|
{
|
|
KConfigGroup group( KGlobal::config(), "SieveScriptParsingErrorDialog" );
|
|
group.writeEntry( "Size", size() );
|
|
}
|
|
|
|
void SieveScriptParsingErrorDialog::slotSaveAs()
|
|
{
|
|
const QString filter = i18n( "all files (*)" );
|
|
PimCommon::Util::saveTextAs(mTextEdit->toPlainText(), filter, this, KUrl(), i18n("Save Log To File"));
|
|
}
|
|
|
|
|