| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- form textTest
- {
- height = 100%
- width = 240
- layout = LAYOUT_VERTICAL
- label topLabel
- {
- text = Text
- fontSize = 22
- }
- button fontButton
- {
- width = 100%
- height = 50
- text = Font (arial)
- }
- button wrapButton : fontButton
- {
- text = Word Wrap (On)
- }
- button clipRectButton : fontButton
- {
- text = Clipping (On)
- }
- button reverseButton : fontButton
- {
- text = Reverse Text (Off)
- }
- button switchClipRegionButton : fontButton
- {
- text = Clip Region (Viewport)
- }
- button simpleAdvancedButton : fontButton
- {
- text = Font API (Advanced)
- }
- label
- {
- size = 10,10
- }
- label sizeLabel : topLabel
- {
- text = Size (18)
- }
- container size
- {
- width = 100%
- button smallerButton
- {
- width = 50
- height = 50
- text = -
- }
- button biggerButton : smallerButton
- {
- x = 50
- text = +
- }
- }
- label
- {
- size = 10,10
- }
- label alignmentLabel : topLabel
- {
- text = Align (Top-left)
- }
- container alignments
- {
- width = 100%
- layout = LAYOUT_FLOW
- button topLeftButton
- {
- size = 60, 60
- text =
- fontSize = 20
- }
- button topCenterButton : topLeftButton
- {
- text = ^
- }
- button topRightButton : topLeftButton
- {
- text =
- }
- button centerLeftButton : topLeftButton
- {
- text = <
- }
- button centerButton : topLeftButton
- {
- text = .
- }
- button centerRightButton : topLeftButton
- {
- text = >
- }
- button bottomLeftButton : topLeftButton
- {
- text =
- }
- button bottomCenterButton : topLeftButton
- {
- text = v
- }
- button bottomRightButton : topLeftButton
- {
- text =
- }
- }
- }
|