fGLOptions.dfm 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. inherited FormOptions: TFormOptions
  2. HelpContext = 0
  3. Caption = 'Options'
  4. ClientHeight = 313
  5. ClientWidth = 460
  6. Font.Height = -21
  7. StyleElements = [seFont, seClient, seBorder]
  8. OnClick = rgLanguageClick
  9. OnClose = FormClose
  10. ExplicitWidth = 476
  11. ExplicitHeight = 352
  12. TextHeight = 25
  13. object rgLanguage: TRadioGroup
  14. Left = 56
  15. Top = 98
  16. Width = 351
  17. Height = 155
  18. Margins.Left = 5
  19. Margins.Top = 5
  20. Margins.Right = 5
  21. Margins.Bottom = 5
  22. Caption = 'Language'
  23. Columns = 2
  24. ItemIndex = 0
  25. Items.Strings = (
  26. 'English'
  27. 'Russian')
  28. TabOrder = 0
  29. OnClick = rgLanguageClick
  30. end
  31. object CheckBoxAxis: TCheckBox
  32. Left = 56
  33. Top = 28
  34. Width = 183
  35. Height = 29
  36. Margins.Left = 5
  37. Margins.Top = 5
  38. Margins.Right = 5
  39. Margins.Bottom = 5
  40. Caption = 'Axis'
  41. TabOrder = 1
  42. OnClick = CheckBoxAxisClick
  43. end
  44. object PanelBackground: TPanel
  45. Left = 294
  46. Top = 22
  47. Width = 57
  48. Height = 40
  49. Margins.Left = 5
  50. Margins.Top = 5
  51. Margins.Right = 5
  52. Margins.Bottom = 5
  53. Color = clBlack
  54. ParentBackground = False
  55. TabOrder = 2
  56. OnClick = PanelBackgroundClick
  57. end
  58. object ButtonOk: TButton
  59. Left = 318
  60. Top = 278
  61. Width = 75
  62. Height = 25
  63. Margins.Left = 5
  64. Margins.Top = 5
  65. Margins.Right = 5
  66. Margins.Bottom = 5
  67. Caption = 'Ok'
  68. TabOrder = 3
  69. OnClick = ButtonOKClick
  70. end
  71. end