-
Notifications
You must be signed in to change notification settings - Fork 0
/
MainForm.dfm
711 lines (711 loc) · 15.3 KB
/
MainForm.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
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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
object Main: TMain
Left = 474
Top = 35
Width = 544
Height = 666
Caption = 'MambaNet Tester'
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
OnCreate = FormCreate
PixelsPerInch = 96
TextHeight = 13
object GroupBox1: TGroupBox
Left = 5
Top = 5
Width = 523
Height = 116
Anchors = [akLeft, akTop, akRight]
Caption = 'Connection'
TabOrder = 0
object Label1: TLabel
Left = 360
Top = 39
Width = 45
Height = 13
Anchors = [akTop, akRight]
Caption = 'UniqueID'
end
object Label3: TLabel
Left = 423
Top = 39
Width = 77
Height = 13
Anchors = [akTop, akRight]
Caption = 'MambaNet Addr'
end
object btnOpen: TButton
Left = 360
Top = 14
Width = 51
Height = 21
Anchors = [akTop, akRight]
Caption = 'Open'
TabOrder = 0
OnClick = btnOpenClick
end
object txtMyAddress: TEdit
Left = 423
Top = 54
Width = 86
Height = 21
Anchors = [akTop, akRight]
Enabled = False
TabOrder = 1
Text = '0'
end
object btnClose: TButton
Left = 423
Top = 14
Width = 51
Height = 21
Anchors = [akTop, akRight]
Caption = 'Close'
Enabled = False
TabOrder = 2
OnClick = btnCloseClick
end
object cseUniqueID: TCSpinEdit
Left = 360
Top = 54
Width = 51
Height = 22
TabStop = True
Anchors = [akTop, akRight]
MaxValue = 65535
ParentColor = False
TabOrder = 3
Value = 1
OnChange = cseUniqueIDChange
end
object ConnectionPageControl: TPageControl
Left = 16
Top = 16
Width = 323
Height = 81
ActivePage = EthernetPage
Anchors = [akLeft, akTop, akRight]
TabOrder = 4
object EthernetPage: TTabSheet
Caption = 'Ethernet'
object Label2: TLabel
Left = 10
Top = 7
Width = 42
Height = 13
Caption = 'Interface'
end
object lstInterfaces: TComboBox
Left = 10
Top = 22
Width = 300
Height = 21
Style = csDropDownList
Anchors = [akLeft, akTop, akRight]
ItemHeight = 13
TabOrder = 0
Items.Strings = (
'test'
'test 1')
end
end
object UDPPage: TTabSheet
Caption = 'UDP/IP'
ImageIndex = 1
object Label22: TLabel
Left = 10
Top = 7
Width = 56
Height = 13
Caption = '<url>:<port>'
end
object UDPEdit: TEdit
Left = 10
Top = 22
Width = 300
Height = 21
Anchors = [akLeft, akTop, akRight]
TabOrder = 0
end
end
object TCPPage: TTabSheet
Caption = 'TCP/IP'
ImageIndex = 2
object Label24: TLabel
Left = 10
Top = 7
Width = 56
Height = 13
Caption = '<url>:<port>'
end
object TCPEdit: TEdit
Left = 10
Top = 22
Width = 300
Height = 21
Anchors = [akLeft, akTop, akRight]
TabOrder = 0
end
end
end
object AboutButton: TButton
Left = 412
Top = 86
Width = 97
Height = 21
Anchors = [akTop, akRight]
Caption = 'About mbnlib.dll'
TabOrder = 5
OnClick = AboutButtonClick
end
end
object pcTabs: TPageControl
Left = 5
Top = 136
Width = 523
Height = 483
ActivePage = TabSheet3
Anchors = [akLeft, akTop, akRight, akBottom]
TabOrder = 1
object TabSheet3: TTabSheet
Caption = 'Node list'
ImageIndex = 2
object cbListFetch: TCheckBox
Left = 5
Top = 437
Width = 161
Height = 16
Anchors = [akLeft, akBottom]
Caption = 'Fetch additional information'
TabOrder = 0
OnClick = cbListFetchClick
end
object mbnPingAll: TButton
Left = 439
Top = 434
Width = 71
Height = 21
Anchors = [akRight, akBottom]
Caption = 'Ping all'
TabOrder = 1
OnClick = mbnPingAllClick
end
object lvNodeList: TListView
Left = 5
Top = 5
Width = 503
Height = 428
Anchors = [akLeft, akTop, akRight, akBottom]
Columns = <
item
Caption = 'Address'
end
item
Caption = 'ID'
end
item
Caption = 'Engine'
end
item
Caption = 'Serv'
end
item
Caption = 'Parent'
end
item
Caption = 'Name'
end>
GridLines = True
HideSelection = False
ReadOnly = True
RowSelect = True
SortType = stText
TabOrder = 2
ViewStyle = vsReport
OnColumnClick = lvNodeListColumnClick
OnCompare = lvNodeListCompare
OnDblClick = lvNodeListDblClick
end
end
object TabSheet2: TTabSheet
Caption = 'Node information'
ImageIndex = 1
object Label4: TLabel
Left = 10
Top = 15
Width = 31
Height = 13
Caption = 'Name:'
end
object lblNodeName: TLabel
Left = 80
Top = 15
Width = 3
Height = 13
Caption = '-'
end
object Label5: TLabel
Left = 10
Top = 0
Width = 56
Height = 13
Caption = 'Description:'
end
object lblNodeDesc: TLabel
Left = 80
Top = 0
Width = 3
Height = 13
Caption = '-'
end
object Label6: TLabel
Left = 10
Top = 30
Width = 49
Height = 13
Caption = 'Revisions:'
end
object Label7: TLabel
Left = 80
Top = 30
Width = 22
Height = 13
Caption = 'HW:'
end
object lblNodeHWMa: TLabel
Left = 127
Top = 30
Width = 3
Height = 13
Alignment = taRightJustify
Caption = '-'
end
object Label9: TLabel
Left = 130
Top = 30
Width = 3
Height = 13
Caption = '.'
end
object lblNodeHWMi: TLabel
Left = 133
Top = 30
Width = 3
Height = 13
Caption = '-'
end
object Label8: TLabel
Left = 170
Top = 30
Width = 20
Height = 13
Caption = 'FW:'
end
object lblNodeFWMa: TLabel
Left = 217
Top = 30
Width = 3
Height = 13
Alignment = taRightJustify
Caption = '-'
end
object Label11: TLabel
Left = 220
Top = 30
Width = 3
Height = 13
Caption = '.'
end
object lblNodeFWMi: TLabel
Left = 223
Top = 30
Width = 3
Height = 13
Caption = '-'
end
object Label10: TLabel
Left = 290
Top = 30
Width = 31
Height = 13
Caption = 'FPGA:'
end
object lblNodeFPMa: TLabel
Left = 347
Top = 30
Width = 3
Height = 13
Alignment = taRightJustify
Caption = '-'
end
object Label13: TLabel
Left = 350
Top = 30
Width = 3
Height = 13
Caption = '.'
end
object lblNodeFPMi: TLabel
Left = 353
Top = 30
Width = 3
Height = 13
Caption = '-'
end
object lblNodePRMi: TLabel
Left = 453
Top = 30
Width = 3
Height = 13
Caption = '-'
end
object Label14: TLabel
Left = 450
Top = 30
Width = 3
Height = 13
Caption = '.'
end
object lblNodePRMa: TLabel
Left = 447
Top = 30
Width = 3
Height = 13
Alignment = taRightJustify
Caption = '-'
end
object Label16: TLabel
Left = 395
Top = 30
Width = 33
Height = 13
Caption = 'PROT:'
end
object Label12: TLabel
Left = 170
Top = 45
Width = 36
Height = 13
Caption = 'Engine:'
end
object lblNodeEngine: TLabel
Left = 215
Top = 45
Width = 3
Height = 13
Caption = '-'
end
object Label15: TLabel
Left = 10
Top = 45
Width = 56
Height = 13
Caption = 'HW Parent:'
end
object lblNodeHWPar: TLabel
Left = 80
Top = 45
Width = 3
Height = 13
Caption = '-'
end
object lblNodeSR: TLabel
Left = 395
Top = 45
Width = 3
Height = 13
Caption = '-'
end
object Label17: TLabel
Left = 290
Top = 45
Width = 39
Height = 13
Caption = 'Objects:'
end
object lblObjCount: TLabel
Left = 343
Top = 45
Width = 3
Height = 13
Caption = '-'
end
object lblNodeAddr: TLabel
Left = 343
Top = 0
Width = 3
Height = 13
Caption = '-'
end
object Label19: TLabel
Left = 290
Top = 0
Width = 41
Height = 13
Caption = 'Address:'
end
object Label18: TLabel
Left = 10
Top = 412
Width = 36
Height = 13
Anchors = [akLeft, akBottom]
Caption = 'Sensor:'
end
object Label20: TLabel
Left = 252
Top = 412
Width = 43
Height = 13
Anchors = [akRight, akBottom]
Caption = 'Actuator:'
end
object lblObjSensor: TLabel
Left = 70
Top = 412
Width = 3
Height = 13
Anchors = [akLeft, akBottom]
Caption = '-'
end
object lblObjActuator: TLabel
Left = 302
Top = 412
Width = 3
Height = 13
Anchors = [akRight, akBottom]
Caption = '-'
end
object Label21: TLabel
Left = 10
Top = 437
Width = 53
Height = 13
Anchors = [akLeft, akBottom]
Caption = 'Frequency:'
end
object lblNodeID: TLabel
Left = 343
Top = 15
Width = 3
Height = 13
Caption = '-'
end
object Label23: TLabel
Left = 290
Top = 15
Width = 48
Height = 13
Caption = 'UniqueID:'
end
object lblObjStatus: TLabel
Left = 437
Top = 437
Width = 17
Height = 13
Alignment = taRightJustify
Anchors = [akRight, akBottom]
Caption = '0/0'
end
object lvObjects: TListView
Left = 5
Top = 60
Width = 503
Height = 348
Anchors = [akLeft, akTop, akRight, akBottom]
Columns = <
item
Caption = 'Nr.'
end
item
Caption = 'Serv'
end
item
Caption = 'Description'
end
item
Caption = 'S type'
end
item
Caption = 'S min-max'
end
item
Caption = 'A type'
end
item
Caption = 'A min-max-def'
end>
ColumnClick = False
GridLines = True
HideSelection = False
MultiSelect = True
ReadOnly = True
RowSelect = True
SortType = stText
TabOrder = 0
ViewStyle = vsReport
OnDeletion = lvObjectsDeletion
OnSelectItem = lvObjectsSelectItem
end
object cbObjFreq: TComboBox
Left = 70
Top = 432
Width = 91
Height = 21
Style = csDropDownList
Anchors = [akLeft, akBottom]
ItemHeight = 13
TabOrder = 1
OnChange = cbObjFreqChange
Items.Strings = (
'[unknown]'
'no changes'
'all changes'
'25 Hz'
'10 Hz'
'5 Hz'
'1 Hz'
'0.2 Hz'
'0.1 Hz')
end
object txtObjStrAct: TEdit
Left = 277
Top = 432
Width = 186
Height = 21
Anchors = [akRight, akBottom]
TabOrder = 2
end
object btnObjStrAct: TButton
Left = 467
Top = 432
Width = 46
Height = 21
Anchors = [akRight, akBottom]
Caption = 'Set'
TabOrder = 3
OnClick = btnObjStrActClick
end
object btnObjRetry: TButton
Left = 467
Top = 432
Width = 46
Height = 21
Anchors = [akRight, akBottom]
Caption = 'Retry'
Enabled = False
TabOrder = 4
OnClick = btnObjRetryClick
end
object cbObjRefresh: TCheckBox
Left = 432
Top = 412
Width = 81
Height = 16
Anchors = [akRight, akBottom]
Caption = 'Auto-refresh'
TabOrder = 5
end
end
object TabSheet1: TTabSheet
Caption = 'Log'
object memLog: TMemo
Left = 5
Top = 5
Width = 491
Height = 371
Anchors = [akLeft, akTop, akRight, akBottom]
Font.Charset = ANSI_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Lucida Console'
Font.Style = []
ParentFont = False
ScrollBars = ssBoth
TabOrder = 0
end
object btnLogClear: TButton
Left = 420
Top = 380
Width = 76
Height = 21
Anchors = [akRight, akBottom]
Caption = 'Clear'
TabOrder = 1
OnClick = btnLogClearClick
end
object chkLogCb: TCheckBox
Left = 90
Top = 380
Width = 71
Height = 21
Hint = 'Callbacks from mbn'
Anchors = [akLeft, akBottom]
Caption = 'Callbacks'
Checked = True
ParentShowHint = False
ShowHint = True
State = cbChecked
TabOrder = 2
end
object chkLogObj: TCheckBox
Left = 165
Top = 380
Width = 61
Height = 21
Hint = 'Show raw object messages'
Anchors = [akLeft, akBottom]
Caption = 'Objects'
ParentShowHint = False
ShowHint = True
TabOrder = 3
end
object chkLogAdr: TCheckBox
Left = 235
Top = 380
Width = 76
Height = 21
Hint = 'Show raw address messages'
Anchors = [akLeft, akBottom]
Caption = 'Addresses'
ParentShowHint = False
ShowHint = True
TabOrder = 4
end
object chkLogApp: TCheckBox
Left = 5
Top = 380
Width = 76
Height = 21
Hint = 'Application messages'
Anchors = [akLeft, akBottom]
Caption = 'App. msgs'
Checked = True
ParentShowHint = False
ShowHint = True
State = cbChecked
TabOrder = 5
end
end
end
object StatusBar: TStatusBar
Left = 0
Top = 614
Width = 536
Height = 18
Panels = <
item
Width = 100
end>
SimplePanel = False
end
object RefreshTimer: TTimer
OnTimer = RefreshTimerTimer
Left = 495
Top = 5
end
end