home *** CD-ROM | disk | FTP | other *** search
/ Delphi 4 Bible / Delphi_4_Bible_Tom_Swan_IDG_Books_1998.iso / source / TABS / Tabs.exe / 0 / RCDATA / TOPTIONSDIALOG / TOPTIONSDIALOG.txt
Text File  |  1998-05-14  |  3KB  |  185 lines

  1. object OptionsDialog: TOptionsDialog
  2.   Left = 192
  3.   Top = 101
  4.   ActiveControl = OKBtn
  5.   BorderStyle = bsDialog
  6.   Caption = 'Options'
  7.   ClientHeight = 265
  8.   ClientWidth = 359
  9.   Font.Charset = DEFAULT_CHARSET
  10.   Font.Color = clBlack
  11.   Font.Height = -11
  12.   Font.Name = 'MS Sans Serif'
  13.   Font.Style = [fsBold]
  14.   Position = poScreenCenter
  15.   OnCreate = FormCreate
  16.   PixelsPerInch = 96
  17.   TextHeight = 13
  18.   object Bevel1: TBevel
  19.     Left = 8
  20.     Top = 8
  21.     Width = 345
  22.     Height = 209
  23.     Shape = bsFrame
  24.     IsControl = True
  25.   end
  26.   object Label1: TLabel
  27.     Left = 16
  28.     Top = 124
  29.     Width = 62
  30.     Height = 13
  31.     Caption = '&Config file:'
  32.   end
  33.   object Label2: TLabel
  34.     Left = 16
  35.     Top = 157
  36.     Width = 82
  37.     Height = 13
  38.     Caption = '&Input tab size:'
  39.   end
  40.   object Label3: TLabel
  41.     Left = 16
  42.     Top = 189
  43.     Width = 91
  44.     Height = 13
  45.     Caption = '&Output tab size:'
  46.   end
  47.   object Label4: TLabel
  48.     Left = 184
  49.     Top = 156
  50.     Width = 106
  51.     Height = 13
  52.     Caption = '&Backup extension:'
  53.   end
  54.   object OKBtn: TBitBtn
  55.     Left = 104
  56.     Top = 228
  57.     Width = 77
  58.     Height = 27
  59.     TabOrder = 0
  60.     OnClick = OKBtnClick
  61.     Kind = bkOK
  62.     Margin = 2
  63.     Spacing = -1
  64.     IsControl = True
  65.   end
  66.   object CancelBtn: TBitBtn
  67.     Left = 188
  68.     Top = 228
  69.     Width = 77
  70.     Height = 27
  71.     TabOrder = 1
  72.     OnClick = CancelBtnClick
  73.     Kind = bkCancel
  74.     Margin = 2
  75.     Spacing = -1
  76.     IsControl = True
  77.   end
  78.   object HelpBtn: TBitBtn
  79.     Left = 272
  80.     Top = 228
  81.     Width = 77
  82.     Height = 27
  83.     TabOrder = 2
  84.     OnClick = HelpBtnClick
  85.     Kind = bkHelp
  86.     Margin = 2
  87.     Spacing = -1
  88.     IsControl = True
  89.   end
  90.   object MiscGroup: TGroupBox
  91.     Left = 176
  92.     Top = 16
  93.     Width = 169
  94.     Height = 89
  95.     Caption = '&Miscellaneous'
  96.     TabOrder = 3
  97.     object BackupCheckbox: TCheckBox
  98.       Left = 8
  99.       Top = 16
  100.       Width = 153
  101.       Height = 17
  102.       Caption = 'Backup originial file'
  103.       State = cbChecked
  104.       TabOrder = 0
  105.     end
  106.     object AutoSaveCheckbox: TCheckBox
  107.       Left = 8
  108.       Top = 32
  109.       Width = 153
  110.       Height = 17
  111.       Caption = 'Autosave configuration'
  112.       State = cbChecked
  113.       TabOrder = 1
  114.     end
  115.     object StripCheckbox: TCheckBox
  116.       Left = 8
  117.       Top = 48
  118.       Width = 97
  119.       Height = 17
  120.       Caption = 'Strip 8th bit'
  121.       TabOrder = 2
  122.     end
  123.     object ConvertCheckbox: TCheckBox
  124.       Left = 8
  125.       Top = 64
  126.       Width = 153
  127.       Height = 17
  128.       Caption = 'Convert to uppercase'
  129.       TabOrder = 3
  130.     end
  131.   end
  132.   object OperationRGroup: TRadioGroup
  133.     Left = 16
  134.     Top = 16
  135.     Width = 153
  136.     Height = 89
  137.     Caption = 'O&peration'
  138.     ItemIndex = 1
  139.     Items.Strings = (
  140.       '&Insert tabs'
  141.       '&Remove tabs'
  142.       '&Convert tabs')
  143.     TabOrder = 4
  144.   end
  145.   object ConfigEdit: TEdit
  146.     Left = 96
  147.     Top = 120
  148.     Width = 249
  149.     Height = 21
  150.     TabOrder = 5
  151.     Text = 'Tabs.Ini'
  152.   end
  153.   object BackupExtEdit: TEdit
  154.     Left = 296
  155.     Top = 152
  156.     Width = 41
  157.     Height = 21
  158.     MaxLength = 3
  159.     TabOrder = 6
  160.     Text = 'Bak'
  161.   end
  162.   object InTabEdit: TSpinEdit
  163.     Left = 120
  164.     Top = 152
  165.     Width = 41
  166.     Height = 22
  167.     MaxLength = 2
  168.     MaxValue = 32
  169.     MinValue = 2
  170.     TabOrder = 7
  171.     Value = 8
  172.   end
  173.   object OutTabEdit: TSpinEdit
  174.     Left = 120
  175.     Top = 184
  176.     Width = 41
  177.     Height = 22
  178.     MaxLength = 2
  179.     MaxValue = 32
  180.     MinValue = 2
  181.     TabOrder = 8
  182.     Value = 8
  183.   end
  184. end
  185.