fGLDialog.dfm 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. inherited GLDialog: TGLDialog
  2. BorderIcons = [biSystemMenu]
  3. Caption = 'GLScene Dialog'
  4. ClientHeight = 362
  5. ClientWidth = 484
  6. ExplicitWidth = 500
  7. ExplicitHeight = 401
  8. PixelsPerInch = 96
  9. TextHeight = 16
  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. ExplicitLeft = 2
  37. ExplicitTop = 2
  38. end
  39. end
  40. object PanelBottom: TPanel
  41. Left = 0
  42. Top = 321
  43. Width = 484
  44. Height = 41
  45. Align = alBottom
  46. TabOrder = 2
  47. object ButtonOK: TButton
  48. Left = 144
  49. Top = 6
  50. Width = 75
  51. Height = 25
  52. Caption = 'OK'
  53. ModalResult = 1
  54. TabOrder = 0
  55. end
  56. object ButtonCancel: TButton
  57. Left = 256
  58. Top = 6
  59. Width = 75
  60. Height = 25
  61. Caption = 'Cancel'
  62. ModalResult = 2
  63. TabOrder = 1
  64. end
  65. object ButtonHelp: TButton
  66. Left = 360
  67. Top = 6
  68. Width = 75
  69. Height = 25
  70. Caption = 'Help'
  71. TabOrder = 2
  72. OnClick = ButtonHelpClick
  73. end
  74. end
  75. end