Page MenuHomePhorge

designerfields.cpp
No OneTemporary

designerfields.cpp

/*
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 "designerfields.h"
#include <KDatePicker>
#include <KDateTimeWidget>
#include <KDebug>
#include <KDialog>
#include <KLineEdit>
#include <KStandardDirs>
#include <QCheckBox>
#include <QComboBox>
#include <QLayout>
#include <QObject>
#include <QSpinBox>
#include <QRegExp>
#include <QTextEdit>
#include <QFile>
#include <QtDesigner/QFormBuilder>
#include <QVBoxLayout>
#include <Q3DateTimeEdit>
using namespace KPIM;
DesignerFields::DesignerFields( const QString &uiFile, QWidget *parent,
const char *name )
: QWidget( parent )
{
setObjectName(name);
initGUI( uiFile );
}
void DesignerFields::initGUI( const QString &uiFile )
{
QVBoxLayout *layout = new QVBoxLayout( this );
QFile f( uiFile );
f.open(QFile::ReadOnly);
QFormBuilder builder;
QWidget *wdg = builder.load( &f, this );
f.close();
if ( !wdg ) {
kError() <<"No ui file found";
return;
}
mTitle = wdg->windowTitle();
mIdentifier = wdg->objectName();
layout->addWidget( wdg );
QStringList allowedTypes;
allowedTypes << "QLineEdit"
<< "QTextEdit"
<< "QSpinBox"
<< "QCheckBox"
<< "QComboBox"
<< "QDateTimeEdit"
<< "KLineEdit"
<< "KDateTimeWidget"
<< "KDatePicker";
QList<QWidget*> list = wdg->findChildren<QWidget*>();
QWidget *it;
Q_FOREACH( it, list ) {
if ( allowedTypes.contains( it->metaObject()->className() ) ) {
QString name = it->objectName();
if ( name.startsWith( "X_" ) ) {
name = name.mid( 2 );
QWidget *widget = it;
if ( !name.isEmpty() )
mWidgets.insert( name, widget );
if ( it->inherits( "QLineEdit" ) )
connect( it, SIGNAL( textChanged( const QString& ) ),
SIGNAL( modified() ) );
else if ( it->inherits( "QSpinBox" ) )
connect( it, SIGNAL( valueChanged( int ) ),
SIGNAL( modified() ) );
else if ( it->inherits( "QCheckBox" ) )
connect( it, SIGNAL( toggled( bool ) ),
SIGNAL( modified() ) );
else if ( it->inherits( "QComboBox" ) )
connect( it, SIGNAL( activated( const QString& ) ),
SIGNAL( modified() ) );
else if ( it->inherits( "QDateTimeEdit" ) )
connect( it, SIGNAL( valueChanged( const QDateTime& ) ),
SIGNAL( modified() ) );
else if ( it->inherits( "KDateTimeWidget" ) )
connect( it, SIGNAL( valueChanged( const QDateTime& ) ),
SIGNAL( modified() ) );
else if ( it->inherits( "KDatePicker" ) )
connect( it, SIGNAL( dateChanged( QDate ) ),
SIGNAL( modified() ) );
else if ( it->inherits( "QTextEdit" ) )
connect( it, SIGNAL( textChanged() ),
SIGNAL( modified() ) );
if ( !widget->isEnabled() )
mDisabledWidgets.append( widget );
}
}
}
}
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.constBegin(); widIt != mWidgets.constEnd(); ++widIt ) {
QString value;
if ( widIt.value()->inherits( "QLineEdit" ) ) {
QLineEdit *wdg = static_cast<QLineEdit*>( widIt.value() );
wdg->setText( QString() );
} else if ( widIt.value()->inherits( "QSpinBox" ) ) {
QSpinBox *wdg = static_cast<QSpinBox*>( widIt.value() );
wdg->setValue( wdg->minimum() );
} else if ( widIt.value()->inherits( "QCheckBox" ) ) {
QCheckBox *wdg = static_cast<QCheckBox*>( widIt.value() );
wdg->setChecked( false );
} else if ( widIt.value()->inherits( "QDateTimeEdit" ) ) {
Q3DateTimeEdit *wdg = static_cast<Q3DateTimeEdit*>( widIt.value() );
wdg->setDateTime( QDateTime::currentDateTime() );
} else if ( widIt.value()->inherits( "KDateTimeWidget" ) ) {
KDateTimeWidget *wdg = static_cast<KDateTimeWidget*>( widIt.value() );
wdg->setDateTime( QDateTime::currentDateTime() );
} else if ( widIt.value()->inherits( "KDatePicker" ) ) {
KDatePicker *wdg = static_cast<KDatePicker*>( widIt.value() );
wdg->setDate( QDate::currentDate() );
} else if ( widIt.value()->inherits( "QComboBox" ) ) {
QComboBox *wdg = static_cast<QComboBox*>( widIt.value() );
wdg->setCurrentIndex( 0 );
} else if ( widIt.value()->inherits( "QTextEdit" ) ) {
QTextEdit *wdg = static_cast<QTextEdit*>( widIt.value() );
wdg->setPlainText( QString() );
}
}
QStringList::ConstIterator it2;
for ( it2 = keys.constBegin(); it2 != keys.constEnd(); ++it2 ) {
QString value = storage->read( *it2 );
QMap<QString, QWidget *>::ConstIterator it = mWidgets.constFind( *it2 );
if ( it != mWidgets.constEnd() ) {
if ( it.value()->inherits( "QLineEdit" ) ) {
QLineEdit *wdg = static_cast<QLineEdit*>( it.value() );
wdg->setText( value );
} else if ( it.value()->inherits( "QSpinBox" ) ) {
QSpinBox *wdg = static_cast<QSpinBox*>( it.value() );
wdg->setValue( value.toInt() );
} else if ( it.value()->inherits( "QCheckBox" ) ) {
QCheckBox *wdg = static_cast<QCheckBox*>( it.value() );
wdg->setChecked( value == "true" || value == "1" );
} else if ( it.value()->inherits( "QDateTimeEdit" ) ) {
Q3DateTimeEdit *wdg = static_cast<Q3DateTimeEdit*>( it.value() );
wdg->setDateTime( QDateTime::fromString( value, Qt::ISODate ) );
} else if ( it.value()->inherits( "KDateTimeWidget" ) ) {
KDateTimeWidget *wdg = static_cast<KDateTimeWidget*>( it.value() );
wdg->setDateTime( QDateTime::fromString( value, Qt::ISODate ) );
} else if ( it.value()->inherits( "KDatePicker" ) ) {
KDatePicker *wdg = static_cast<KDatePicker*>( it.value() );
wdg->setDate( QDate::fromString( value, Qt::ISODate ) );
} else if ( it.value()->inherits( "QComboBox" ) ) {
QComboBox *wdg = static_cast<QComboBox*>( it.value() );
wdg->setItemText( wdg->currentIndex(), value );
} else if ( it.value()->inherits( "QTextEdit" ) ) {
QTextEdit *wdg = static_cast<QTextEdit*>( it.value() );
wdg->setPlainText( value );
}
}
}
}
void DesignerFields::save( DesignerFields::Storage *storage )
{
QMap<QString, QWidget*>::Iterator it;
for ( it = mWidgets.begin(); it != mWidgets.end(); ++it ) {
QString value;
if ( it.value()->inherits( "QLineEdit" ) ) {
QLineEdit *wdg = static_cast<QLineEdit*>( it.value() );
value = wdg->text();
} else if ( it.value()->inherits( "QSpinBox" ) ) {
QSpinBox *wdg = static_cast<QSpinBox*>( it.value() );
value = QString::number( wdg->value() );
} else if ( it.value()->inherits( "QCheckBox" ) ) {
QCheckBox *wdg = static_cast<QCheckBox*>( it.value() );
value = ( wdg->isChecked() ? "true" : "false" );
} else if ( it.value()->inherits( "QDateTimeEdit" ) ) {
Q3DateTimeEdit *wdg = static_cast<Q3DateTimeEdit*>( it.value() );
value = wdg->dateTime().toString( Qt::ISODate );
} else if ( it.value()->inherits( "KDateTimeWidget" ) ) {
KDateTimeWidget *wdg = static_cast<KDateTimeWidget*>( it.value() );
value = wdg->dateTime().toString( Qt::ISODate );
} else if ( it.value()->inherits( "KDatePicker" ) ) {
KDatePicker *wdg = static_cast<KDatePicker*>( it.value() );
value = wdg->date().toString( Qt::ISODate );
} else if ( it.value()->inherits( "QComboBox" ) ) {
QComboBox *wdg = static_cast<QComboBox*>( it.value() );
value = wdg->currentText();
} else if ( it.value()->inherits( "QTextEdit" ) ) {
QTextEdit *wdg = static_cast<QTextEdit*>( it.value() );
value = wdg->toPlainText();
}
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.contains( it.value() ) )
it.value()->setEnabled( !readOnly );
}
#include "designerfields.moc"

File Metadata

Mime Type
text/x-c
Expires
Fri, Nov 1, 8:36 AM (1 d, 10 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
10075137
Default Alt Text
designerfields.cpp (9 KB)

Event Timeline