w_testwindow.srw 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. $PBExportHeader$w_testwindow.srw
  2. forward
  3. global type w_testwindow from window
  4. end type
  5. type dw_1 from datawindow within w_testwindow
  6. end type
  7. end forward
  8. global type w_testwindow from window
  9. integer width = 3803
  10. integer height = 1584
  11. boolean titlebar = true
  12. string title = "Untitled"
  13. boolean controlmenu = true
  14. boolean minbox = true
  15. boolean maxbox = true
  16. boolean resizable = true
  17. windowtype windowtype = popup!
  18. long backcolor = 67108864
  19. string icon = "AppIcon!"
  20. boolean center = true
  21. dw_1 dw_1
  22. end type
  23. global w_testwindow w_testwindow
  24. on w_testwindow.create
  25. this.dw_1=create dw_1
  26. this.Control[]={this.dw_1}
  27. end on
  28. on w_testwindow.destroy
  29. destroy(this.dw_1)
  30. end on
  31. type dw_1 from datawindow within w_testwindow
  32. integer x = 69
  33. integer y = 32
  34. integer width = 2571
  35. integer height = 1325
  36. integer taborder = 10
  37. boolean titlebar = true
  38. string title = "none"
  39. boolean controlmenu = true
  40. boolean minbox = true
  41. boolean maxbox = true
  42. boolean hscrollbar = true
  43. boolean vscrollbar = true
  44. boolean resizable = true
  45. boolean hsplitscroll = true
  46. boolean livescroll = true
  47. borderstyle borderstyle = stylelowered!
  48. end type