fGLDialog.dfm 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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. end
  18. object PanelMiddle: TPanel
  19. Left = 0
  20. Top = 35
  21. Width = 484
  22. Height = 286
  23. Align = alClient
  24. TabOrder = 1
  25. object Memo: TMemo
  26. Left = 1
  27. Top = 1
  28. Width = 482
  29. Height = 284
  30. Align = alClient
  31. Lines.Strings = (
  32. ''
  33. ''
  34. '')
  35. TabOrder = 0
  36. end
  37. end
  38. object PanelBottom: TPanel
  39. Left = 0
  40. Top = 321
  41. Width = 484
  42. Height = 41
  43. Align = alBottom
  44. TabOrder = 2
  45. object ButtonOK: TButton
  46. Left = 144
  47. Top = 6
  48. Width = 75
  49. Height = 25
  50. Caption = 'OK'
  51. ModalResult = 1
  52. TabOrder = 0
  53. end
  54. object ButtonCancel: TButton
  55. Left = 256
  56. Top = 6
  57. Width = 75
  58. Height = 25
  59. Caption = 'Cancel'
  60. ModalResult = 2
  61. TabOrder = 1
  62. end
  63. object ButtonHelp: TButton
  64. Left = 360
  65. Top = 6
  66. Width = 75
  67. Height = 25
  68. Caption = 'Help'
  69. TabOrder = 2
  70. OnClick = ButtonHelpClick
  71. end
  72. end
  73. end