home *** CD-ROM | disk | FTP | other *** search
/ H4CK3R 14 / hacker14.iso / programacao / cwin / c.exe / $INSTDIR / devcpp.exe / 0 / RCDATA / TFRMFIND / TFRMFIND.txt
Encoding:
Text File  |  2003-12-15  |  4.6 KB  |  237 lines

  1. object frmFind: TfrmFind
  2.   Left = 319
  3.   Top = 146
  4.   BorderIcons = []
  5.   BorderStyle = bsDialog
  6.   Caption = 'Find Text'
  7.   ClientHeight = 252
  8.   ClientWidth = 303
  9.   Color = clBtnFace
  10.   Font.Charset = DEFAULT_CHARSET
  11.   Font.Color = clWindowText
  12.   Font.Height = -11
  13.   Font.Name = 'MS Sans Serif'
  14.   Font.Style = []
  15.   KeyPreview = True
  16.   OldCreateOrder = False
  17.   Position = poScreenCenter
  18.   OnClose = FormClose
  19.   OnKeyDown = FormKeyDown
  20.   OnShow = FormShow
  21.   DesignSize = (
  22.     303
  23.     252)
  24.   PixelsPerInch = 96
  25.   TextHeight = 13
  26.   object lblFind: TLabel
  27.     Left = 8
  28.     Top = 29
  29.     Width = 56
  30.     Height = 13
  31.     Caption = '&Text to find:'
  32.     FocusControl = cboFindText
  33.   end
  34.   object grpWhere: TGroupBox
  35.     Left = 156
  36.     Top = 74
  37.     Width = 140
  38.     Height = 68
  39.     Caption = '  Where:  '
  40.     TabOrder = 8
  41.     object rbProjectFiles: TRadioButton
  42.       Left = 7
  43.       Top = 17
  44.       Width = 110
  45.       Height = 17
  46.       Caption = 'Files in Project'
  47.       Checked = True
  48.       TabOrder = 0
  49.       TabStop = True
  50.     end
  51.     object rbOpenFIles: TRadioButton
  52.       Left = 8
  53.       Top = 40
  54.       Width = 110
  55.       Height = 17
  56.       Caption = 'Open Files'
  57.       TabOrder = 1
  58.     end
  59.   end
  60.   object grpDirection: TGroupBox
  61.     Left = 156
  62.     Top = 74
  63.     Width = 140
  64.     Height = 68
  65.     Caption = '  Direction:  '
  66.     TabOrder = 4
  67.     object rbForward: TRadioButton
  68.       Left = 7
  69.       Top = 17
  70.       Width = 110
  71.       Height = 17
  72.       Caption = '&Forward'
  73.       Checked = True
  74.       TabOrder = 0
  75.       TabStop = True
  76.     end
  77.     object rbBackward: TRadioButton
  78.       Left = 8
  79.       Top = 40
  80.       Width = 110
  81.       Height = 17
  82.       Caption = '&Backward'
  83.       TabOrder = 1
  84.     end
  85.   end
  86.   object btnFind: TButton
  87.     Left = 8
  88.     Top = 222
  89.     Width = 80
  90.     Height = 24
  91.     Anchors = [akLeft, akBottom]
  92.     Caption = 'Find'
  93.     Default = True
  94.     ModalResult = 1
  95.     TabOrder = 0
  96.     OnClick = btnFindClick
  97.   end
  98.   object btnCancel: TButton
  99.     Left = 212
  100.     Top = 222
  101.     Width = 80
  102.     Height = 24
  103.     Anchors = [akLeft, akBottom]
  104.     Cancel = True
  105.     Caption = 'Cancel'
  106.     ModalResult = 2
  107.     TabOrder = 1
  108.     OnClick = btnCancelClick
  109.   end
  110.   object FindTabs: TdevTabs
  111.     Left = 0
  112.     Top = 0
  113.     Width = 303
  114.     Height = 21
  115.     Align = alTop
  116.     Tabs.Strings = (
  117.       'Find'
  118.       'Find in Files')
  119.     TabIndex = 0
  120.     OnChange = FindTabsChange
  121.   end
  122.   object cboFindText: TComboBox
  123.     Left = 8
  124.     Top = 46
  125.     Width = 289
  126.     Height = 21
  127.     ItemHeight = 13
  128.     TabOrder = 2
  129.   end
  130.   object grpOptions: TGroupBox
  131.     Left = 8
  132.     Top = 74
  133.     Width = 140
  134.     Height = 69
  135.     Caption = '  Options:  '
  136.     TabOrder = 3
  137.     object cbMatchCase: TCheckBox
  138.       Left = 8
  139.       Top = 16
  140.       Width = 120
  141.       Height = 17
  142.       Caption = '&Case sensitive'
  143.       TabOrder = 0
  144.     end
  145.     object cbWholeWord: TCheckBox
  146.       Left = 8
  147.       Top = 40
  148.       Width = 120
  149.       Height = 17
  150.       Caption = '&Whole words only'
  151.       TabOrder = 1
  152.     end
  153.   end
  154.   object grpScope: TGroupBox
  155.     Left = 8
  156.     Top = 148
  157.     Width = 140
  158.     Height = 64
  159.     Caption = '  Scope:  '
  160.     TabOrder = 5
  161.     object rbGlobal: TRadioButton
  162.       Left = 8
  163.       Top = 16
  164.       Width = 110
  165.       Height = 17
  166.       Caption = '&Global'
  167.       Checked = True
  168.       TabOrder = 0
  169.       TabStop = True
  170.     end
  171.     object rbSelectedOnly: TRadioButton
  172.       Left = 8
  173.       Top = 40
  174.       Width = 110
  175.       Height = 17
  176.       Caption = '&Selected only'
  177.       TabOrder = 1
  178.     end
  179.   end
  180.   object grpOrigin: TGroupBox
  181.     Left = 156
  182.     Top = 148
  183.     Width = 140
  184.     Height = 64
  185.     Caption = '  Origin:  '
  186.     TabOrder = 6
  187.     object rbFromCursor: TRadioButton
  188.       Left = 8
  189.       Top = 16
  190.       Width = 110
  191.       Height = 17
  192.       Caption = 'From &cursor'
  193.       Checked = True
  194.       TabOrder = 0
  195.       TabStop = True
  196.     end
  197.     object rbEntireScope: TRadioButton
  198.       Left = 8
  199.       Top = 40
  200.       Width = 110
  201.       Height = 17
  202.       Caption = 'Entire &scope'
  203.       TabOrder = 1
  204.     end
  205.   end
  206.   object XPMenu: TXPMenu
  207.     DimLevel = 30
  208.     GrayLevel = 10
  209.     Font.Charset = ANSI_CHARSET
  210.     Font.Color = clMenuText
  211.     Font.Height = -11
  212.     Font.Name = 'Microsoft Sans Serif'
  213.     Font.Style = []
  214.     Color = clBtnFace
  215.     DrawMenuBar = False
  216.     IconBackColor = clBtnFace
  217.     MenuBarColor = clBtnFace
  218.     SelectColor = clHighlight
  219.     SelectBorderColor = clHighlight
  220.     SelectFontColor = clMenuText
  221.     DisabledColor = clInactiveCaption
  222.     SeparatorColor = clBtnFace
  223.     CheckedColor = clHighlight
  224.     IconWidth = 24
  225.     DrawSelect = True
  226.     UseSystemColors = True
  227.     UseDimColor = False
  228.     OverrideOwnerDraw = False
  229.     Gradient = False
  230.     FlatMenu = False
  231.     AutoDetect = True
  232.     Active = False
  233.     Left = 136
  234.     Top = 56
  235.   end
  236. end
  237.