forked from doublecmd/doublecmd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ffindview.lfm
138 lines (138 loc) · 3.28 KB
/
ffindview.lfm
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
object frmFindView: TfrmFindView
Left = 365
Height = 151
Top = 311
Width = 430
HorzScrollBar.Page = 343
HorzScrollBar.Range = 103
VertScrollBar.Page = 96
VertScrollBar.Range = 90
ActiveControl = cbDataToFind
AutoSize = True
BorderIcons = [biSystemMenu]
BorderStyle = bsDialog
Caption = 'Find'
ChildSizing.TopBottomSpacing = 6
ClientHeight = 151
ClientWidth = 430
DesignTimePPI = 120
OnActivate = FormActivate
OnShow = FormShow
Position = poOwnerFormCenter
LCLVersion = '2.0.12.0'
object cbDataToFind: TComboBox
AnchorSideLeft.Control = Owner
AnchorSideTop.Control = Owner
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
Left = 10
Height = 28
Top = 15
Width = 410
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Left = 10
BorderSpacing.Top = 15
BorderSpacing.Right = 10
Constraints.MinWidth = 410
ItemHeight = 20
OnKeyUp = cbDataToFindKeyUp
ParentFont = False
TabOrder = 0
end
object btnFind: TBitBtn
AnchorSideTop.Control = btnClose
AnchorSideRight.Control = btnClose
AnchorSideBottom.Side = asrBottom
Left = 188
Height = 30
Top = 114
Width = 112
Anchors = [akTop, akRight]
AutoSize = True
BorderSpacing.Right = 8
BorderSpacing.Bottom = 5
Caption = '&Find'
Constraints.MinWidth = 112
Default = True
OnClick = btnFindClick
ParentFont = False
TabOrder = 5
end
object btnClose: TBitBtn
AnchorSideTop.Control = cbBackwards
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
AnchorSideBottom.Side = asrBottom
Left = 308
Height = 30
Top = 114
Width = 112
Anchors = [akTop, akRight]
AutoSize = True
BorderSpacing.Top = 15
BorderSpacing.Right = 10
BorderSpacing.Bottom = 5
Caption = '&Cancel'
Constraints.MinWidth = 112
Kind = bkCancel
ModalResult = 2
ParentFont = False
TabOrder = 6
end
object cbCaseSens: TCheckBox
AnchorSideLeft.Control = cbDataToFind
AnchorSideTop.Control = cbDataToFind
AnchorSideTop.Side = asrBottom
Left = 10
Height = 24
Top = 51
Width = 115
BorderSpacing.Top = 8
Caption = 'C&ase sensitive'
ParentFont = False
TabOrder = 1
end
object chkHex: TCheckBox
AnchorSideLeft.Control = cbCaseSens
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = cbCaseSens
AnchorSideTop.Side = asrCenter
Left = 140
Height = 24
Top = 51
Width = 111
BorderSpacing.Left = 15
Caption = 'Hexadecimal'
OnChange = chkHexChange
ParentFont = False
TabOrder = 2
end
object cbRegExp: TCheckBox
AnchorSideLeft.Control = chkHex
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = chkHex
AnchorSideTop.Side = asrCenter
Left = 261
Height = 24
Top = 51
Width = 155
BorderSpacing.Left = 10
Caption = '&Regular expressions'
OnChange = cbRegExpChange
ParentFont = False
TabOrder = 3
end
object cbBackwards: TCheckBox
AnchorSideLeft.Control = cbCaseSens
AnchorSideTop.Control = cbCaseSens
AnchorSideTop.Side = asrBottom
Left = 10
Height = 24
Top = 75
Width = 94
Caption = '&Backwards'
OnChange = cbBackwardsChange
TabOrder = 4
end
end