fGLOptions.dfm 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. inherited GLOptions: TGLOptions
  2. HelpContext = 0
  3. Caption = 'Options'
  4. OnClose = FormClose
  5. ExplicitLeft = 3
  6. ExplicitTop = 3
  7. TextHeight = 16
  8. inherited PanelMiddle: TPanel
  9. object Label1: TLabel [0]
  10. Left = 296
  11. Top = 33
  12. Width = 73
  13. Height = 16
  14. Caption = 'Background'
  15. end
  16. inherited Memo: TMemo
  17. TabOrder = 2
  18. ExplicitLeft = 1
  19. ExplicitTop = 1
  20. end
  21. object CheckBoxAxis: TCheckBox
  22. Left = 96
  23. Top = 32
  24. Width = 113
  25. Height = 17
  26. Caption = 'Show Axes'
  27. TabOrder = 0
  28. OnClick = CheckBoxAxisClick
  29. end
  30. object PanelBackground: TPanel
  31. Left = 375
  32. Top = 27
  33. Width = 25
  34. Height = 25
  35. Hint = 'Click to change background colour'
  36. BevelInner = bvLowered
  37. BevelOuter = bvLowered
  38. Color = clWhite
  39. ParentBackground = False
  40. TabOrder = 1
  41. OnClick = PanelBackgroundClick
  42. end
  43. object RadioGroupLanguage: TRadioGroup
  44. Left = 96
  45. Top = 88
  46. Width = 329
  47. Height = 137
  48. Caption = 'Language'
  49. Columns = 2
  50. ItemIndex = 0
  51. Items.Strings = (
  52. 'English'
  53. 'Russian'
  54. 'Spanish'
  55. 'French'
  56. 'German'
  57. 'Italian')
  58. TabOrder = 3
  59. OnClick = RadioGroupLanguageClick
  60. end
  61. end
  62. inherited PanelBottom: TPanel
  63. inherited ButtonOK: TButton
  64. OnClick = ButtonOKClick
  65. end
  66. end
  67. end