1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
|
object FileSearcherForm: TFileSearcherForm
Left = 593
Height = 214
Top = 407
Width = 556
ActiveControl = edtSearch
BorderIcons = [biMaximize]
BorderStyle = bsSizeToolWin
Caption = 'Search file'
ClientHeight = 214
ClientWidth = 556
Position = poScreenCenter
LCLVersion = '3.99.0.0'
OnCreate = FormCreate
OnDestroy = FormDestroy
object bpFileSearch: TButtonPanel
Left = 6
Height = 56
Top = 152
Width = 544
OKButton.Name = 'OKButton'
OKButton.DefaultCaption = True
HelpButton.Name = 'HelpButton'
HelpButton.DefaultCaption = True
CloseButton.Name = 'CloseButton'
CloseButton.DefaultCaption = True
CancelButton.Name = 'CancelButton'
CancelButton.DefaultCaption = True
TabOrder = 0
ShowButtons = [pbOK, pbCancel]
end
object Label1: TLabel
AnchorSideTop.Control = edtSearch
AnchorSideRight.Control = edtSearch
AnchorSideBottom.Control = edtSearch
AnchorSideBottom.Side = asrBottom
Left = 28
Height = 34
Top = 4
Width = 68
Alignment = taRightJustify
Anchors = [akTop, akLeft, akRight, akBottom]
AutoSize = False
BorderSpacing.Right = 8
Caption = 'Filename'
Layout = tlCenter
end
object edtSearch: TEdit
Left = 104
Height = 34
Top = 4
Width = 299
Anchors = [akTop, akLeft, akRight]
TabOrder = 1
TextHint = 'Type filename'
OnChange = edtSearchChange
end
object LBFiles: TListBox
Left = 8
Height = 125
Top = 40
Width = 541
Anchors = [akTop, akLeft, akRight, akBottom]
ItemHeight = 0
MultiSelect = True
Style = lbOwnerDrawFixed
TabOrder = 2
TopIndex = -1
OnDblClick = LBFilesDblClick
OnDrawItem = LBFilesDrawItem
end
object cbFilter: TFilterComboBox
AnchorSideTop.Control = edtSearch
AnchorSideBottom.Control = edtSearch
AnchorSideBottom.Side = asrBottom
Left = 412
Height = 34
Top = 4
Width = 137
Anchors = [akTop, akRight, akBottom]
Filter = 'Pascal files|*.pas;*.pp;*.inc;*.lpr;*.dpr|All files|*.*'
ItemIndex = 0
TabOrder = 3
OnChange = cbFilterChange
end
end
|