inputs.form 714 B

12345678910111213141516171819202122232425262728293031323334
  1. form inputTestControls
  2. {
  3. theme = res/common/default.theme
  4. width = 200
  5. height = 350
  6. alignment = ALIGN_TOP_RIGHT
  7. consumeInputEvents = false
  8. // Show/hide keyboard
  9. button showKeyboardButton
  10. {
  11. style = buttonStyle
  12. position = 10, 60
  13. size = 160, 100
  14. text = Show virtual keyboard
  15. }
  16. // Capture mouse
  17. button captureMouseButton
  18. {
  19. style = buttonStyle
  20. position = 10, 180
  21. size = 160, 100
  22. text = Capture mouse
  23. }
  24. label restoreMouseLabel
  25. {
  26. style = underlined
  27. position = 10, 290
  28. size = 160, 60
  29. text = Press space to restore mouse
  30. }
  31. }