summaryrefslogtreecommitdiffstats
path: root/libkdepim/designerfields.cpp
diff options
context:
space:
mode:
authortoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
committertoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
commit460c52653ab0dcca6f19a4f492ed2c5e4e963ab0 (patch)
tree67208f7c145782a7e90b123b982ca78d88cc2c87 /libkdepim/designerfields.cpp
downloadtdepim-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 'libkdepim/designerfields.cpp')
-rw-r--r--libkdepim/designerfields.cpp251
1 files changed, 251 insertions, 0 deletions
diff --git a/libkdepim/designerfields.cpp b/libkdepim/designerfields.cpp
new file mode 100644
index 00000000..8073bf88
--- /dev/null
+++ b/libkdepim/designerfields.cpp
@@ -0,0 +1,251 @@
+/*
+ This file is part of libkdepim.
+
+ Copyright (c) 2004 Tobias Koenig <tokoe@kde.org>
+ Copyright (c) 2004 Cornelius Schumacher <schumacher@kde.org>
+
+ This library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Library General Public
+ License as published by the Free Software Foundation; either
+ version 2 of the License, or (at your option) any later version.
+
+ This library 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
+ Library General Public License for more details.
+
+ You should have received a copy of the GNU Library General Public License
+ along with this library; see the file COPYING.LIB. If not, write to
+ the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ Boston, MA 02110-1301, USA.
+*/
+
+#include <qcheckbox.h>
+#include <qcombobox.h>
+#include <qdatetimeedit.h>
+#include <qlayout.h>
+#include <qobjectlist.h>
+#include <qspinbox.h>
+#include <qregexp.h>
+#include <qtextedit.h>
+#include <qwidgetfactory.h>
+
+#include <kdatepicker.h>
+#include <kdatetimewidget.h>
+#include <kdialog.h>
+#include <klineedit.h>
+#include <kstandarddirs.h>
+#include <kdebug.h>
+
+#include "designerfields.h"
+
+using namespace KPIM;
+
+DesignerFields::DesignerFields( const QString &uiFile, QWidget *parent,
+ const char *name )
+ : QWidget( parent, name )
+{
+ initGUI( uiFile );
+}
+
+void DesignerFields::initGUI( const QString &uiFile )
+{
+ QVBoxLayout *layout = new QVBoxLayout( this );
+
+ QWidget *wdg = QWidgetFactory::create( uiFile, 0, this );
+ if ( !wdg ) {
+ kdError() << "No ui file found" << endl;
+ return;
+ }
+
+ mTitle = wdg->caption();
+ mIdentifier = wdg->name();
+
+ layout->addWidget( wdg );
+
+ QObjectList *list = wdg->queryList( "QWidget" );
+ QObjectListIt it( *list );
+
+ QStringList allowedTypes;
+ allowedTypes << "QLineEdit"
+ << "QTextEdit"
+ << "QSpinBox"
+ << "QCheckBox"
+ << "QComboBox"
+ << "QDateTimeEdit"
+ << "KLineEdit"
+ << "KDateTimeWidget"
+ << "KDatePicker";
+
+ while ( it.current() ) {
+ if ( allowedTypes.contains( it.current()->className() ) ) {
+ QString name = it.current()->name();
+ if ( name.startsWith( "X_" ) ) {
+ name = name.mid( 2 );
+
+ QWidget *widget = static_cast<QWidget*>( it.current() );
+ if ( !name.isEmpty() )
+ mWidgets.insert( name, widget );
+
+ if ( it.current()->inherits( "QLineEdit" ) )
+ connect( it.current(), SIGNAL( textChanged( const QString& ) ),
+ SIGNAL( modified() ) );
+ else if ( it.current()->inherits( "QSpinBox" ) )
+ connect( it.current(), SIGNAL( valueChanged( int ) ),
+ SIGNAL( modified() ) );
+ else if ( it.current()->inherits( "QCheckBox" ) )
+ connect( it.current(), SIGNAL( toggled( bool ) ),
+ SIGNAL( modified() ) );
+ else if ( it.current()->inherits( "QComboBox" ) )
+ connect( it.current(), SIGNAL( activated( const QString& ) ),
+ SIGNAL( modified() ) );
+ else if ( it.current()->inherits( "QDateTimeEdit" ) )
+ connect( it.current(), SIGNAL( valueChanged( const QDateTime& ) ),
+ SIGNAL( modified() ) );
+ else if ( it.current()->inherits( "KDateTimeWidget" ) )
+ connect( it.current(), SIGNAL( valueChanged( const QDateTime& ) ),
+ SIGNAL( modified() ) );
+ else if ( it.current()->inherits( "KDatePicker" ) )
+ connect( it.current(), SIGNAL( dateChanged( QDate ) ),
+ SIGNAL( modified() ) );
+ else if ( it.current()->inherits( "QTextEdit" ) )
+ connect( it.current(), SIGNAL( textChanged() ),
+ SIGNAL( modified() ) );
+
+ if ( !widget->isEnabled() )
+ mDisabledWidgets.append( widget );
+ }
+ }
+
+ ++it;
+ }
+
+ delete list;
+}
+
+QString DesignerFields::identifier() const
+{
+ return mIdentifier;
+}
+
+QString DesignerFields::title() const
+{
+ return mTitle;
+}
+
+void DesignerFields::load( DesignerFields::Storage *storage )
+{
+ QStringList keys = storage->keys();
+
+ // clear all custom page widgets
+ // we can't do this in the following loop, as it works on the
+ // custom fields of the vcard, which may not be set.
+ QMap<QString, QWidget *>::ConstIterator widIt;
+ for ( widIt = mWidgets.begin(); widIt != mWidgets.end(); ++widIt ) {
+ QString value;
+ if ( widIt.data()->inherits( "QLineEdit" ) ) {
+ QLineEdit *wdg = static_cast<QLineEdit*>( widIt.data() );
+ wdg->setText( QString::null );
+ } else if ( widIt.data()->inherits( "QSpinBox" ) ) {
+ QSpinBox *wdg = static_cast<QSpinBox*>( widIt.data() );
+ wdg->setValue( wdg->minValue() );
+ } else if ( widIt.data()->inherits( "QCheckBox" ) ) {
+ QCheckBox *wdg = static_cast<QCheckBox*>( widIt.data() );
+ wdg->setChecked( false );
+ } else if ( widIt.data()->inherits( "QDateTimeEdit" ) ) {
+ QDateTimeEdit *wdg = static_cast<QDateTimeEdit*>( widIt.data() );
+ wdg->setDateTime( QDateTime::currentDateTime() );
+ } else if ( widIt.data()->inherits( "KDateTimeWidget" ) ) {
+ KDateTimeWidget *wdg = static_cast<KDateTimeWidget*>( widIt.data() );
+ wdg->setDateTime( QDateTime::currentDateTime() );
+ } else if ( widIt.data()->inherits( "KDatePicker" ) ) {
+ KDatePicker *wdg = static_cast<KDatePicker*>( widIt.data() );
+ wdg->setDate( QDate::currentDate() );
+ } else if ( widIt.data()->inherits( "QComboBox" ) ) {
+ QComboBox *wdg = static_cast<QComboBox*>( widIt.data() );
+ wdg->setCurrentItem( 0 );
+ } else if ( widIt.data()->inherits( "QTextEdit" ) ) {
+ QTextEdit *wdg = static_cast<QTextEdit*>( widIt.data() );
+ wdg->setText( QString::null );
+ }
+ }
+
+ QStringList::ConstIterator it2;
+ for ( it2 = keys.begin(); it2 != keys.end(); ++it2 ) {
+ QString value = storage->read( *it2 );
+
+ QMap<QString, QWidget *>::ConstIterator it = mWidgets.find( *it2 );
+ if ( it != mWidgets.end() ) {
+ if ( it.data()->inherits( "QLineEdit" ) ) {
+ QLineEdit *wdg = static_cast<QLineEdit*>( it.data() );
+ wdg->setText( value );
+ } else if ( it.data()->inherits( "QSpinBox" ) ) {
+ QSpinBox *wdg = static_cast<QSpinBox*>( it.data() );
+ wdg->setValue( value.toInt() );
+ } else if ( it.data()->inherits( "QCheckBox" ) ) {
+ QCheckBox *wdg = static_cast<QCheckBox*>( it.data() );
+ wdg->setChecked( value == "true" || value == "1" );
+ } else if ( it.data()->inherits( "QDateTimeEdit" ) ) {
+ QDateTimeEdit *wdg = static_cast<QDateTimeEdit*>( it.data() );
+ wdg->setDateTime( QDateTime::fromString( value, Qt::ISODate ) );
+ } else if ( it.data()->inherits( "KDateTimeWidget" ) ) {
+ KDateTimeWidget *wdg = static_cast<KDateTimeWidget*>( it.data() );
+ wdg->setDateTime( QDateTime::fromString( value, Qt::ISODate ) );
+ } else if ( it.data()->inherits( "KDatePicker" ) ) {
+ KDatePicker *wdg = static_cast<KDatePicker*>( it.data() );
+ wdg->setDate( QDate::fromString( value, Qt::ISODate ) );
+ } else if ( it.data()->inherits( "QComboBox" ) ) {
+ QComboBox *wdg = static_cast<QComboBox*>( it.data() );
+ wdg->setCurrentText( value );
+ } else if ( it.data()->inherits( "QTextEdit" ) ) {
+ QTextEdit *wdg = static_cast<QTextEdit*>( it.data() );
+ wdg->setText( value );
+ }
+ }
+ }
+}
+
+void DesignerFields::save( DesignerFields::Storage *storage )
+{
+ QMap<QString, QWidget*>::Iterator it;
+ for ( it = mWidgets.begin(); it != mWidgets.end(); ++it ) {
+ QString value;
+ if ( it.data()->inherits( "QLineEdit" ) ) {
+ QLineEdit *wdg = static_cast<QLineEdit*>( it.data() );
+ value = wdg->text();
+ } else if ( it.data()->inherits( "QSpinBox" ) ) {
+ QSpinBox *wdg = static_cast<QSpinBox*>( it.data() );
+ value = QString::number( wdg->value() );
+ } else if ( it.data()->inherits( "QCheckBox" ) ) {
+ QCheckBox *wdg = static_cast<QCheckBox*>( it.data() );
+ value = ( wdg->isChecked() ? "true" : "false" );
+ } else if ( it.data()->inherits( "QDateTimeEdit" ) ) {
+ QDateTimeEdit *wdg = static_cast<QDateTimeEdit*>( it.data() );
+ value = wdg->dateTime().toString( Qt::ISODate );
+ } else if ( it.data()->inherits( "KDateTimeWidget" ) ) {
+ KDateTimeWidget *wdg = static_cast<KDateTimeWidget*>( it.data() );
+ value = wdg->dateTime().toString( Qt::ISODate );
+ } else if ( it.data()->inherits( "KDatePicker" ) ) {
+ KDatePicker *wdg = static_cast<KDatePicker*>( it.data() );
+ value = wdg->date().toString( Qt::ISODate );
+ } else if ( it.data()->inherits( "QComboBox" ) ) {
+ QComboBox *wdg = static_cast<QComboBox*>( it.data() );
+ value = wdg->currentText();
+ } else if ( it.data()->inherits( "QTextEdit" ) ) {
+ QTextEdit *wdg = static_cast<QTextEdit*>( it.data() );
+ value = wdg->text();
+ }
+
+ storage->write( it.key(), value );
+ }
+}
+
+void DesignerFields::setReadOnly( bool readOnly )
+{
+ QMap<QString, QWidget*>::Iterator it;
+ for ( it = mWidgets.begin(); it != mWidgets.end(); ++it )
+ if ( mDisabledWidgets.find( it.data() ) == mDisabledWidgets.end() )
+ it.data()->setEnabled( !readOnly );
+}
+
+#include "designerfields.moc"