Newer
Older
Arthur Coolen
committed
V 11
1
LANG:1 0
PANEL,-1 -1 1010 745 N "_3DFace" 0
"main()
{
// Initialise the Panel
navPanel_initPanel(\"fw_viewBox\");
strPanelName = \"antennaField\";
strModuleName = myModuleName();
baseDP=g_currentDatapoint;
dyn_string core = coreStations;
dyn_string remote = remoteStations;
dyn_string europe = europeStations;
string ccu = navFunct_bareDBName(CEPDBName);
string mcu = navFunct_bareDBName(MainDBName);
dynAppend(stationList,core);
dynAppend(stationList,remote);
dynAppend(stationList,europe);
dynAppend(stationList,ccu);
dynAppend(stationList,mcu);
Arthur Coolen
committed
redraw();
Arthur Coolen
committed
//
// Callback for dpConnect to action point.
// If there is an action required this point will tell so
//
void doAction(string aDP, string anAction) {
LOG_DEBUG(\"swlevel.pnl:doAction| Action required. found: \" + anAction);
// split action into essentials
dyn_string actionString;
if (!navFunct_splitAction(anAction,actionString)) {
return;
}
Arthur Coolen
committed
LOG_DEBUG(\"swlevel.pnl:doAction|found actionString: \" + actionString);
// Reload
if (actionString[1] == \"Reload\") {
Arthur Coolen
committed
return;
} else if (actionString[1] == \"DistChanged\") {
Arthur Coolen
committed
return;
}
}
" 0
E E E E 1 -1 -1 0 20 30
""0 1
E "#uses \"navPanel.ctl\"
dyn_string stationList;
dyn_string SWLevelRefNames;
dyn_string datastreamRefNames;
dyn_string memAndHDDRefNames;
dyn_string stationViewRefNames;
Arthur Coolen
committed
string strPanelName;
string strModuleName;
string baseDP=\"\";
dyn_string station_procList;
dyn_string station_result;
void prepareHardwareList() {
g_stationList = stationList;
}
Arthur Coolen
committed
void clearSWLevelRefNames() {
// remove all symbols because new ones will be added
for (int i=1; i <= dynlen(SWLevelRefNames); i++) {
removeSymbol(strModuleName,\"\",SWLevelRefNames[i]);
}
dynClear(SWLevelRefNames);
}
void clearDatastreamRefNames() {
// remove all symbols because new ones will be added
for (int i=1; i <= dynlen(datastreamRefNames); i++) {
removeSymbol(strModuleName,\"\",datastreamRefNames[i]);
}
dynClear(datastreamRefNames);
}
void clearSwCtrlRefNames() {
// remove all symbols because new ones will be added
for (int i=1; i <= dynlen(swCtrlRefNames); i++) {
removeSymbol(strModuleName,\"\",swCtrlRefNames[i]);
}
dynClear(swCtrlRefNames);
}
void clearMemAndHDDRefNames() {
// remove all symbols because new ones will be added
for (int i=1; i <= dynlen(memAndHDDRefNames); i++) {
removeSymbol(strModuleName,\"\",memAndHDDRefNames[i]);
}
dynClear(memAndHDDRefNames);
}
void clearStationViewRefNames() {
// remove all symbols because new ones will be added
for (int i=1; i <= dynlen(stationViewRefNames); i++) {
removeSymbol(strModuleName,\"\",stationViewRefNames[i]);
}
dynClear(stationViewRefNames);
}
Arthur Coolen
committed
void redraw() {
dynClear(station_result);
dynClear(station_procList);
Arthur Coolen
committed
navFunct_clearGlobalLists();
// set the hardware selectable items for this screen
prepareHardwareList();
Arthur Coolen
committed
if (dynlen(SWLevelRefNames) > 0) {
clearSWLevelRefNames();
}
Arthur Coolen
committed
if (dynlen(datastreamRefNames) > 0) {
clearDatastreamRefNames();
}
if (dynlen(swCtrlRefNames) > 0) {
clearSwCtrlRefNames();
}
if (dynlen(memAndHDDRefNames) > 0) {
clearMemAndHDDRefNames();
}
if (dynlen(stationViewRefNames) > 0) {
clearStationViewRefNames();
addSWLevels();
addDatastreams();
addSWCtrlers();
addMemAndHDD();
addStationView();
// trigger that the panel values are calculated and ready
dynClear(highlight);
dynClear(strHighlight);
// set panel to ready
g_objectReady=true;
navPanel_setEvent(\"main.pnl:redraw\",\"Update\");
}
void addSWLevels() {
Arthur Coolen
committed
int xPos_AddSymbol = 0;
int yPos_AddSymbol = 18;
int ref = 1;
string addPanelName = \"objects/swlevel.pnl\";
//loop over list and prepare panel with all stations and swlevel objects
for (int i=1; i<= dynlen(stationList); i++) {
SWLevelRefNames[i]=\"stationSW\"+(i);
if ( addSymbol( strModuleName, // Stay in this modul
\"\", // Name of this panel
addPanelName, // Panel to add
SWLevelRefNames[ref], // Ref of the addedPanel
makeDynString( \"$station:\" + stationList[i]) , // Define all $values
xPos_AddSymbol, // Xpos of the AddedSymbol
yPos_AddSymbol, // Ypos of the AddedSymbol
0, // angle
1 ,1 // zoomX , zoomY
) < 0 ) {
LOG_ERROR(\"swlevel.pnl:addSWLevels|Error Appending swlevel for: \" + stationList[i] + \" in this panel.\");
Arthur Coolen
committed
}
yPos_AddSymbol += 10;
ref++;
}
}
void addDatastreams() {
int xPos_AddSymbol = 150;
int yPos_AddSymbol = 18;
int ref = 1;
string addPanelName = \"objects/datastreamLevel.pnl\";
Arthur Coolen
committed
//loop over list and prepare panel with all datastreamobjects
for (int i=1; i<= dynlen(stationList); i++) {
//skip CCU and MCU machines
if (strpos(stationList[i],\"MCU\") >=0 ||strpos(stationList[i],\"CCU\") >=0) continue;
datastreamRefNames[i]=\"datastream\"+(i);
if ( addSymbol( strModuleName, // Stay in this modul
\"\", // Name of this panel
addPanelName, // Panel to add
datastreamRefNames[ref], // Ref of the addedPanel
makeDynString( \"$station:\" + stationList[i]) , // Define all $values
xPos_AddSymbol, // Xpos of the AddedSymbol
yPos_AddSymbol, // Ypos of the AddedSymbol
0, // angle
1 ,1 // zoomX , zoomY
) < 0 ) {
LOG_ERROR(\"swlevel.pnl:addDatastreams|Error datastream for : \" + stationList[i] + \" in this panel.\");
Arthur Coolen
committed
}
yPos_AddSymbol += 10;
ref++;
}
}
void addSWCtrlers() {
int xPos_AddSymbol = 235;
string addPanelName;
//loop over list and prepare panel with all datastreamobjects
for (int i=1; i<= dynlen(stationList); i++) {
//CCU and MCU machines different layout
if (strpos(stationList[i],\"MCU\") >=0 ) {
addPanelName = \"objects/Processes/MCUSWLevelView.pnl\";
} else if( strpos(stationList[i],\"CCU\") >=0) {
addPanelName = \"objects/Processes/CCUSWLevelView.pnl\";
} else {
addPanelName = \"objects/Processes/stationSWLevelView.pnl\";
}
swCtrlRefNames[i]=\"swCtrl\"+(i);
if ( addSymbol( strModuleName, // Stay in this modul
\"\", // Name of this panel
addPanelName, // Panel to add
swCtrlRefNames[ref], // Ref of the addedPanel
makeDynString( \"$station:\" + stationList[i]) , // Define all $values
xPos_AddSymbol, // Xpos of the AddedSymbol
yPos_AddSymbol, // Ypos of the AddedSymbol
0, // angle
1 ,1 // zoomX , zoomY
) < 0 ) {
LOG_ERROR(\"swlevel.pnl:addSWCtrlers|Error swCtrl for : \" + stationList[i] + \" in this panel.\");
}
yPos_AddSymbol += 10;
ref++;
//CCU and MCU machines different layout
if (strpos(stationList[i],\"MCU\") >=0 ) {
// addMCUProcesses(stationList[i]+\":\");
} else if( strpos(stationList[i],\"CCU\") >=0) {
// addCCUProcesses(stationList[i]+\":\");
} else {
addStationProcesses(stationList[i]+\":\");
}
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
}
dpSet(DPNAME_NAVIGATOR + g_navigatorID + \".processesList\",station_result);
}
void addStationProcesses(string selectedStation) {
if (!navFunct_dpReachable(selectedStation)) {
return;
}
int z;
dyn_dyn_anytype tab;
//PermSW + PermSW_Daemons
string query=\"SELECT '_original.._value' FROM 'LOFAR_PermSW_*.status.state' REMOTE '\" +selectedStation + \"'\";
dpQuery(query, tab);
LOG_TRACE(\"main.pnl:addStationProcesses|Found: \"+ tab);
dyn_string aDS=navFunct_getDynString(tab, 2,1);
dynSortAsc(aDS);
for(z=1;z<=dynlen(aDS);z++){
// strip .status.state from station_result
string aS = dpSubStr(aDS[z],DPSUB_SYS_DP);
// keep Path to work with
string path=aS;
// strip all including PermsSW out of the string
strreplace(aS,selectedStation+dpSubStr(baseDP,DPSUB_DP)+\"_PermSW_\",\"\");
// Remainder should be PermsSW Programs + Daemons split on _
dyn_string spl=strsplit(aS,\"_\");
if (dynlen(spl) > 1) { // Daemon
dynAppend(station_result,navFunct_dpStripLastElement(path)+\",\"+spl[2]+\",\"+path);
dynAppend(station_procList,path);
} else { // Program
dynAppend(station_result,\",\"+spl[1]+\",\"+path);
if (spl[1] != \"Daemons\") {
dynAppend(station_procList,path);
}
}
LOG_TRACE(\"main.pnl:addStationProcesses|station_result composed: \"+ station_result);
}
void addMemAndHDD() {
int xPos_AddSymbol = 625;
int yPos_AddSymbol = 28;
int ref = 1;
string addPanelName = \"objects/Hardware/System_MemAndHDD.pnl\";
//loop over list and prepare panel with all MainInfo
for (int i=1; i<= dynlen(stationList); i++) {
memAndHDDRefNames[i]=\"memAndHDD\"+(i);
if ( addSymbol( strModuleName, // Stay in this modul
\"\", // Name of this panel
addPanelName, // Panel to add
memAndHDDRefNames[ref], // Ref of the addedPanel
makeDynString( \"$station:\" + stationList[i]) , // Define all $values
xPos_AddSymbol, // Xpos of the AddedSymbol
yPos_AddSymbol, // Ypos of the AddedSymbol
0, // angle
1 ,1 // zoomX , zoomY
) < 0 ) {
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
LOG_ERROR(\"main.pnl:addMemAndHDD|Error memAndHDD for : \" + stationList[i] + \" in this panel.\");
}
yPos_AddSymbol += 10;
ref++;
}
}
void addStationView() {
int xPos_AddSymbol = 665;
int yPos_AddSymbol = 28;
int ref = 1;
string addPanelName = \"objects/Hardware/Station_mainView.pnl\";
//loop over list and prepare panel with all MainInfo
for (int i=1; i<= dynlen(stationList); i++) {
//skip CCU and MCU machines
if (strpos(stationList[i],\"MCU\") >=0 ||strpos(stationList[i],\"CCU\") >=0) continue;
stationViewRefNames[i]=\"memAndHDD\"+(i);
if ( addSymbol( strModuleName, // Stay in this modul
\"\", // Name of this panel
addPanelName, // Panel to add
stationViewRefNames[ref], // Ref of the addedPanel
makeDynString( \"$station:\" + stationList[i]) , // Define all $values
xPos_AddSymbol, // Xpos of the AddedSymbol
yPos_AddSymbol, // Ypos of the AddedSymbol
0, // angle
1 ,1 // zoomX , zoomY
) < 0 ) {
LOG_ERROR(\"main.pnl:addStationView|Error stationView for : \" + stationList[i] + \" in this panel.\");
}
yPos_AddSymbol += 10;
ref++;
}
}
" 0
Arthur Coolen
committed
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
2
"CBRef" "1"
"EClose" E
""
DISPLAY_LAYER, 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0
LAYER, 0
1
LANG:1 0
2 4
"PRIMITIVE_TEXT4"
""
1 65 10 E E E 1 E 1 E N "_WindowText" E N "_Window" E E
E E
4 0 0 0 0 0
E E E
0
1
LANG:1 0
1
"dashclr"N "_Transparent"
E E 0 1 1 2 1 E U 0 E 65 10 107 23
0 2 2 "0s" 0 0 0 192 0 0 65 10 1
1
LANG:1 34 MS Shell Dlg 2,8,-1,5,75,0,0,0,0,0
0 1
LANG:1 7 swlevel
6 21
"RECTANGLE1"
""
1 140 140 E E E 1 E 1 E N {0,0,0} E N "green" E E
E E
6 0 0 0 0 0
E E E
0
1
LANG:1 7 Level 6
1
"dashclr"N "_Transparent"
E E 0 1 1 2 1 E 1 0 0.7142857142857143 -10 60 1 E 140 140 150 210
6 22
"RECTANGLE2"
""
1 140 140 E E E 1 E 1 E N {0,0,0} E N "yellow" E E
E E
7 0 0 0 0 0
E E E
0
1
LANG:1 9 Level 2-5
1
"dashclr"N "_Transparent"
E E 0 1 1 2 1 E 1 0 0.7142857142857143 -10 110 1 E 140 140 150 210
6 23
"RECTANGLE3"
""
1 140 140 E E E 1 E 1 E N {0,0,0} E N {255,170,0} E E
E E
8 0 0 0 0 0
E E E
0
1
LANG:1 7 Level 1
1
"dashclr"N "_Transparent"
E E 0 1 1 2 1 E 1 0 0.7142857142857143 -10 160 1 E 140 140 150 210
6 24
"RECTANGLE4"
""
1 140 140 E E E 1 E 1 E N {0,0,0} E N "red" E E
E E
9 0 0 0 0 0
E E E
0
1
LANG:1 7 Level 0
1
"dashclr"N "_Transparent"
E E 0 1 1 2 1 E 1 0 0.7142857142857143 -10 210 1 E 140 140 150 210
2 25
"PRIMITIVE_TEXT5"
""
1 155 2 E E E 1 E 1 E N "_WindowText" E N "_Window" E E
E E
10 0 0 0 0 0
E E E
0
1
LANG:1 0
1
"dashclr"N "_Transparent"
E E 0 1 1 2 1 E U 0 E 155 2 196 15
0 2 2 "0s" 0 0 0 192 0 0 155 2 1
1
LANG:1 34 MS Shell Dlg 2,8,-1,5,75,0,0,0,0,0
0 1
LANG:1 6 stream
6 26
"RECTANGLE5"
""
1 140 140 E E E 1 E 1 E N {0,0,0} E N "green" E E
E E
11 0 0 0 0 0
E E E
0
1
LANG:1 13 datastream on
1
"dashclr"N "_Transparent"
E E 0 1 1 2 1 E 1 0 1.428571428571429 75 -40 1 E 140 140 150 210
6 27
"RECTANGLE6"
""
1 140 140 E E E 1 E 1 E N {0,0,0} E N "red" E E
E E
12 0 0 0 0 0
E E E
0
1
LANG:1 14 datastream off
1
"dashclr"N "_Transparent"
E E 0 1 1 2 1 E 1 0 1.428571428571429 75 60 1 E 140 140 150 210
4 28
"LINE1"
""
1 230 0 E E E 1 E 1 E N {0,0,0} E N {255,255,255} E E
E E
13 0 0 0 0 0
E E E
0
1
LANG:1 0
1
"dashclr"N "_Transparent"
E E 0 2 1 2 1 E 230 0 230 509
Arthur Coolen
committed
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
2 29
"PRIMITIVE_TEXT6"
""
1 160 15 E E E 1 E 1 E N "_WindowText" E N "_Window" E E
E E
14 0 0 0 0 0
E E E
0
1
LANG:1 0
1
"dashclr"N "_Transparent"
E E 0 1 1 2 1 E U 0 E 160 15 167 28
0 2 2 "0s" 0 0 0 192 0 0 160 15 1
1
LANG:1 34 MS Shell Dlg 2,8,-1,5,75,0,0,0,0,0
0 1
LANG:1 1 0
2 30
"PRIMITIVE_TEXT7"
""
1 190 15 E E E 1 E 1 E N "_WindowText" E N "_Window" E E
E E
15 0 0 0 0 0
E E E
0
1
LANG:1 0
1
"dashclr"N "_Transparent"
E E 0 1 1 2 1 E U 0 E 190 15 197 28
0 2 2 "0s" 0 0 0 192 0 0 190 15 1
1
LANG:1 34 MS Shell Dlg 2,8,-1,5,75,0,0,0,0,0
0 1
LANG:1 1 1
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
6 31
"RECTANGLE7"
""
1 140 140 E E E 1 E 1 E N {0,0,0} E N "green" E E
E E
16 0 0 0 0 0
E E E
0
1
LANG:1 13 datastream on
1
"dashclr"N "_Transparent"
E E 0 1 1 2 1 E 1 0 1.428571428571429 466 -40 1 E 140 140 150 210
6 32
"RECTANGLE8"
""
1 140 140 E E E 1 E 1 E N {0,0,0} E N "red" E E
E E
17 0 0 0 0 0
E E E
0
1
LANG:1 14 datastream off
1
"dashclr"N "_Transparent"
E E 0 1 1 2 1 E 1 0 1.428571428571429 466 60 1 E 140 140 150 210
4 33
"LINE2"
""
1 621 0 E E E 1 E 1 E N {0,0,0} E N {255,255,255} E E
E E
18 0 0 0 0 0
E E E
0
1
LANG:1 0
1
"dashclr"N "_Transparent"
E E 0 2 1 2 1 E 621 0 621 509
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
2 34
"PRIMITIVE_TEXT8"
""
1 249 10 E E E 1 E 1 E N "_WindowText" E N "_Window" E E
E E
19 0 0 0 0 0
E E E
0
1
LANG:1 0
1
"dashclr"N "_Transparent"
E E 0 1 1 2 1 E U 0 E 249 10 271 23
0 2 2 "0s" 0 0 0 192 0 0 249 10 1
1
LANG:1 34 MS Shell Dlg 2,8,-1,5,75,0,0,0,0,0
0 1
LANG:1 3 sw1
2 35
"PRIMITIVE_TEXT9"
""
1 329 10 E E E 1 E 1 E N "_WindowText" E N "_Window" E E
E E
20 0 0 0 0 0
E E E
0
1
LANG:1 0
1
"dashclr"N "_Transparent"
E E 0 1 1 2 1 E U 0 E 329 10 351 23
0 2 2 "0s" 0 0 0 192 0 0 329 10 1
1
LANG:1 34 MS Shell Dlg 2,8,-1,5,75,0,0,0,0,0
0 1
LANG:1 3 sw2
2 36
"PRIMITIVE_TEXT10"
""
1 380 10 E E E 1 E 1 E N "_WindowText" E N "_Window" E E
E E
21 0 0 0 0 0
E E E
0
1
LANG:1 0
1
"dashclr"N "_Transparent"
E E 0 1 1 2 1 E U 0 E 380 10 402 23
0 2 2 "0s" 0 0 0 192 0 0 380 10 1
1
LANG:1 34 MS Shell Dlg 2,8,-1,5,75,0,0,0,0,0
0 1
LANG:1 3 sw3
2 37
"PRIMITIVE_TEXT11"
""
1 420 10 E E E 1 E 1 E N "_WindowText" E N "_Window" E E
E E
22 0 0 0 0 0
E E E
0
1
LANG:1 0
1
"dashclr"N "_Transparent"
E E 0 1 1 2 1 E U 0 E 420 10 442 23
0 2 2 "0s" 0 0 0 192 0 0 420 10 1
1
LANG:1 34 MS Shell Dlg 2,8,-1,5,75,0,0,0,0,0
0 1
LANG:1 3 sw4
2 38
"PRIMITIVE_TEXT12"
""
1 460 10 E E E 1 E 1 E N "_WindowText" E N "_Window" E E
E E
23 0 0 0 0 0
E E E
0
1
LANG:1 0
1
"dashclr"N "_Transparent"
E E 0 1 1 2 1 E U 0 E 460 10 482 23
0 2 2 "0s" 0 0 0 192 0 0 460 10 1
1
LANG:1 34 MS Shell Dlg 2,8,-1,5,75,0,0,0,0,0
0 1
LANG:1 3 sw5
2 39
"PRIMITIVE_TEXT13"
""
1 542 10 E E E 1 E 1 E N "_WindowText" E N "_Window" E E
E E
24 0 0 0 0 0
E E E
0
1
LANG:1 0
1
"dashclr"N "_Transparent"
E E 0 1 1 2 1 E U 0 E 542 10 564 23
0 2 2 "0s" 0 0 0 192 0 0 542 10 1
1
LANG:1 34 MS Shell Dlg 2,8,-1,5,75,0,0,0,0,0
0 1
LANG:1 3 sw6
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
4 41
"LINE4"
""
1 0 510 E E E 1 E 1 E N {0,0,0} E N {255,255,255} E E
E E
26 0 0 0 0 0
E E E
0
1
LANG:1 0
1
"dashclr"N "_Transparent"
E E 0 2 1 2 1 E 0 510 1010 510
2 42
"PRIMITIVE_TEXT14"
""
1 10 516 E E E 1 E 1 E N "_WindowText" E N "_Window" E E
E E
27 0 0 0 0 0
E E E
0
1
LANG:1 0
1
"dashclr"N "_Transparent"
E E 0 1 1 2 1 E U 0 E 10 516 124 529
0 2 2 "0s" 0 0 0 192 0 0 10 516 1
1
LANG:1 34 MS Shell Dlg 2,8,-1,5,75,0,0,0,0,0
0 1
LANG:1 18 CEPobservationView
2 44
"PRIMITIVE_TEXT16"
""
1 627 10 E E E 1 E 1 E N "_WindowText" E N "_Window" E E
E E
29 0 0 0 0 0
E E E
0
1
LANG:1 18 DiskSpace & Memory
1
"dashclr"N "_Transparent"
E E 0 1 1 2 1 E U 0 E 627 10 657 23
0 2 2 "0s" 0 0 0 192 0 0 627 10 1
1
LANG:1 34 MS Shell Dlg 2,8,-1,5,75,0,0,0,0,0
0 1
LANG:1 6 D M
2 45
"PRIMITIVE_TEXT17"
""
1 668 10 E E E 1 E 1 E N "_WindowText" E N "_Window" E E
E E
30 0 0 0 0 0
E E E
0
1
LANG:1 22 Temperature & Humidity
1
"dashclr"N "_Transparent"
E E 0 1 1 2 1 E U 0 E 668 10 695 23
0 2 2 "0s" 0 0 0 192 0 0 668 10 1
1
LANG:1 34 MS Shell Dlg 2,8,-1,5,75,0,0,0,0,0
0 1
Arthur Coolen
committed
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
0
LAYER, 1
1
LANG:1 0
0
LAYER, 2
1
LANG:1 0
0
LAYER, 3
1
LANG:1 0
0
LAYER, 4
1
LANG:1 0
0
LAYER, 5
1
LANG:1 0
0
LAYER, 6
1
LANG:1 0
0
LAYER, 7
1
LANG:1 0
0
0