Advertisement
ianharrigan

Untitled

Jan 21st, 2016
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 4.66 KB | None | 0 0
  1. <target id="html5">
  2.     <classes>
  3.         <class source="haxe.ui.html5.ImageDataTemp"    target="haxe.ui.ImageData" />
  4.         <class source="haxe.ui.html5.FontBase"         target="haxe.ui.FontBase" />
  5.         <class source="haxe.ui.html5.AssetsBase"       target="haxe.ui.AssetsBase" />
  6.         <class source="haxe.ui.html5.BitmapDataTemp"   target="haxe.ui.BitmapDataBase" />
  7.         <class source="haxe.ui.html5.CapabilitiesBase" target="haxe.ui.CapabilitiesBase" />
  8.         <class source="haxe.ui.html5.ScreenBase"       target="haxe.ui.core.ScreenBase" />
  9.         <class source="haxe.ui.html5.ComponentBase"    target="haxe.ui.core.ComponentBase" />
  10.         <class source="haxe.ui.html5.ImageDisplayBase" target="haxe.ui.core.ImageDisplayBase" />
  11.         <class source="haxe.ui.html5.TextDisplayBase"  target="haxe.ui.core.TextDisplayBase" />
  12.         <class source="haxe.ui.html5.TextInputBase"    target="haxe.ui.core.TextInputBase" />
  13.     </classes>
  14.  
  15.     <native>
  16.         <component id="haxe.ui.components.Button" class="haxe.ui.html5.native.NativeElement" nodeType="button">
  17.             <behaviour id="text" class="haxe.ui.html5.native.behaviours.ElementText" />
  18.             <size class="haxe.ui.html5.native.size.TextSize" />
  19.         </component>
  20.         <component id="haxe.ui.components.CheckBox" class="haxe.ui.html5.native.LabeledInputElement" type="checkbox">
  21.             <behaviour id="text" class="haxe.ui.html5.native.behaviours.SpanText" index="last" />
  22.             <behaviour id="selected" class="haxe.ui.html5.native.behaviours.ElementAttribute" child="input" name="checked" removeIfNegative="true" />
  23.             <size class="haxe.ui.html5.native.size.TextSize" incrementWidthBy="20" incrementHeightBy="0" />
  24.         </component>
  25.         <component id="haxe.ui.components.OptionBox" class="haxe.ui.html5.native.LabeledInputElement" type="radio">
  26.             <behaviour id="text" class="haxe.ui.html5.native.behaviours.SpanText" index="last" />
  27.             <behaviour id="selected" class="haxe.ui.html5.native.behaviours.ElementAttribute" child="input" name="checked" removeIfNegative="true" />
  28.             <size class="haxe.ui.html5.native.size.TextSize" incrementWidthBy="20" incrementHeightBy="0" />
  29.         </component>
  30.         <component id="haxe.ui.components.TextField" class="haxe.ui.html5.native.NativeElement" nodeType="input">
  31.             <behaviour id="text" class="haxe.ui.html5.native.behaviours.ElementValue" />
  32.             <size class="haxe.ui.html5.native.size.TextSize" incrementWidthBy="4" incrementHeightBy="4" />
  33.         </component>
  34.         <component id="haxe.ui.components.HSlider" class="haxe.ui.html5.native.NativeElement" nodeType="input" type="range">
  35.             <behaviour id="min" class="haxe.ui.html5.native.behaviours.ElementAttribute" name="min" />
  36.             <behaviour id="max" class="haxe.ui.html5.native.behaviours.ElementAttribute" name="max" />
  37.             <behaviour id="pos" class="haxe.ui.html5.native.behaviours.ElementAttribute" name="value" />
  38.             <size class="haxe.ui.html5.native.size.ComponentSize" defaultWidth="140" defaultHeight="20" />
  39.         </component>
  40.         <component id="haxe.ui.components.VSlider" class="haxe.ui.html5.native.NativeElement" nodeType="input" type="range" style="-webkit-appearance: slider-vertical;-moz-orient: vertical;" orient="vertical">
  41.             <behaviour id="min" class="haxe.ui.html5.native.behaviours.ElementAttribute" name="min" />
  42.             <behaviour id="max" class="haxe.ui.html5.native.behaviours.ElementAttribute" name="max" />
  43.             <behaviour id="pos" class="haxe.ui.html5.native.behaviours.ElementAttribute" name="value" />
  44.             <size class="haxe.ui.html5.native.size.ComponentSize" defaultWidth="20" defaultHeight="140" />
  45.         </component>
  46.         <component id="haxe.ui.components.HProgress" class="haxe.ui.html5.native.NativeElement" nodeType="progress">
  47.             <behaviour id="min" class="haxe.ui.html5.native.behaviours.ElementAttribute" name="min" />
  48.             <behaviour id="max" class="haxe.ui.html5.native.behaviours.ElementAttribute" name="max" />
  49.             <behaviour id="pos" class="haxe.ui.html5.native.behaviours.ElementAttribute" name="value" />
  50.             <size class="haxe.ui.html5.native.size.ComponentSize" defaultWidth="146" defaultHeight="16" />
  51.         </component>
  52.         <component id="haxe.ui.components.VProgress" class="haxe.ui.html5.native.NativeElement" nodeType="progress" style="-webkit-appearance: slider-vertical;-moz-orient: vertical;" orient="vertical">
  53.             <behaviour id="min" class="haxe.ui.html5.native.behaviours.ElementAttribute" name="min" />
  54.             <behaviour id="max" class="haxe.ui.html5.native.behaviours.ElementAttribute" name="max" />
  55.             <behaviour id="pos" class="haxe.ui.html5.native.behaviours.ElementAttribute" name="value" />
  56.             <size class="haxe.ui.html5.native.size.ComponentSize" defaultWidth="16" defaultHeight="146" />
  57.         </component>
  58.         <component id="haxe.ui.containers.ScrollView" class="haxe.ui.html5.native.NativeElement">
  59.         </component>
  60.     </native>
  61. </target>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement