2
0

fdFontgen.dfm 2.1 KB

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