From 460c52653ab0dcca6f19a4f492ed2c5e4e963ab0 Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- korn/kornboxcfgimpl.cpp | 372 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 372 insertions(+) create mode 100644 korn/kornboxcfgimpl.cpp (limited to 'korn/kornboxcfgimpl.cpp') diff --git a/korn/kornboxcfgimpl.cpp b/korn/kornboxcfgimpl.cpp new file mode 100644 index 000000000..6ab6ce5e0 --- /dev/null +++ b/korn/kornboxcfgimpl.cpp @@ -0,0 +1,372 @@ +/* + * Copyright (C) 2004, Mart Kelder (mart.kde@hccnet.nl) + * + * This program 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. + * + * 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 + */ + +class KConfig; +#include "kornboxcfgimpl.h" + +#include "keditlistboxman.h" +#include "kornaccountcfgimpl.h" +#include "password.h" + +#include +#include +#include +#include +#include +#include +#include +#include + +#include +#include +#include +#include +#include + +KornBoxCfgImpl::KornBoxCfgImpl( QWidget * parent, const char * name ) + : KornBoxCfg( parent, name ), + _config( 0 ), + _base( 0 ), + _index( -1 ) +{ + _fonts[ 0 ] = new QFont; + _fonts[ 1 ] = new QFont; + _anims[ 0 ] = new QString; + _anims[ 1 ] = new QString; + + lbLeft->setText( i18n( "Left mousebutton", "Left" ) ); + if( lbLeft->text() == "Left" ) + lbLeft->setText( i18n( "Left" ) ); + lbRight->setText( i18n( "Right mousebutton", "Right" ) ); + if( lbRight->text() == "Right" ) + lbRight->setText( i18n( "Right" ) ); + + connect( parent, SIGNAL( okClicked() ), this, SLOT( slotOK() ) ); + connect( parent, SIGNAL( cancelClicked() ), this, SLOT( slotCancel() ) ); + + elbAccounts->setTitle( i18n( "Accounts" ) ); + + connect( elbAccounts, SIGNAL( elementsSwapped( int, int ) ), this, SLOT( slotAccountsSwapped( int, int ) ) ); + connect( elbAccounts, SIGNAL( elementDeleted( int ) ), this, SLOT( slotAccountDeleted( int ) ) ); +} + +KornBoxCfgImpl::~KornBoxCfgImpl() +{ + delete _fonts[ 0 ]; + delete _fonts[ 1 ]; + delete _anims[ 0 ]; + delete _anims[ 1 ]; +} + +void KornBoxCfgImpl::readConfig( KConfig * config, const int index ) +{ + _config = config; + _index = index; + + _config->setGroup( QString( "korn-%1" ).arg( index ) ); + + readViewConfig(); + readEventConfig(); + readDCOPConfig(); + readAccountsConfig(); +} + +void KornBoxCfgImpl::writeConfig( KConfig * config, const int index ) +{ + config->setGroup( QString( "korn-%1" ).arg( index ) ); + + writeViewConfig( config ); + writeEventConfig( config ); + writeDCOPConfig( config ); + writeAccountsConfig( config ); +} + +//private +void KornBoxCfgImpl::readViewConfig() +{ + this->chNormalText->setChecked(_config->readBoolEntry ( "hasnormalfgcolour", true ) ); + this->cbNormalText->setColor( _config->readColorEntry( "normalfgcolour", &Qt::black ) ); + this->chNewText->setChecked( _config->readBoolEntry ( "hasnewfgcolour", true ) ); + this->cbNewText->setColor( _config->readColorEntry( "newfgcolour", &Qt::black ) ); + this->chNormalBack->setChecked(_config->readBoolEntry ( "hasnormalbgcolour", false ) ); + this->cbNormalBack->setColor( _config->readColorEntry( "normalbgcolour", &Qt::white ) ); + this->chNewBack->setChecked( _config->readBoolEntry ( "hasnewbgcolour", false ) ); + this->cbNewBack->setColor( _config->readColorEntry( "newbgcolour", &Qt::white ) ); + + this->chNormalIcon->setChecked(_config->readBoolEntry( "hasnormalicon", false ) ); + this->ibNormalIcon->setIcon( _config->readEntry ( "normalicon", "" ) ); + this->chNewIcon->setChecked( _config->readBoolEntry( "hasnewicon", false ) ); + this->ibNewIcon->setIcon( _config->readEntry ( "newicon", "" ) ); + + this->chNormalFont->setChecked(_config->readBoolEntry( "hasnormalfont", false ) ); + this->chNewFont->setChecked (_config->readBoolEntry( "hasnewfont", false ) ); + this->chNormalAnim->setChecked(_config->readBoolEntry( "hasnormalanim", false ) ); + this->chNewAnim->setChecked( _config->readBoolEntry( "hasnewanim", false ) ); + *_fonts[ 0 ] = _config->readFontEntry( "normalfont" ); + *_fonts[ 1 ] = _config->readFontEntry( "newfont" ); + *_anims[ 0 ] = _config->readEntry ( "normalanim", "" ); + *_anims[ 1 ] = _config->readEntry ( "newanim", "" ); +} + +void KornBoxCfgImpl::readEventConfig() +{ + this->chLeftRecheck ->setChecked( _config->readBoolEntry( "leftrecheck", true ) ); + this->chMiddleRecheck->setChecked( _config->readBoolEntry( "middlerecheck", false ) ); + this->chRightRecheck ->setChecked( _config->readBoolEntry( "rightrecheck", false ) ); + + this->chLeftReset ->setChecked( _config->readBoolEntry( "leftreset", false ) ); + this->chMiddleReset->setChecked( _config->readBoolEntry( "middlereset", false ) ); + this->chRightReset ->setChecked( _config->readBoolEntry( "rightreset", false ) ); + + this->chLeftView ->setChecked( _config->readBoolEntry( "leftview", false ) ); + this->chMiddleView->setChecked( _config->readBoolEntry( "middleview", false ) ); + this->chRightView ->setChecked( _config->readBoolEntry( "rightview", false ) ); + + this->chLeftRun ->setChecked( _config->readBoolEntry( "leftrun", false ) ); + this->chMiddleRun->setChecked( _config->readBoolEntry( "middlerun", false ) ); + this->chRightRun ->setChecked( _config->readBoolEntry( "rightrun", false ) ); + + this->chLeftPopup ->setChecked( _config->readBoolEntry( "leftpopup", false ) ); + this->chMiddlePopup->setChecked( _config->readBoolEntry( "middlepopup", false ) ); + this->chRightPopup ->setChecked( _config->readBoolEntry( "rightpopup", true ) ); + + this->edCommand->setURL( _config->readEntry( "command", "" ) ); + + this->edNewRun->setURL( _config->readEntry( "newcommand", "" ) ); + this->edPlaySound->setURL( _config->readEntry( "sound", "" ) ); + this->chShowPassive->setChecked( _config->readBoolEntry( "passivepopup", false ) ); + this->chPassiveDate->setChecked( _config->readBoolEntry( "passivedate", false ) ); +} + +void KornBoxCfgImpl::readAccountsConfig() +{ + elbAccounts->setGroupName( QString( "korn-%1-%2" ).arg( _index ) ); + elbAccounts->setConfig( _config ); +} + +void KornBoxCfgImpl::readDCOPConfig() +{ + elbDCOP->clear(); + elbDCOP->insertStringList( _config->readListEntry( "dcop", ',' ) ); +} + +void KornBoxCfgImpl::writeViewConfig( KConfig* config ) +{ + QColor invalid; + + config->writeEntry( "hasnormalfgcolour", this->chNormalText->isChecked() ); + config->writeEntry( "normalfgcolour", this->chNormalText->isChecked() ? this->cbNormalText->color() : invalid ); + config->writeEntry( "hasnewfgcolour", this->chNewText->isChecked() ); + config->writeEntry( "newfgcolour", this->chNewText->isChecked() ? this->cbNewText->color() : invalid ); + config->writeEntry( "hasnormalbgcolour", this->chNormalBack->isChecked() ); + config->writeEntry( "normalbgcolour", this->chNormalBack->isChecked() ? this->cbNormalBack->color() : invalid ); + config->writeEntry( "hasnewbgcolour", this->chNewBack->isChecked() ); + config->writeEntry( "newbgcolour", this->chNewBack->isChecked() ? this->cbNewBack->color() : invalid ); + + config->writeEntry( "hasnormalicon", this->chNormalIcon->isChecked() ); + config->writeEntry( "normalicon", this->chNormalIcon->isChecked() ? this->ibNormalIcon->icon() : "" ); + config->writeEntry( "hasnewicon", this->chNewIcon->isChecked() ); + config->writeEntry( "newicon", this->chNewIcon->isChecked() ? this->ibNewIcon->icon() : "" ); + + config->writeEntry( "hasnormalfont", this->chNormalFont->isChecked() ); + config->writeEntry( "normalfont", this->chNormalFont->isChecked() ? *_fonts[ 0 ] : QFont() ); + config->writeEntry( "hasnewfont", this->chNewFont->isChecked() ); + config->writeEntry( "newfont", this->chNewFont->isChecked() ? *_fonts[ 1 ] : QFont() ); + config->writeEntry( "hasnormalanim", this->chNormalAnim->isChecked() ); + config->writeEntry( "normalanim", this->chNormalAnim->isChecked() ? *_anims[ 0 ] : "" ); + config->writeEntry( "hasnewanim", this->chNewAnim->isChecked() ); + config->writeEntry( "newanim", this->chNewAnim->isChecked() ? *_anims[ 1 ] : "" ); + +} + +void KornBoxCfgImpl::writeEventConfig( KConfig *config ) +{ + config->writeEntry( "leftrecheck", this->chLeftRecheck ->isChecked() ); + config->writeEntry( "middlerecheck", this->chMiddleRecheck->isChecked() ); + config->writeEntry( "rightrecheck", this->chRightRecheck ->isChecked() ); + + config->writeEntry( "leftreset", this->chLeftReset ->isChecked() ); + config->writeEntry( "middlereset", this->chMiddleReset->isChecked() ); + config->writeEntry( "rightreset", this->chRightReset ->isChecked() ); + + config->writeEntry( "leftview", this->chLeftView ->isChecked() ); + config->writeEntry( "middleview", this->chMiddleView->isChecked() ); + config->writeEntry( "rightview", this->chRightView ->isChecked() ); + + config->writeEntry( "leftrun", this->chLeftRun ->isChecked() ); + config->writeEntry( "middlerun", this->chMiddleRun->isChecked() ); + config->writeEntry( "rightrun", this->chRightRun ->isChecked() ); + + config->writeEntry( "leftpopup", this->chLeftPopup ->isChecked() ); + config->writeEntry( "middlepopup", this->chMiddlePopup->isChecked() ); + config->writeEntry( "rightpopup", this->chRightPopup ->isChecked() ); + + config->writeEntry( "command", this->edCommand->url() ); + + config->writeEntry( "newcommand", this->edNewRun->url() ); + config->writeEntry( "sound", this->edPlaySound->url() ); + config->writeEntry( "passivepopup", this->chShowPassive->isChecked() ); + config->writeEntry( "passivedate", this->chPassiveDate->isChecked() ); +} + +void KornBoxCfgImpl::writeAccountsConfig( KConfig */*config */) +{ +} + +void KornBoxCfgImpl::writeDCOPConfig( KConfig *config ) +{ + config->writeEntry( "dcop", elbDCOP->items(), ',' ); +} + +void KornBoxCfgImpl::slotEditBox() +{ + if( _base ) + return; //Already a dialog open + if( elbAccounts->listBox()->currentItem() < 0 ) + return; //No item selected + elbAccounts->setEnabled( false ); + + _base = new KDialogBase( this, "Account Dialog", false, i18n("Box Configuration"), + KDialogBase::Ok | KDialogBase::Cancel, KDialogBase::Ok, true ); + KornAccountCfgImpl *widget = new KornAccountCfgImpl( _base, "Account Widget" ); + + _base->setMainWidget( widget ); + + connect( _base, SIGNAL( finished() ), this, SLOT( slotDialogDestroyed() ) ); + + _group = new KConfigGroup( _config, QString( "korn-%1-%2" ). + arg( _index ).arg(elbAccounts->listBox()->currentItem() ) ); + + QMap< QString, QString > *map = new QMap< QString, QString >( _config->entryMap( QString( "korn-%1-%2" ). + arg( _index ).arg(elbAccounts->listBox()->currentItem() ) ) ); + widget->readConfig( _group, map, _index, elbAccounts->listBox()->currentItem() ); + delete map; + + _base->show(); +} + +void KornBoxCfgImpl::slotActivated( const QString& ) +{ + slotEditBox(); +} + +void KornBoxCfgImpl::slotActivated( const int ) +{ + slotEditBox(); +} + +void KornBoxCfgImpl::slotSetDefaults( const QString& name, const int, KConfig* config ) +{ + config->writeEntry( "name", name ); + config->writeEntry( "protocol", "mbox" ); + config->writeEntry( "host", QString::null ); + config->writeEntry( "port", QString::null ); + config->writeEntry( "username", QString::null ); + config->writeEntry( "mailbox", "/var/spool/mail/" ); + config->writeEntry( "savepassword", 0 ); + config->writeEntry( "password", QString::null ); + config->writeEntry( "auth", QString::null ); + config->writeEntry( "interval", 300 ); + config->writeEntry( "boxsettings", true ); + config->writeEntry( "command", "" ); + config->writeEntry( "sound", "" ); + config->writeEntry( "passivepopup", false ); + config->writeEntry( "passivedate", false ); +} + +void KornBoxCfgImpl::slotChangeNormalAnim() +{ + *_anims[ 0 ] = KFileDialog::getOpenFileName( *_anims[ 0 ], ".mng .gif", this, i18n("Normal animation") ); +} + +void KornBoxCfgImpl::slotChangeNewAnim() +{ + *_anims[ 1 ] = KFileDialog::getOpenFileName( *_anims[ 1 ], ".mng .gif", this, i18n("Normal animation") ); +} + +void KornBoxCfgImpl::slotChangeNormalFont() +{ + KFontDialog fd( this, "font dialog" ); + fd.setFont( *_fonts[ 0 ], false ); + fd.exec(); + *_fonts[ 0 ] = fd.font(); +} + +void KornBoxCfgImpl::slotChangeNewFont() +{ + KFontDialog fd( this, "font dialog" ); + fd.setFont( *_fonts[ 1 ], false ); + fd.exec(); + *_fonts[ 1 ] = fd.font(); +} + +void KornBoxCfgImpl::slotNormalAnimToggled( bool enabled ) +{ + this->chNormalText->setEnabled( !enabled ); + //this->chNormalBack->setEnabled( !enabled ); + this->chNormalIcon->setEnabled( !enabled ); + this->chNormalFont->setEnabled( !enabled ); + + this->cbNormalText->setEnabled( !enabled && this->chNormalText->isChecked() ); + //this->cbNormalBack->setEnabled( !enabled && this->chNormalBack->isChecked() ); + this->ibNormalIcon->setEnabled( !enabled && this->chNormalIcon->isChecked() ); + this->pbNormalFont->setEnabled( !enabled && this->chNormalFont->isChecked() ); +} + +void KornBoxCfgImpl::slotNewAnimToggled( bool enabled ) +{ + this->chNewText->setEnabled( !enabled ); + //this->chNewBack->setEnabled( !enabled ); + this->chNewIcon->setEnabled( !enabled ); + this->chNewFont->setEnabled( !enabled ); + + this->cbNewText->setEnabled( !enabled && this->chNewText->isChecked() ); + //this->cbNewBack->setEnabled( !enabled && this->chNewBack->isChecked() ); + this->ibNewIcon->setEnabled( !enabled && this->chNewIcon->isChecked() ); + this->pbNewFont->setEnabled( !enabled && this->chNewFont->isChecked() ); +} + +void KornBoxCfgImpl::slotOK() +{ + writeConfig( _config, _index ); +} + +void KornBoxCfgImpl::slotCancel() +{ + readConfig( _config, _index ); +} + +void KornBoxCfgImpl::slotDialogDestroyed() +{ + _base->deleteLater(); _base = 0; + _group->deleteLater(); + elbAccounts->setEnabled( true ); +} + +void KornBoxCfgImpl::slotAccountsSwapped( int account1, int account2 ) +{ + KOrnPassword::swapKOrnWalletPassword( _index, account1, _index, account2 ); +} + +void KornBoxCfgImpl::slotAccountDeleted( int account ) +{ + KOrnPassword::deleteKOrnPassword( _index, account ); +} + +#include "kornboxcfgimpl.moc" + -- cgit v1.2.1