| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- form basicControls
- {
- layout = LAYOUT_ABSOLUTE
- size = 600, 600
- batchingEnabled = false
- label title
- {
- position = 185, 10
- text = Title Label
- fontSize = 32
- }
-
- button testButton
- {
- position = 20, 110
- text = This is a button
- }
- checkbox testCheckbox
- {
- position = 20, 220
- text = This is a checkbox.
- }
-
- slider testSlider
- {
- position = 25, 315
- width = 190
- orientation = HORIZONTAL
- min = -100
- max = 100
- value = 0
- //step = 5
- text = This is a slider.
- valueTextVisible = true
- }
- label textBoxLabel
- {
- position = 25, 390
- size = 200, 60
- text = This is a label:
- }
- textBox testTextBox
- {
- position = 20, 430
- size = 250, 80
- text = This is a text box.
- }
- textBox testPasswordTextBox
- {
- position = 20, 520
- width = 250
- text = PASSWORD
- inputMode = PASSWORD
- }
- container radioButtonContainer
- {
- layout = LAYOUT_VERTICAL
- position = 330, 100
- radioButton choice1
- {
- text = Radio button 1.
- group = testRadio
- selected = true
- }
- radioButton choice2 : choice1
- {
- text = Radio button 2.
- selected = false
- }
- radioButton choice3 : choice2
- {
- text = Radio button 3.
- }
- }
-
- image testImage
- {
- alignment = ALIGN_BOTTOM_RIGHT
- path = res/png/logo.png
- }
- container testPanel
- {
- style = Panel
- margin
- {
- right = 75
- bottom = 170
- }
- alignment = ALIGN_BOTTOM_RIGHT
- label
- {
- size = 200, 100
- text = Style: Panel Alignment: bottom-right Right margin: 50 Bottom margin: 100
- textAlignment = ALIGN_VCENTER_HCENTER
- }
- }
- }
|