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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
|
object fmCustomizeFilters: TfmCustomizeFilters
Left = 227
Top = 70
BorderStyle = bsDialog
Caption = 'Customize Filters'
ClientHeight = 466
ClientWidth = 370
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
KeyPreview = True
OldCreateOrder = False
Position = poOwnerFormCenter
OnClose = FormClose
OnCreate = FormCreate
OnDestroy = FormDestroy
OnKeyDown = FormKeyDown
PixelsPerInch = 96
TextHeight = 13
object paClient: TPanel
Left = 0
Top = 0
Width = 370
Height = 466
Align = alClient
BevelOuter = bvNone
BorderWidth = 4
TabOrder = 0
DesignSize = (
370
466)
object bnCancel: TButton
Left = 89
Top = 433
Width = 75
Height = 25
Anchors = [akLeft, akBottom]
Cancel = True
Caption = '&Cancel'
TabOrder = 3
OnClick = bnCancelClick
end
object bnOK: TButton
Left = 8
Top = 433
Width = 75
Height = 25
Anchors = [akLeft, akBottom]
Caption = '&OK'
Default = True
TabOrder = 2
OnClick = bnOKClick
end
object bnReset: TButton
Left = 231
Top = 433
Width = 131
Height = 25
Anchors = [akRight, akBottom]
Caption = '&Reset to Default'
TabOrder = 4
OnClick = bnResetClick
end
object gbFilter: THppGroupBox
Left = 4
Top = 145
Width = 362
Height = 281
Align = alCustom
Anchors = [akLeft, akTop, akRight, akBottom]
Caption = 'Filter Properties'
Color = clBtnFace
ParentBackground = False
ParentColor = False
TabOrder = 1
DesignSize = (
362
281)
object laFilterName: TLabel
Left = 12
Top = 23
Width = 31
Height = 13
Caption = '&Name:'
FocusControl = edFilterName
end
object edFilterName: THppEdit
Left = 60
Top = 20
Width = 292
Height = 21
Anchors = [akLeft, akTop, akRight]
MaxLength = 63
TabOrder = 0
OnChange = edFilterNameChange
OnKeyPress = edEditKeyPress
end
object clEvents: TCheckListBox
Left = 12
Top = 88
Width = 340
Height = 153
OnClickCheck = clEventsClickCheck
Anchors = [akLeft, akTop, akRight, akBottom]
ItemHeight = 13
Style = lbOwnerDrawFixed
TabOrder = 3
OnDrawItem = clEventsDrawItem
end
object cbCustomEvent: TCheckBox
Left = 12
Top = 248
Width = 249
Height = 21
Anchors = [akLeft, akRight, akBottom]
Caption = 'Include custom event type (0-65535)'
TabOrder = 4
OnClick = cbCustomEventClick
end
object edCustomEvent: THppEdit
Left = 267
Top = 248
Width = 85
Height = 21
Anchors = [akRight, akBottom]
MaxLength = 5
TabOrder = 5
OnChange = edCustomEventChange
OnKeyPress = edEditKeyPress
end
object rbInclude: TRadioButton
Left = 12
Top = 50
Width = 340
Height = 17
Anchors = [akLeft, akTop, akRight]
Caption = 'Show only selected events'
TabOrder = 1
OnClick = rbPropertyClick
end
object rbExclude: TRadioButton
Left = 12
Top = 69
Width = 340
Height = 17
Anchors = [akLeft, akTop, akRight]
Caption = 'Show all except selected events'
TabOrder = 2
OnClick = rbPropertyClick
end
end
object gbFilters: THppGroupBox
Left = 4
Top = 4
Width = 362
Height = 137
Align = alTop
Caption = 'Filters'
Color = clBtnFace
ParentBackground = False
ParentColor = False
TabOrder = 0
DesignSize = (
362
137)
object lbFilters: TListBox
Left = 12
Top = 20
Width = 249
Height = 105
Style = lbOwnerDrawFixed
Anchors = [akLeft, akTop, akRight, akBottom]
DragMode = dmAutomatic
ItemHeight = 13
TabOrder = 0
OnClick = lbFiltersClick
OnDragDrop = lbFiltersDragDrop
OnDragOver = lbFiltersDragOver
OnDrawItem = lbFiltersDrawItem
end
object bnDown: TButton
Left = 267
Top = 102
Width = 85
Height = 23
Anchors = [akTop, akRight]
Caption = '&Down'
TabOrder = 4
OnClick = bnDownClick
end
object bnUp: TButton
Left = 267
Top = 74
Width = 85
Height = 23
Anchors = [akTop, akRight]
Caption = '&Up'
TabOrder = 3
OnClick = bnUpClick
end
object bnDelete: TButton
Left = 267
Top = 47
Width = 85
Height = 23
Anchors = [akTop, akRight]
Caption = 'D&elete'
TabOrder = 2
OnClick = bnDeleteClick
end
object bnAdd: TButton
Left = 267
Top = 20
Width = 85
Height = 23
Anchors = [akTop, akRight]
Caption = '&Add'
TabOrder = 1
OnClick = bnAddClick
end
end
end
end
|