Explorar el Código

Ausrichtung angepasst

Kolja Strohm hace 6 años
padre
commit
4c70cfc6a4
Se han modificado 2 ficheros con 10 adiciones y 1 borrados
  1. 1 1
      Framework.vcxproj
  2. 9 0
      UIMLView.cpp

+ 1 - 1
Framework.vcxproj

@@ -22,7 +22,7 @@
     <ProjectGuid>{C67E1D50-8FED-42FC-9538-1818297CF817}</ProjectGuid>
     <Keyword>Win32Proj</Keyword>
     <RootNamespace>Framework</RootNamespace>
-    <WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion>
+    <WindowsTargetPlatformVersion>10.0.16299.0</WindowsTargetPlatformVersion>
   </PropertyGroup>
   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">

+ 9 - 0
UIMLView.cpp

@@ -187,6 +187,15 @@ Zeichnung *UIMLView::parseElement( XML::Element *e )
         {
             ObjTabelle *t = init.createObjTabelle( init.initParam );
             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;
         }
         if( e->getName().istGleich( "frame" ) )