You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
108 lines
3.2 KiB
108 lines
3.2 KiB
/*
|
|
This file is part of Kung.
|
|
|
|
Copyright (c) 2005 Tobias Koenig <tokoe@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 <tqlabel.h>
|
|
#include <tqlayout.h>
|
|
|
|
#include "inputfieldfactory.h"
|
|
|
|
#include "pageinputfield.h"
|
|
|
|
PageInputField::PageInputField( const TQString &name, const KWSDL::Message &message )
|
|
: InputField( name ),
|
|
mMessage( message )
|
|
{
|
|
KWSDL::Message::Part::List parts = message.parts();
|
|
KWSDL::Message::Part::List::ConstIterator it;
|
|
for ( it = parts.begin(); it != parts.end(); ++it ) {
|
|
InputField *field = InputFieldFactory::self()->createField( (*it).name(), (*it).type() );
|
|
if ( !field ) {
|
|
tqDebug( "PageInputField: Unable to create input field for %s (%s)", (*it).name().latin1(), (*it).type().latin1() );
|
|
} else {
|
|
appendChild( field );
|
|
}
|
|
}
|
|
}
|
|
|
|
void PageInputField::setXMLData( const TQDomElement &element )
|
|
{
|
|
if ( mName != element.tagName() ) {
|
|
tqDebug( "PageInputField: Wrong dom element passed: expected %s, got %s", mName.latin1(), element.tagName().latin1() );
|
|
return;
|
|
}
|
|
|
|
TQDomNode node = element.firstChild();
|
|
while ( !node.isNull() ) {
|
|
TQDomElement child = node.toElement();
|
|
if ( !child.isNull() ) {
|
|
InputField *field = childField( child.tagName() );
|
|
if ( !field ) {
|
|
tqDebug( "PageInputField: Child field %s does not exists", child.tagName().latin1() );
|
|
} else {
|
|
field->setXMLData( child );
|
|
}
|
|
}
|
|
|
|
node = node.nextSibling();
|
|
}
|
|
}
|
|
|
|
void PageInputField::xmlData( TQDomDocument &document, TQDomElement &parent )
|
|
{
|
|
TQDomElement element = document.createElement( "ns1:" + mName );
|
|
|
|
InputField::List::Iterator it;
|
|
for ( it = mFields.begin(); it != mFields.end(); ++it )
|
|
(*it)->xmlData( document, element );
|
|
|
|
parent.appendChild( element );
|
|
}
|
|
|
|
void PageInputField::setData( const TQString& )
|
|
{
|
|
}
|
|
|
|
TQString PageInputField::data() const
|
|
{
|
|
return TQString();
|
|
}
|
|
|
|
TQWidget *PageInputField::createWidget( TQWidget *parent )
|
|
{
|
|
TQWidget *mInputWidget = new TQWidget( parent, "PageInputWidget" );
|
|
TQGridLayout *layout = new TQGridLayout( mInputWidget, 2, 2, 11, 6 );
|
|
|
|
InputField::List::Iterator it;
|
|
int row = 0;
|
|
for ( it = mFields.begin(); it != mFields.end(); ++it, ++row ) {
|
|
TQLabel *label = new TQLabel( (*it)->name(), mInputWidget );
|
|
label->setAlignment( TQt::AlignTop );
|
|
layout->addWidget( label, row, 0 );
|
|
layout->addWidget( (*it)->createWidget( mInputWidget ), row, 1 );
|
|
}
|
|
|
|
layout->setRowStretch( ++row, 1 );
|
|
|
|
return mInputWidget;
|
|
}
|
|
|
|
#include "pageinputfield.moc"
|