forked from Alexey-T/CudaLister
-
Notifications
You must be signed in to change notification settings - Fork 0
/
form_find.lfm
158 lines (158 loc) · 2.68 KB
/
form_find.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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
object fmFind: TfmFind
Left = 446
Height = 233
Top = 397
Width = 489
BorderStyle = bsDialog
Caption = 'Find/Replace'
ClientHeight = 233
ClientWidth = 489
OnShow = FormShow
Position = poScreenCenter
LCLVersion = '2.3.0.0'
Scaled = False
object bFind: TButton
Left = 376
Height = 25
Top = 48
Width = 99
Caption = 'Find'
ModalResult = 1
TabOrder = 10
end
object bCancel: TButton
Left = 376
Height = 25
Top = 144
Width = 99
Cancel = True
Caption = 'Cancel'
ModalResult = 2
TabOrder = 15
end
object Label1: TLabel
Left = 9
Height = 15
Top = 8
Width = 55
Caption = 'Find what:'
ParentColor = False
end
object edFind: TEdit
Left = 9
Height = 23
Top = 32
Width = 359
TabOrder = 0
end
object chkRegex: TCheckBox
Left = 9
Height = 19
Top = 128
Width = 50
Caption = 'Regex'
OnChange = chkRegexChange
TabOrder = 3
end
object chkBack: TCheckBox
Left = 9
Height = 19
Top = 200
Width = 69
Caption = 'Backward'
TabOrder = 6
end
object chkCase: TCheckBox
Left = 9
Height = 19
Top = 152
Width = 91
Caption = 'Case sensitive'
TabOrder = 4
end
object chkWords: TCheckBox
Left = 9
Height = 19
Top = 176
Width = 113
Caption = 'Whole words only'
TabOrder = 5
end
object edRep: TEdit
Left = 9
Height = 23
Top = 88
Width = 359
TabOrder = 2
end
object chkRep: TCheckBox
Left = 9
Height = 19
Top = 64
Width = 88
Caption = 'Replace with:'
OnChange = chkRepChange
TabOrder = 1
end
object bRep: TButton
Left = 376
Height = 25
Top = 16
Width = 99
Caption = 'Replace'
Default = True
ModalResult = 6
TabOrder = 11
end
object bRepAll: TButton
Left = 376
Height = 25
Top = 48
Width = 99
Caption = 'Replace all'
ModalResult = 10
TabOrder = 12
end
object chkFromCaret: TCheckBox
Left = 216
Height = 19
Top = 128
Width = 75
Caption = 'From caret'
TabOrder = 7
end
object bCount: TButton
Left = 376
Height = 25
Top = 80
Width = 99
Caption = 'Count all'
ModalResult = 5
TabOrder = 13
end
object chkConfirm: TCheckBox
Left = 216
Height = 19
Top = 152
Width = 103
Caption = 'Confirm replace'
TabOrder = 8
end
object bMarkAll: TButton
Left = 376
Height = 25
Top = 112
Width = 99
Caption = 'Mark all'
ModalResult = 4
TabOrder = 14
end
object chkInSel: TCheckBox
Left = 216
Height = 19
Top = 176
Width = 78
Caption = 'In selection'
TabOrder = 9
end
end