fFontgenC.dfm 2.1 KB

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