|
@@ -187,6 +187,15 @@ Zeichnung *UIMLView::parseElement( XML::Element *e )
|
|
{
|
|
{
|
|
ObjTabelle *t = init.createObjTabelle( init.initParam );
|
|
ObjTabelle *t = init.createObjTabelle( init.initParam );
|
|
parseTable( e->getChilds(), t );
|
|
parseTable( e->getChilds(), t );
|
|
|
|
+ if( e->hasAttribute( "scroll" ) )
|
|
|
|
+ {
|
|
|
|
+ if( e->getAttributeValue( "scroll" ).istGleich( "horizontal" ) )
|
|
|
|
+ t->addStyle( ObjTabelle::Style::HScroll );
|
|
|
|
+ if( e->getAttributeValue( "scroll" ).istGleich( "vertical" ) )
|
|
|
|
+ t->addStyle( ObjTabelle::Style::VScroll );
|
|
|
|
+ if( e->getAttributeValue( "scroll" ).istGleich( "both" ) )
|
|
|
|
+ t->addStyle( ObjTabelle::Style::scroll );
|
|
|
|
+ }
|
|
z = t;
|
|
z = t;
|
|
}
|
|
}
|
|
if( e->getName().istGleich( "frame" ) )
|
|
if( e->getName().istGleich( "frame" ) )
|