-
Notifications
You must be signed in to change notification settings - Fork 87
/
Copy pathdlgSearchText.dfm
114 lines (114 loc) · 2.2 KB
/
dlgSearchText.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
object TextSearchDialog: TTextSearchDialog
Left = 749
Top = 274
BorderStyle = bsDialog
Caption = 'Search Text'
ClientHeight = 180
ClientWidth = 332
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
Position = poScreenCenter
OnCloseQuery = FormCloseQuery
PixelsPerInch = 96
TextHeight = 13
object Label1: TLabel
Left = 8
Top = 12
Width = 52
Height = 13
Caption = '&Search for:'
end
object cbSearchText: TComboBox
Left = 96
Top = 8
Width = 228
Height = 21
ItemHeight = 13
TabOrder = 0
end
object gbSearchOptions: TGroupBox
Left = 8
Top = 40
Width = 154
Height = 127
Caption = 'Options'
TabOrder = 1
object cbSearchCaseSensitive: TCheckBox
Left = 8
Top = 17
Width = 140
Height = 17
Caption = 'C&ase sensitivity'
TabOrder = 0
end
object cbSearchWholeWords: TCheckBox
Left = 8
Top = 39
Width = 140
Height = 17
Caption = '&Whole words only'
TabOrder = 1
end
object cbSearchFromCursor: TCheckBox
Left = 8
Top = 61
Width = 140
Height = 17
Caption = 'Search from &caret'
TabOrder = 2
end
object cbSearchSelectedOnly: TCheckBox
Left = 8
Top = 83
Width = 140
Height = 17
Caption = '&Selected text only'
TabOrder = 3
end
object cbRegularExpression: TCheckBox
Left = 8
Top = 104
Width = 140
Height = 17
Caption = '&Regular expression'
TabOrder = 4
end
end
object rgSearchDirection: TRadioGroup
Left = 170
Top = 40
Width = 154
Height = 65
Caption = 'Direction'
ItemIndex = 0
Items.Strings = (
'&Forward'
'&Backward')
TabOrder = 2
end
object btnOK: TButton
Left = 170
Top = 149
Width = 75
Height = 23
Caption = 'OK'
Default = True
ModalResult = 1
TabOrder = 3
end
object btnCancel: TButton
Left = 249
Top = 149
Width = 75
Height = 23
Cancel = True
Caption = 'Cancel'
ModalResult = 2
TabOrder = 4
end
end