/* kwatchgnupgconfig.cpp This file is part of Kleopatra, the KDE keymanager Copyright (c) 2001,2002,2004 Klarälvdalens Datakonsult AB Kleopatra is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. Kleopatra 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 In addition, as a special exception, the copyright holders give permission to link the code of this program with any edition of the TQt library by Trolltech AS, Norway (or with modified versions of TQt that use the same license as TQt), and distribute linked combinations including the two. You must obey the GNU General Public License in all respects for all of the code used other than TQt. If you modify this file, you may extend this exception to your version of the file, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. */ #include "kwatchgnupgconfig.h" #include #include #include #include #include #include #include #include #include #include #include #include static const char* log_levels[] = { "none", "basic", "advanced", "expert", "guru" }; static int log_level_to_int( const TQString& loglevel ) { if( loglevel == "none" ) { return 0; } else if( loglevel == "basic" ) { return 1; } else if( loglevel == "advanced" ) { return 2; } else if( loglevel == "expert" ) { return 3; } else if( loglevel == "guru" ) { return 4; } else { // default return 1; } } KWatchGnuPGConfig::KWatchGnuPGConfig( TQWidget* parent, const char* name ) : KDialogBase( Plain, i18n("Configure KWatchGnuPG"), Ok|Cancel, Ok, parent, name ) { // tmp vars: TQWidget * w; TQGridLayout * glay; TQGroupBox * group; TQWidget * top = plainPage(); TQVBoxLayout * vlay = new TQVBoxLayout( top, 0, spacingHint() ); group = new TQVGroupBox( i18n("WatchGnuPG"), top ); group->layout()->setSpacing( spacingHint() ); w = new TQWidget( group ); glay = new TQGridLayout( w, 3, 2, 0, spacingHint() ); glay->setColStretch( 1, 1 ); int row = -1; ++row; mExeED = new KURLRequester( w ); glay->addWidget( new TQLabel( mExeED, i18n("&Executable:"), w ), row, 0 ); glay->addWidget( mExeED, row, 1 ); connect( mExeED, TQT_SIGNAL(textChanged(const TQString&)), TQT_SLOT(slotChanged()) ); ++row; mSocketED = new KURLRequester( w ); glay->addWidget( new TQLabel( mSocketED, i18n("&Socket:"), w ), row, 0 ); glay->addWidget( mSocketED, row, 1 ); connect( mSocketED, TQT_SIGNAL(textChanged(const TQString&)), TQT_SLOT(slotChanged()) ); ++row; mLogLevelCB = new TQComboBox( false, w ); mLogLevelCB->insertItem( i18n("None") ); mLogLevelCB->insertItem( i18n("Basic") ); mLogLevelCB->insertItem( i18n("Advanced") ); mLogLevelCB->insertItem( i18n("Expert") ); mLogLevelCB->insertItem( i18n("Guru") ); glay->addWidget( new TQLabel( mLogLevelCB, i18n("Default &log level:"), w ), row, 0 ); glay->addWidget( mLogLevelCB, row, 1 ); connect( mLogLevelCB, TQT_SIGNAL(activated(int)), TQT_SLOT(slotChanged()) ); vlay->addWidget( group ); /******************* Log Window group *******************/ group = new TQVGroupBox( i18n("Log Window"), top ); group->layout()->setSpacing( spacingHint() ); w = new TQWidget( group ); glay = new TQGridLayout( w, 2, 3, 0, spacingHint() ); glay->setColStretch( 1, 1 ); row = -1; ++row; mLoglenSB = new TQSpinBox( 0, 1000000, 100, w ); mLoglenSB->setSuffix( i18n("history size spinbox suffix"," lines") ); mLoglenSB->setSpecialValueText( i18n("unlimited") ); glay->addWidget( new TQLabel( mLoglenSB, i18n("&History size:"), w ), row, 0 ); glay->addWidget( mLoglenSB, row, 1 ); TQPushButton * button = new TQPushButton( i18n("Set &Unlimited"), w ); glay->addWidget( button, row, 2 ); connect( mLoglenSB, TQT_SIGNAL(valueChanged(int)), TQT_SLOT(slotChanged()) ); connect( button, TQT_SIGNAL(clicked()), TQT_SLOT(slotSetHistorySizeUnlimited()) ); ++row; mWordWrapCB = new TQCheckBox( i18n("Enable &word wrapping"), w ); mWordWrapCB->hide(); // TQTextEdit doesn't support word wrapping in LogText mode glay->addMultiCellWidget( mWordWrapCB, row, row, 0, 2 ); connect( mWordWrapCB, TQT_SIGNAL(clicked()), TQT_SLOT(slotChanged()) ); vlay->addWidget( group ); vlay->addStretch( 1 ); connect( this, TQT_SIGNAL(applyClicked()), TQT_SLOT(slotSave()) ); connect( this, TQT_SIGNAL(okClicked()), TQT_SLOT(slotSave()) ); } void KWatchGnuPGConfig::slotSetHistorySizeUnlimited() { mLoglenSB->setValue( 0 ); } void KWatchGnuPGConfig::loadConfig() { TDEConfig* config = kapp->config(); config->setGroup("WatchGnuPG"); mExeED->setURL( config->readEntry( "Executable", "watchgnupg" ) ); mSocketED->setURL( config->readEntry( "Socket", TQDir::home().canonicalPath() + "/.gnupg/log-socket") ); mLogLevelCB->setCurrentItem( log_level_to_int( config->readEntry( "LogLevel", "basic" ) ) ); config->setGroup("LogWindow"); mLoglenSB->setValue( config->readNumEntry( "MaxLogLen", 10000 ) ); mWordWrapCB->setChecked( config->readBoolEntry("WordWrap", false ) ); config->setGroup( TQString() ); enableButtonOK( false ); enableButtonApply( false ); } void KWatchGnuPGConfig::saveConfig() { TDEConfig* config = kapp->config(); config->setGroup("WatchGnuPG"); config->writeEntry( "Executable", mExeED->url() ); config->writeEntry( "Socket", mSocketED->url() ); config->writeEntry( "LogLevel", log_levels[mLogLevelCB->currentItem()] ); config->setGroup("LogWindow"); config->writeEntry( "MaxLogLen", mLoglenSB->value() ); config->writeEntry( "WordWrap", mWordWrapCB->isChecked() ); config->setGroup( TQString() ); config->sync(); enableButtonOK( false ); enableButtonApply( false ); } void KWatchGnuPGConfig::slotChanged() { enableButtonOK( true ); enableButtonApply( true ); } void KWatchGnuPGConfig::slotSave() { saveConfig(); emit reconfigure(); } #include "kwatchgnupgconfig.moc"