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

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