fFontGen.dfm 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. object FormFontGen: TFormFontGen
  2. Left = 277
  3. Top = 178
  4. BorderStyle = bsSingle
  5. Caption = 'FontGen for GLScene'
  6. ClientHeight = 363
  7. ClientWidth = 378
  8. Color = clBtnFace
  9. Font.Charset = DEFAULT_CHARSET
  10. Font.Color = clWindowText
  11. Font.Height = -11
  12. Font.Name = 'MS Sans Serif'
  13. Font.Style = []
  14. OldCreateOrder = False
  15. OnCreate = FormCreate
  16. PixelsPerInch = 96
  17. TextHeight = 13
  18. object GroupBox1: TGroupBox
  19. Left = 6
  20. Top = 8
  21. Width = 363
  22. Height = 109
  23. Caption = '1. Select Windows font :'
  24. TabOrder = 0
  25. object Panel1: TPanel
  26. Left = 10
  27. Top = 20
  28. Width = 343
  29. Height = 41
  30. BevelOuter = bvLowered
  31. Caption = 'Sample AaBbCcDd'
  32. Font.Charset = RUSSIAN_CHARSET
  33. Font.Color = clWindowText
  34. Font.Height = -11
  35. Font.Name = 'Arial'
  36. Font.Style = []
  37. ParentFont = False
  38. TabOrder = 0
  39. end
  40. object Button1: TButton
  41. Left = 142
  42. Top = 70
  43. Width = 75
  44. Height = 25
  45. Caption = 'Select...'
  46. TabOrder = 1
  47. OnClick = Button1Click
  48. end
  49. end
  50. object GroupBox2: TGroupBox
  51. Left = 6
  52. Top = 120
  53. Width = 363
  54. Height = 169
  55. Caption = '2. Check glyphs'
  56. TabOrder = 1
  57. object Image1: TImage
  58. Left = 2
  59. Top = 15
  60. Width = 359
  61. Height = 152
  62. Align = alClient
  63. Center = True
  64. end
  65. end
  66. object GroupBox3: TGroupBox
  67. Left = 6
  68. Top = 290
  69. Width = 363
  70. Height = 65
  71. Caption = '3. Save font:'
  72. TabOrder = 2
  73. object Button2: TButton
  74. Left = 150
  75. Top = 24
  76. Width = 75
  77. Height = 25
  78. Caption = 'Save...'
  79. TabOrder = 0
  80. OnClick = Button2Click
  81. end
  82. end
  83. object FontDialog1: TFontDialog
  84. Font.Charset = DEFAULT_CHARSET
  85. Font.Color = clWindowText
  86. Font.Height = -11
  87. Font.Name = 'MS Sans Serif'
  88. Font.Style = []
  89. Left = 264
  90. Top = 74
  91. end
  92. object SaveDialog1: TSaveDialog
  93. DefaultExt = 'gsf'
  94. FileName = 'font'
  95. Filter = 'GlScene Font|*.gsf|All Files|*.*'
  96. Title = 'Save font'
  97. Left = 290
  98. Top = 310
  99. end
  100. end