home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 June / Chip_2002-06_cd1.bin / zkuste / cecko / install / devcpp4920.exe / devcpp.exe / 0 / RCDATA / TFRMFIND / TFRMFIND.txt
Encoding:
Text File  |  2002-04-12  |  3.8 KB  |  203 lines

  1. object frmFind: TfrmFind
  2.   Left = 375
  3.   Top = 105
  4.   BorderStyle = bsDialog
  5.   Caption = 'Find Text'
  6.   ClientHeight = 233
  7.   ClientWidth = 300
  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.   Position = poScreenCenter
  16.   OnClose = FormClose
  17.   OnShow = FormShow
  18.   DesignSize = (
  19.     300
  20.     233)
  21.   PixelsPerInch = 96
  22.   TextHeight = 13
  23.   object lblFind: TLabel
  24.     Left = 4
  25.     Top = 29
  26.     Width = 56
  27.     Height = 13
  28.     Caption = '&Text to find:'
  29.     FocusControl = cboFindText
  30.   end
  31.   object grpWhere: TGroupBox
  32.     Left = 156
  33.     Top = 56
  34.     Width = 140
  35.     Height = 68
  36.     Caption = '  Where:  '
  37.     TabOrder = 8
  38.     object rbProjectFiles: TRadioButton
  39.       Left = 7
  40.       Top = 17
  41.       Width = 110
  42.       Height = 17
  43.       Caption = 'Files in Project'
  44.       Checked = True
  45.       TabOrder = 0
  46.       TabStop = True
  47.     end
  48.     object rbOpenFIles: TRadioButton
  49.       Left = 8
  50.       Top = 40
  51.       Width = 110
  52.       Height = 17
  53.       Caption = 'Open Files'
  54.       TabOrder = 1
  55.     end
  56.   end
  57.   object grpDirection: TGroupBox
  58.     Left = 156
  59.     Top = 56
  60.     Width = 140
  61.     Height = 68
  62.     Caption = '  Direction:  '
  63.     TabOrder = 4
  64.     object rbForward: TRadioButton
  65.       Left = 7
  66.       Top = 17
  67.       Width = 110
  68.       Height = 17
  69.       Caption = '&Forward'
  70.       Checked = True
  71.       TabOrder = 0
  72.       TabStop = True
  73.     end
  74.     object rbBackward: TRadioButton
  75.       Left = 8
  76.       Top = 40
  77.       Width = 110
  78.       Height = 17
  79.       Caption = '&Backward'
  80.       TabOrder = 1
  81.     end
  82.   end
  83.   object btnFind: TButton
  84.     Left = 8
  85.     Top = 203
  86.     Width = 80
  87.     Height = 24
  88.     Anchors = [akLeft, akBottom]
  89.     Caption = 'Find'
  90.     Default = True
  91.     ModalResult = 1
  92.     TabOrder = 0
  93.     OnClick = btnFindClick
  94.   end
  95.   object btnCancel: TButton
  96.     Left = 212
  97.     Top = 203
  98.     Width = 80
  99.     Height = 24
  100.     Anchors = [akLeft, akBottom]
  101.     Cancel = True
  102.     Caption = 'Cancel'
  103.     ModalResult = 2
  104.     TabOrder = 1
  105.     OnClick = btnCancelClick
  106.   end
  107.   object FindTabs: TdevTabs
  108.     Left = 0
  109.     Top = 0
  110.     Width = 300
  111.     Height = 21
  112.     Tabs.Strings = (
  113.       'Find'
  114.       'Find in Files')
  115.     TabIndex = 0
  116.     OnChange = FindTabsChange
  117.   end
  118.   object cboFindText: TComboBox
  119.     Left = 66
  120.     Top = 25
  121.     Width = 232
  122.     Height = 21
  123.     ItemHeight = 13
  124.     TabOrder = 2
  125.   end
  126.   object grpOptions: TGroupBox
  127.     Left = 8
  128.     Top = 56
  129.     Width = 140
  130.     Height = 69
  131.     Caption = '  Options:  '
  132.     TabOrder = 3
  133.     object cbMatchCase: TCheckBox
  134.       Left = 8
  135.       Top = 16
  136.       Width = 120
  137.       Height = 17
  138.       Caption = '&Case sensitive'
  139.       TabOrder = 0
  140.     end
  141.     object cbWholeWord: TCheckBox
  142.       Left = 8
  143.       Top = 40
  144.       Width = 120
  145.       Height = 17
  146.       Caption = '&Whole words only'
  147.       TabOrder = 1
  148.     end
  149.   end
  150.   object grpScope: TGroupBox
  151.     Left = 8
  152.     Top = 132
  153.     Width = 140
  154.     Height = 64
  155.     Caption = '  Scope:  '
  156.     TabOrder = 5
  157.     object rbGlobal: TRadioButton
  158.       Left = 8
  159.       Top = 16
  160.       Width = 110
  161.       Height = 17
  162.       Caption = '&Global'
  163.       Checked = True
  164.       TabOrder = 0
  165.       TabStop = True
  166.     end
  167.     object rbSelectedOnly: TRadioButton
  168.       Left = 8
  169.       Top = 40
  170.       Width = 110
  171.       Height = 17
  172.       Caption = '&Selected only'
  173.       TabOrder = 1
  174.     end
  175.   end
  176.   object grpOrigin: TGroupBox
  177.     Left = 156
  178.     Top = 132
  179.     Width = 140
  180.     Height = 64
  181.     Caption = '  Origin:  '
  182.     TabOrder = 6
  183.     object rbFromCursor: TRadioButton
  184.       Left = 8
  185.       Top = 16
  186.       Width = 110
  187.       Height = 17
  188.       Caption = 'From &cursor'
  189.       Checked = True
  190.       TabOrder = 0
  191.       TabStop = True
  192.     end
  193.     object rbEntireScope: TRadioButton
  194.       Left = 8
  195.       Top = 40
  196.       Width = 110
  197.       Height = 17
  198.       Caption = 'Entire &scope'
  199.       TabOrder = 1
  200.     end
  201.   end
  202. end
  203.