-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathusearch.lfm
99 lines (99 loc) · 1.79 KB
/
usearch.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
object FSearch: TFSearch
Left = 445
Height = 251
Top = 179
Width = 480
BorderStyle = bsDialog
Caption = 'Search & replace'
ClientHeight = 251
ClientWidth = 480
DesignTimePPI = 144
Position = poOwnerFormCenter
LCLVersion = '2.0.2.0'
object Label1: TLabel
Left = 14
Height = 25
Top = 11
Width = 71
Caption = 'Look for:'
ParentColor = False
end
object Edit_SearchFor: TEdit
Left = 105
Height = 33
Top = 9
Width = 360
OnChange = Edit_SearchForChange
TabOrder = 0
end
object CheckBox_CaseSensitive: TCheckBox
Left = 16
Height = 29
Top = 54
Width = 139
Caption = 'Case sensitive'
TabOrder = 1
end
object CheckBox_WholeWord: TCheckBox
Left = 232
Height = 29
Top = 54
Width = 127
Caption = 'Whole word'
TabOrder = 2
end
object CheckBox_RegExp: TCheckBox
Left = 16
Height = 29
Top = 96
Width = 179
Caption = 'Regular expression'
TabOrder = 3
end
object CheckBox_Backwards: TCheckBox
Left = 232
Height = 29
Top = 96
Width = 113
Caption = 'Backwards'
TabOrder = 4
end
object CheckBox_Replace: TCheckBox
Left = 14
Height = 29
Top = 144
Width = 120
Caption = 'Replace by:'
OnChange = CheckBox_ReplaceChange
TabOrder = 5
end
object Edit_ReplaceBy: TEdit
Left = 144
Height = 33
Top = 143
Width = 321
Enabled = False
TabOrder = 6
end
object Button_Ok: TButton
Left = 99
Height = 37
Top = 195
Width = 125
Caption = 'Ok'
Default = True
Enabled = False
ModalResult = 1
TabOrder = 7
end
object Button_Cancel: TButton
Left = 240
Height = 37
Top = 195
Width = 125
Cancel = True
Caption = 'Cancel'
ModalResult = 2
TabOrder = 8
end
end