home *** CD-ROM | disk | FTP | other *** search
- object SrchDialog: TSrchDialog
- Left = 288
- Top = 170
- ActiveControl = SearText
- BorderIcons = [biSystemMenu]
- BorderStyle = bsDialog
- Caption = 'Find Text'
- ClientHeight = 278
- ClientWidth = 433
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clWindowText
- Font.Height = -11
- Font.Name = 'MS Sans Serif'
- Font.Style = []
- Position = poScreenCenter
- Scaled = False
- OnCreate = FormCreate
- OnDestroy = FormDestroy
- PixelsPerInch = 96
- TextHeight = 13
- object PageControl: TPageControl
- Left = 0
- Top = 0
- Width = 433
- Height = 237
- ActivePage = EditorFindPage
- Align = alClient
- TabOrder = 0
- object EditorFindPage: TTabSheet
- Caption = 'Find'
- object LTexttFind: TLabel
- Left = 8
- Top = 16
- Width = 81
- Height = 13
- AutoSize = False
- Caption = '&Text to find:'
- FocusControl = SearText
- WordWrap = True
- end
- object OptionsGroup: TGroupBox
- Left = 8
- Top = 40
- Width = 201
- Height = 89
- Caption = 'Options'
- TabOrder = 1
- object CaseSens: TCheckBox
- Left = 16
- Top = 16
- Width = 130
- Height = 17
- Caption = '&Case sensitive'
- TabOrder = 0
- end
- object WholeWord: TCheckBox
- Left = 16
- Top = 40
- Width = 173
- Height = 17
- Caption = '&Whole words only'
- TabOrder = 1
- end
- object RegExpr: TCheckBox
- Left = 16
- Top = 64
- Width = 173
- Height = 17
- Caption = '&Regular expressions'
- TabOrder = 2
- end
- end
- object SearText: TDCHistoryEditor
- Left = 96
- Top = 16
- Width = 321
- Height = 21
- ItemHeight = 13
- TabOrder = 0
- end
- object ScopeGroup: TRadioGroup
- Left = 8
- Top = 136
- Width = 201
- Height = 65
- Caption = 'Scope'
- Items.Strings = (
- 'Global'
- 'Selected text')
- TabOrder = 3
- end
- object OriginGroup: TRadioGroup
- Left = 216
- Top = 136
- Width = 201
- Height = 65
- Caption = 'Origin'
- Items.Strings = (
- 'From cursor'
- 'Entire scope')
- TabOrder = 4
- end
- object DirectionGroup: TGroupBox
- Left = 216
- Top = 40
- Width = 201
- Height = 89
- Caption = 'Direction'
- TabOrder = 2
- object dirForward: TRadioButton
- Left = 8
- Top = 16
- Width = 185
- Height = 17
- Caption = 'Forward'
- TabOrder = 0
- end
- object dirBackward: TRadioButton
- Left = 8
- Top = 40
- Width = 185
- Height = 17
- Caption = 'Backward'
- TabOrder = 1
- end
- end
- end
- object FileFindPage: TTabSheet
- Caption = 'Find in Files'
- TabVisible = False
- object Label3: TLabel
- Left = 8
- Top = 16
- Width = 65
- Height = 13
- AutoSize = False
- Caption = '&Text to find:'
- FocusControl = FileSearchText
- WordWrap = True
- end
- object FileSearchText: TDCHistoryEditor
- Left = 96
- Top = 16
- Width = 321
- Height = 21
- ItemHeight = 13
- TabOrder = 0
- end
- object GroupBox2: TGroupBox
- Left = 8
- Top = 40
- Width = 201
- Height = 89
- Caption = 'Options'
- TabOrder = 1
- object FileCaseSense: TCheckBox
- Left = 16
- Top = 16
- Width = 130
- Height = 17
- Caption = '&Case sensitive'
- TabOrder = 0
- end
- object FileWholeWords: TCheckBox
- Left = 16
- Top = 40
- Width = 130
- Height = 17
- TabStop = False
- Caption = '&Whole words only'
- TabOrder = 1
- end
- object FileRegExp: TCheckBox
- Left = 16
- Top = 64
- Width = 130
- Height = 17
- TabStop = False
- Caption = '&Regular expressions'
- TabOrder = 2
- end
- end
- object GroupBox3: TGroupBox
- Left = 216
- Top = 40
- Width = 201
- Height = 89
- Caption = 'Where'
- TabOrder = 2
- object SearchOpen: TRadioButton
- Left = 16
- Top = 40
- Width = 140
- Height = 17
- Caption = 'Search all &open files'
- TabOrder = 1
- end
- object SearchProject: TRadioButton
- Left = 16
- Top = 16
- Width = 140
- Height = 17
- Caption = 'Search all files in &project'
- Checked = True
- TabOrder = 0
- TabStop = True
- end
- object SearchDirectory: TRadioButton
- Left = 16
- Top = 64
- Width = 140
- Height = 17
- Caption = 'Search in &directories'
- TabOrder = 2
- end
- end
- object GroupBox4: TGroupBox
- Left = 8
- Top = 136
- Width = 409
- Height = 73
- Caption = 'Search Directory Options'
- TabOrder = 3
- object Label2: TLabel
- Left = 8
- Top = 24
- Width = 52
- Height = 13
- Caption = 'File &masks:'
- FocusControl = DirSpec
- end
- object DirSpec: TComboBox
- Left = 80
- Top = 24
- Width = 242
- Height = 21
- Enabled = False
- ItemHeight = 13
- TabOrder = 0
- Text = 'DirSpec'
- end
- object IncludeSubDirs: TCheckBox
- Left = 80
- Top = 48
- Width = 140
- Height = 17
- Caption = 'Include &subdirectories'
- Enabled = False
- TabOrder = 1
- end
- object g: TButton
- Left = 328
- Top = 24
- Width = 70
- Height = 25
- Caption = '&Browse...'
- Enabled = False
- TabOrder = 2
- end
- end
- end
- end
- object Panel1: TPanel
- Left = 0
- Top = 237
- Width = 433
- Height = 41
- Align = alBottom
- BevelOuter = bvNone
- TabOrder = 1
- object OKBut: TButton
- Left = 192
- Top = 8
- Width = 73
- Height = 25
- Caption = 'OK'
- Default = True
- ModalResult = 1
- TabOrder = 0
- OnClick = OKButClick
- end
- object CancelBut: TButton
- Left = 272
- Top = 8
- Width = 73
- Height = 25
- Cancel = True
- Caption = 'Cancel'
- ModalResult = 2
- TabOrder = 1
- end
- object HelpBut: TButton
- Left = 352
- Top = 8
- Width = 73
- Height = 25
- Caption = 'Help'
- TabOrder = 2
- end
- end
- end
-