home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 January / Chip_2003-01_cd1.bin / sharewar / gale / setgalee.exe / {app} / Gale.exe / 0 / RCDATA / TFORMFONT / TFORMFONT.txt
Encoding:
Text File  |  2002-10-07  |  3.7 KB  |  217 lines

  1. object FormFont: TFormFont
  2.   Left = 221
  3.   Top = 103
  4.   BorderStyle = bsToolWindow
  5.   Caption = 'Font'
  6.   ClientHeight = 290
  7.   ClientWidth = 279
  8.   Color = clBtnFace
  9.   ParentFont = True
  10.   FormStyle = fsStayOnTop
  11.   OldCreateOrder = False
  12.   Scaled = False
  13.   OnCreate = FormCreate
  14.   OnDestroy = FormDestroy
  15.   PixelsPerInch = 96
  16.   TextHeight = 12
  17.   object Bevel1: TBevel
  18.     Left = 8
  19.     Top = 60
  20.     Width = 261
  21.     Height = 185
  22.     Shape = bsFrame
  23.   end
  24.   object LabelText: TLabel
  25.     Left = 8
  26.     Top = 260
  27.     Width = 25
  28.     Height = 12
  29.     Caption = 'Text:'
  30.   end
  31.   object LabelFont: TLabel
  32.     Left = 20
  33.     Top = 76
  34.     Width = 25
  35.     Height = 12
  36.     Caption = 'Font:'
  37.   end
  38.   object LabelSize: TLabel
  39.     Left = 20
  40.     Top = 104
  41.     Width = 23
  42.     Height = 12
  43.     Caption = 'Size:'
  44.   end
  45.   object LabelStyle: TLabel
  46.     Left = 20
  47.     Top = 132
  48.     Width = 34
  49.     Height = 12
  50.     Caption = 'Styles:'
  51.   end
  52.   object LabelBorder: TLabel
  53.     Left = 20
  54.     Top = 184
  55.     Width = 36
  56.     Height = 12
  57.     Caption = 'Border:'
  58.   end
  59.   object LabelPitch: TLabel
  60.     Left = 20
  61.     Top = 216
  62.     Width = 28
  63.     Height = 12
  64.     Caption = 'Pitch:'
  65.   end
  66.   object Edit1: TEdit
  67.     Left = 80
  68.     Top = 100
  69.     Width = 45
  70.     Height = 20
  71.     TabOrder = 2
  72.     Text = '20'
  73.     OnChange = ComboFontChange
  74.   end
  75.   object UpDownSize: TUpDown
  76.     Left = 125
  77.     Top = 100
  78.     Width = 15
  79.     Height = 20
  80.     Associate = Edit1
  81.     Min = 1
  82.     Max = 1000
  83.     Position = 20
  84.     TabOrder = 3
  85.     Wrap = False
  86.   end
  87.   object CheckBold: TCheckBox
  88.     Left = 80
  89.     Top = 132
  90.     Width = 89
  91.     Height = 17
  92.     Caption = 'Bold'
  93.     TabOrder = 4
  94.     OnClick = ComboFontChange
  95.   end
  96.   object CheckItalic: TCheckBox
  97.     Left = 172
  98.     Top = 132
  99.     Width = 89
  100.     Height = 17
  101.     Caption = 'Italic'
  102.     TabOrder = 5
  103.     OnClick = ComboFontChange
  104.   end
  105.   object CheckUnder: TCheckBox
  106.     Left = 80
  107.     Top = 152
  108.     Width = 89
  109.     Height = 17
  110.     Caption = 'Underline'
  111.     TabOrder = 6
  112.     OnClick = ComboFontChange
  113.   end
  114.   object CheckStrike: TCheckBox
  115.     Left = 172
  116.     Top = 152
  117.     Width = 89
  118.     Height = 17
  119.     Caption = 'Strikeout'
  120.     TabOrder = 7
  121.     OnClick = ComboFontChange
  122.   end
  123.   object GroupPreset: TGroupBox
  124.     Left = 8
  125.     Top = 8
  126.     Width = 261
  127.     Height = 45
  128.     Caption = 'Preset'
  129.     TabOrder = 12
  130.     object ComboPreset: TComboBox
  131.       Left = 8
  132.       Top = 16
  133.       Width = 133
  134.       Height = 20
  135.       ItemHeight = 12
  136.       TabOrder = 0
  137.       OnClick = ComboPresetClick
  138.     end
  139.     object btnAdd: TButton
  140.       Left = 144
  141.       Top = 16
  142.       Width = 53
  143.       Height = 21
  144.       Caption = 'Add'
  145.       TabOrder = 1
  146.       OnClick = btnAddClick
  147.     end
  148.     object btnDel: TButton
  149.       Left = 200
  150.       Top = 16
  151.       Width = 53
  152.       Height = 21
  153.       Caption = 'Delete'
  154.       TabOrder = 2
  155.       OnClick = btnDelClick
  156.     end
  157.   end
  158.   object ComboText: TComboBox
  159.     Left = 60
  160.     Top = 256
  161.     Width = 209
  162.     Height = 20
  163.     ItemHeight = 12
  164.     TabOrder = 0
  165.     OnChange = ComboFontChange
  166.   end
  167.   object Edit2: TEdit
  168.     Left = 80
  169.     Top = 180
  170.     Width = 45
  171.     Height = 20
  172.     TabOrder = 8
  173.     Text = '1'
  174.     OnChange = ComboFontChange
  175.   end
  176.   object UpDownBorder: TUpDown
  177.     Left = 125
  178.     Top = 180
  179.     Width = 15
  180.     Height = 20
  181.     Associate = Edit2
  182.     Min = 0
  183.     Max = 50
  184.     Position = 1
  185.     TabOrder = 9
  186.     Wrap = False
  187.   end
  188.   object Edit3: TEdit
  189.     Left = 80
  190.     Top = 212
  191.     Width = 45
  192.     Height = 20
  193.     TabOrder = 10
  194.     Text = '0'
  195.     OnChange = ComboFontChange
  196.   end
  197.   object UpDownPitch: TUpDown
  198.     Left = 125
  199.     Top = 212
  200.     Width = 15
  201.     Height = 20
  202.     Associate = Edit3
  203.     Min = -100
  204.     Position = 0
  205.     TabOrder = 11
  206.     Wrap = False
  207.   end
  208.   object ComboFont: TFontComboBoxEx
  209.     Left = 80
  210.     Top = 72
  211.     Width = 173
  212.     Height = 18
  213.     TabOrder = 1
  214.     OnClick = ComboFontChange
  215.   end
  216. end
  217.