Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.18 KB | None | 0 0
  1. IonElement:
  2. {boolProp1 => {
  3. name : boolProp1,
  4. type : Bool,
  5. componentType : haxe.ui.components.CheckBox,
  6. values : null
  7. }, intEnumProp1 => {
  8. name : intEnumProp1,
  9. type : TestIntEnum,
  10. componentType : haxe.ui.components.DropDown,
  11. values : [{
  12. name : INT_VALUE_A,
  13. value : 101
  14. },{
  15. name : INT_VALUE_B,
  16. value : 102
  17. },{
  18. name : INT_VALUE_C,
  19. value : 103
  20. }]
  21. }, intValue1 => {
  22. name : intValue1,
  23. type : Int,
  24. componentType : haxe.ui.components.NumberStepper,
  25. values : null
  26. }, intValue2 => {
  27. name : intValue2,
  28. type : Int,
  29. componentType : haxe.ui.components.VerticalProgess,
  30. values : null
  31. }, intValue3 => {
  32. name : intValue3,
  33. type : Int,
  34. componentType : haxe.ui.components.HorizontalSlider,
  35. values : null
  36. }}
  37.  
  38.  
  39. SubElement:
  40. {boolProp1 => {
  41. name : boolProp1,
  42. type : Bool,
  43. componentType : haxe.ui.components.CheckBox,
  44. values : null
  45. }, intEnumProp1 => {
  46. name : intEnumProp1,
  47. type : TestIntEnum,
  48. componentType : haxe.ui.components.DropDown,
  49. values : [{
  50. name : INT_VALUE_A,
  51. value : 101
  52. },{
  53. name : INT_VALUE_B,
  54. value : 102
  55. },{
  56. name : INT_VALUE_C,
  57. value : 103
  58. }]
  59. }, intValue1 => {
  60. name : intValue1,
  61. type : Int,
  62. componentType : haxe.ui.components.NumberStepper,
  63. values : null
  64. }, intValue2 => {
  65. name : intValue2,
  66. type : Int,
  67. componentType : haxe.ui.components.VerticalProgess,
  68. values : null
  69. }, intValue3 => {
  70. name : intValue3,
  71. type : Int,
  72. componentType : haxe.ui.components.HorizontalSlider,
  73. values : null
  74. }, floatEnumProp1 => {
  75. name : floatEnumProp1,
  76. type : TestFloatEnum,
  77. componentType : haxe.ui.components.DropDown,
  78. values : [{
  79. name : FLOAT_VALUE_A,
  80. value : 101.11
  81. },{
  82. name : FLOAT_VALUE_B,
  83. value : 102.22
  84. },{
  85. name : FLOAT_VALUE_C,
  86. value : 103.33
  87. }]
  88. }}
  89.  
  90.  
  91. SubSubElement:
  92. {boolProp1 => {
  93. name : boolProp1,
  94. type : Bool,
  95. componentType : haxe.ui.components.CheckBox,
  96. values : null
  97. }, intEnumProp1 => {
  98. name : intEnumProp1,
  99. type : TestIntEnum,
  100. componentType : haxe.ui.components.DropDown,
  101. values : [{
  102. name : INT_VALUE_A,
  103. value : 101
  104. },{
  105. name : INT_VALUE_B,
  106. value : 102
  107. },{
  108. name : INT_VALUE_C,
  109. value : 103
  110. }]
  111. }, intValue1 => {
  112. name : intValue1,
  113. type : Int,
  114. componentType : haxe.ui.components.NumberStepper,
  115. values : null
  116. }, intValue2 => {
  117. name : intValue2,
  118. type : Int,
  119. componentType : haxe.ui.components.VerticalProgess,
  120. values : null
  121. }, intValue3 => {
  122. name : intValue3,
  123. type : Int,
  124. componentType : haxe.ui.components.HorizontalSlider,
  125. values : null
  126. }, floatEnumProp1 => {
  127. name : floatEnumProp1,
  128. type : TestFloatEnum,
  129. componentType : haxe.ui.components.DropDown,
  130. values : [{
  131. name : FLOAT_VALUE_A,
  132. value : 101.11
  133. },{
  134. name : FLOAT_VALUE_B,
  135. value : 102.22
  136. },{
  137. name : FLOAT_VALUE_C,
  138. value : 103.33
  139. }]
  140. }, stringEnumProp1 => {
  141. name : stringEnumProp1,
  142. type : TestStringEnum,
  143. componentType : haxe.ui.components.DropDown,
  144. values : [{
  145. name : STRING_VALUE_A,
  146. value : ValueA
  147. },{
  148. name : STRING_VALUE_B,
  149. value : ValueB
  150. },{
  151. name : STRING_VALUE_C,
  152. value : ValueC
  153. }]
  154. }}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement