forked from do-/steludio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SearchReplace.dfm
148 lines (148 loc) · 2.84 KB
/
SearchReplace.dfm
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
object SearchReplaceForm: TSearchReplaceForm
Left = 410
Top = 364
BorderStyle = bsDialog
Caption = 'Search/Replace'
ClientHeight = 190
ClientWidth = 304
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
Position = poOwnerFormCenter
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object Label1: TLabel
Left = 6
Top = 12
Width = 23
Height = 13
Caption = 'Find:'
end
object Bevel1: TBevel
Left = 7
Top = 80
Width = 290
Height = 2
end
object Bevel2: TBevel
Left = 7
Top = 152
Width = 290
Height = 2
end
object CheckBoxMatchCase: TCheckBox
Left = 8
Top = 36
Width = 150
Height = 17
Caption = 'Case Sensitive'
TabOrder = 1
end
object EditSearch: TEdit
Left = 31
Top = 8
Width = 267
Height = 21
TabOrder = 0
end
object CheckBoxWholeWord: TCheckBox
Left = 8
Top = 56
Width = 145
Height = 17
Caption = 'Whole words only'
TabOrder = 3
end
object CheckBoxBackwards: TCheckBox
Left = 160
Top = 56
Width = 121
Height = 17
Caption = 'Search backwards'
TabOrder = 4
end
object CheckBoxSelectedOnly: TCheckBox
Left = 160
Top = 36
Width = 118
Height = 17
Caption = 'Selected only'
TabOrder = 2
end
object EditReplace: TEdit
Left = 96
Top = 86
Width = 201
Height = 21
TabOrder = 6
end
object CheckBoxReplace: TCheckBox
Left = 8
Top = 88
Width = 88
Height = 17
Caption = 'Replace with:'
TabOrder = 5
OnClick = CheckBoxReplaceClick
end
object CheckBoxReplaceAll: TCheckBox
Left = 8
Top = 109
Width = 81
Height = 17
Caption = 'Replace all'
TabOrder = 7
end
object CheckBoxPrompt: TCheckBox
Left = 160
Top = 109
Width = 121
Height = 17
Caption = 'Prompt on replace'
TabOrder = 8
end
object BitBtnOK: TBitBtn
Left = 64
Top = 160
Width = 75
Height = 25
Caption = 'OK'
Default = True
TabOrder = 9
OnClick = BitBtnOKClick
end
object BitBtnCancel: TBitBtn
Left = 166
Top = 160
Width = 75
Height = 25
Cancel = True
Caption = 'Cancel'
Default = True
TabOrder = 10
OnClick = BitBtnCancelClick
end
object RadioButtonEntireScope: TRadioButton
Left = 8
Top = 130
Width = 113
Height = 17
Caption = 'Entire scope'
Checked = True
TabOrder = 11
TabStop = True
end
object RadioButtonFromCursor: TRadioButton
Left = 160
Top = 130
Width = 113
Height = 17
Caption = 'From cursor'
TabOrder = 12
end
end