fGLDialog.dfm 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. inherited GLDialog: TGLDialog
  2. BorderIcons = [biSystemMenu]
  3. Caption = 'GLScene Dialog'
  4. ClientHeight = 362
  5. ClientWidth = 484
  6. StyleElements = [seFont, seClient, seBorder]
  7. ExplicitWidth = 500
  8. ExplicitHeight = 401
  9. TextHeight = 20
  10. object PanelTop: TPanel
  11. Left = 0
  12. Top = 0
  13. Width = 484
  14. Height = 35
  15. Align = alTop
  16. TabOrder = 0
  17. ExplicitWidth = 476
  18. end
  19. object PanelMiddle: TPanel
  20. Left = 0
  21. Top = 35
  22. Width = 484
  23. Height = 286
  24. Align = alClient
  25. TabOrder = 1
  26. ExplicitWidth = 476
  27. ExplicitHeight = 261
  28. object Memo: TMemo
  29. Left = 1
  30. Top = 1
  31. Width = 482
  32. Height = 284
  33. Align = alClient
  34. Lines.Strings = (
  35. ''
  36. ''
  37. '')
  38. TabOrder = 0
  39. ExplicitWidth = 474
  40. ExplicitHeight = 259
  41. end
  42. end
  43. object PanelBottom: TPanel
  44. Left = 0
  45. Top = 321
  46. Width = 484
  47. Height = 41
  48. Align = alBottom
  49. TabOrder = 2
  50. ExplicitTop = 296
  51. ExplicitWidth = 476
  52. object ButtonOK: TButton
  53. Left = 126
  54. Top = 6
  55. Width = 93
  56. Height = 25
  57. Caption = 'OK'
  58. ModalResult = 1
  59. TabOrder = 0
  60. end
  61. object ButtonCancel: TButton
  62. Left = 238
  63. Top = 6
  64. Width = 93
  65. Height = 25
  66. Caption = 'Cancel'
  67. ModalResult = 2
  68. TabOrder = 1
  69. end
  70. object ButtonHelp: TButton
  71. Left = 337
  72. Top = 6
  73. Width = 98
  74. Height = 25
  75. Caption = 'Help'
  76. TabOrder = 2
  77. OnClick = ButtonHelpClick
  78. end
  79. end
  80. end