diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | 460c52653ab0dcca6f19a4f492ed2c5e4e963ab0 (patch) | |
tree | 67208f7c145782a7e90b123b982ca78d88cc2c87 /korn/account_input.cpp | |
download | tdepim-460c52653ab0dcca6f19a4f492ed2c5e4e963ab0.tar.gz tdepim-460c52653ab0dcca6f19a4f492ed2c5e4e963ab0.zip |
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
Diffstat (limited to 'korn/account_input.cpp')
-rw-r--r-- | korn/account_input.cpp | 173 |
1 files changed, 173 insertions, 0 deletions
diff --git a/korn/account_input.cpp b/korn/account_input.cpp new file mode 100644 index 000000000..363e04751 --- /dev/null +++ b/korn/account_input.cpp @@ -0,0 +1,173 @@ +/* + * Copyright (C) 2005, 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 + */ + + +#include "account_input.h" + +#include <kurlrequester.h> +#include <klineedit.h> + +#include <qcheckbox.h> +#include <qcombobox.h> +#include <qlabel.h> +#include <qstring.h> +#include <qstringlist.h> +#include <qvalidator.h> + +AccountInput::AccountInput( const QString& configName ) + : _configName( new QString( configName ) ) +{ +} + +AccountInput::~AccountInput() +{ + delete _configName; +} + +QString AccountInput::configName() const +{ + return *_configName; +} + +TextInput::TextInput( QWidget *parent, const QString& title, Type type, const QString& defaul, const QString& configName ) + : AccountInput( configName ) +{ + _left = new QLabel( title, parent, "label" ); + _right = new KLineEdit( "", parent, "edit" ); + switch( type ) + { + case text: + break; + case password: + _right->setEchoMode( QLineEdit::Password ); + break; + } + setValue( defaul ); +} + +TextInput::TextInput( QWidget *parent, const QString& title, int min, int max, const QString& defaul, const QString& configName ) + : AccountInput( configName ) +{ + _left = new QLabel( title, parent, "label" ); + _right = new KLineEdit( "", parent, "edit" ); + _right->setValidator( new QIntValidator( min, max, _right, "validator" ) ); + setValue( defaul ); +} + +TextInput::~TextInput() +{ + delete _left; + delete _right; +} + +QString TextInput::value() const +{ + return _right->text(); +} + +void TextInput::setValue( const QString& value ) +{ + return _right->setText( value ); +} + +URLInput::URLInput( QWidget *parent, const QString& title, const QString& defaul, const QString& configName ) + : AccountInput( configName ) +{ + _left = new QLabel( title, parent, "label" ); + _right = new KURLRequester( "", parent, "kurledit" ); + setValue( defaul ); +} + +URLInput::~URLInput() +{ + delete _left; + delete _right; +} + +QString URLInput::value() const +{ + return _right->url(); +} + +void URLInput::setValue( const QString& value ) +{ + _right->setURL( value ); +} + +ComboInput::ComboInput( QWidget *parent, const QString& title, const QMap<QString, QString>& list, + const QString& defaul, const QString& configName ) + : AccountInput( configName ) + , _list( new QMap< QString, QString >( list ) ) +{ + _left = new QLabel( title, parent, "label" ); + _right = new QComboBox( false, parent, "combo" ); + _right->insertStringList( QStringList( _list->values() ) ); + setValue( defaul ); +} + +ComboInput::~ComboInput() +{ + delete _left; + delete _right; +} + +QString ComboInput::value() const +{ + if( _right->currentItem() >= 0 ) + return _list->keys()[ _right->currentItem() ]; + else + return ""; +} + +void ComboInput::setValue( const QString& value ) +{ + if( _list->contains( value ) ) + _right->setCurrentItem( _list->keys().findIndex( value ) ); + else + _right->setCurrentItem( -1 ); +} + +CheckboxInput::CheckboxInput( QWidget *parent, const QString& title, const QString& defaul, const QString& configName ) + : AccountInput( configName ) +{ + _right = new QCheckBox( title, parent, "checkbox" ); + setValue( defaul ); +} + +CheckboxInput::~CheckboxInput() +{ + delete _right; +} + +QString CheckboxInput::value() const +{ + if( _right->isChecked() ) + return "true"; + else + return "false"; +} + +void CheckboxInput::setValue( const QString& value ) +{ + if( value == "true" ) + _right->setChecked( true ); + else if( value == "false" ) + _right->setChecked( false ); + //Elsewise: do nothing +} + |