formSelect.form 711 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. form formSelect
  2. {
  3. theme = res/common/default.theme
  4. layout = LAYOUT_VERTICAL
  5. style = basicContainer
  6. alignment = ALIGN_TOP_LEFT
  7. width = 200
  8. autoHeight = true
  9. consumeInputEvents = true
  10. radioButton form0
  11. {
  12. style = basic
  13. text = Basic Controls
  14. group = formSelection
  15. size = 180, 60
  16. textAlignment = ALIGN_VCENTER_HCENTER
  17. selected = true
  18. }
  19. radioButton form1 : form0
  20. {
  21. text = Scrolling
  22. selected = false
  23. }
  24. radioButton form2 : form1
  25. {
  26. text = Flow Layout
  27. }
  28. radioButton form3 : form1
  29. {
  30. text = Vertical Layout
  31. }
  32. radioButton form4 : form1
  33. {
  34. text = Z-Order
  35. }
  36. radioButton form5 : form1
  37. {
  38. text = Programmatic
  39. }
  40. }