summaryrefslogtreecommitdiff
path: root/themes/DeepBlue.theme
blob: 7a8c7ca3c9f9da46e86336049010ae03d7da7391 (plain)
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
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
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
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
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
//***************************************************************************
// Theme - Informationen:
// 
// DeepBlue graphTFT Theme from horchi
//
// Used graphTFT Font and graphTFT >= 0.3.0
//
// Dieses Theme ist optimiert für Displays mit 720x576 Auflösung
//
//***************************************************************************

//***************************************************************************
//***************************************************************************
// Wird die folgende #define Zeile einkommentiert, erhält man 
// die Ausgabe von mouse Buttons (z.B. für Touch-Displays)
// (Einkommentieren durch entfernen der // vor #define...)
// Die benutzerbezogenen Maus-Icons sind wie folgt in der keymacros.conf vorkonfiguriert
// User1     @osdteletext
// User2     @mp3
// User3     @mplayer
// User4     @dvd
// User5     @burn
// User6     @osdpip
// User8     @trayopen
// User9     @mailbox
//***************************************************************************
#define MOUSE_BUTTONS


//***************************************************************************
// Auswahl der Lautstärke-Anzeige
// Wird die folgende #define Zeile einkommentiert, erhält man eine alternative
// Laustärkeanzeige
// uncomment out for alternative volume display
// (Einkommentieren durch entfernen von // vor #define...)
//***************************************************************************
//#define VOL_STYLE_BLUE

//***************************************************************************
// mp3/music Plugin Anzeigeauswahl
//
// Entferne die Doppelslashes bei der #define Zeile für die gewünschte Varinate 
// zur Anzeige der mp3/music Plugin Informationen
// (immer nur eine Ziele einkommentieren)
// uncomment if you like to use the music plugin
// MP3_PLUGIN - Einfache Ausgabe für das mp3 und music Plugin
// MUSIC_PLUGIN - Erweiterete Informationen für das music Plugin ab Version 0.4.0 in AvP Style
// MUSIC_PLUGIN_MORONE_STYLE - Erweiterete Informationen für das music Plugin ab Version 0.4.0 in Morone Style
//***************************************************************************
//#define MP3_PLUGIN
#define MUSIC_PLUGIN
//#define MUSIC_PLUGIN_MORONE_STYLE



//***************************************************************************
// Beginn der Theme-Beschreibung
//***************************************************************************
//***************************************************************************
//***************************************************************************


//***************************************************************************
// Themeweit nutzbare Variablen einrichten
// Set global Vars
//***************************************************************************
//***************************************************************************
// Informationen zum Theme und der benötigten GraphTFT version
//***************************************************************************
var varThemeName = "DeepBlue";
var varThemeVersion = "0.3.1";
var varSyntaxVersion = "0.4.1";

//***************************************************************************
// Suchpfade für die EPG Images
//***************************************************************************
var varEPGimagesPath_1 = "/ramdisk/epgimages/";
var varEPGimagesPath_2 = "/media/epgimages/";
var varEPGimagesPath_3 = "/video0/epgimages/";
var varImagesPath_1 = "/video0/images/";



//***************************************************************************
// Initialisierung und Default Vorbelegeung für Mouse Variablen
//***************************************************************************
var varSwitchMouseNumber = 0;//Normaler Zehnerblock
var varHideColorButtons = 0; //Farbtasten anzeigen
var varHidePrevChannel = 0;  //PrevChannel Taste anzeigen
var varTouchMenu = 0;  //Vorbelegung für Mausmenüanzeige



//***************************************************************************
// Allgemeine Einstellungen
//***************************************************************************
[Theme]

//Theme name={varThemeName} {varThemeVersion},dir={varThemeName},fontPath=./fonts:../../fonts,width=800,height=600,,themeVersion={varThemeVersion},syntaxVersion={varSyntaxVersion},startImage=backgrounds/start-blue.jpg,endImage=backgrounds/end-blue.jpg;
Theme name={varThemeName} {varThemeVersion},dir={varThemeName},
	fontPath=./fonts:../../fonts,width=720,height=576,
	themeVersion={varThemeVersion},
	syntaxVersion={varSyntaxVersion},
	startImage=backgrounds/start-blue.jpg,
	endImage=backgrounds/end-blue.jpg;



//***************************************************************************
// Aufnahmesymbol & Anzeige des Aufnahmetitels
// Dieser Abschnitt wird in anderen Sektionen eingebunden (include)
//***************************************************************************
[RecSymbol]

SymRecording x=426,y=520,pathON=symbols/recOn.png;
Recording x=507,y=523,width=203,height=45,lines=1,size=24,red=0,green=0,blue=0,bg_red=50,bg_green=84,bg_blue=121,scroll=marquee,scroll_count=5;



//***************************************************************************
// Anzeige der Lautstärke, Lautstärkeregelung und Mute
// Dieser Abschnitt wird in anderen Sektionen eingebunden (include)
//***************************************************************************
[Volume]

#ifdef VOL_STYLE_BLUE
Volumebar x=142,y=262,width=520,height=40,switch=yes,bg_x=120,bg_y=238,bg_width=592,bg_height=100,path2=backgrounds/volume.png,permanent=no,delay=4;
VolumeMuteSymbol x=10,y=238,pathON=symbols/mute_on.png,pathOFF=symbols/mute_off.png,permanent=no,delay=4;
#else
Volumebar x=217,y=310,width=265,height=40,red=250,green=155,blue=44,bg_red=50,bg_green=50,bg_blue=50,permanent=no,delay=4;
Volumebar x=222,y=262,width=0,bg_x=200,bg_y=238,bg_width=308,bg_height=100,path2=backgrounds/volume2.png,permanent=no,delay=4;
Volumebar text=percent,size=12,red=0,green=0,blue=0,x=450,y=250,width=0,height=40,alpha=0,permanent=no,delay=4;
VolumeMuteSymbol x=220,y=365,pathON=symbols/mute_on2.png,pathOFF=symbols/mute_off2.png,permanent=no,delay=4;
#endif



//***************************************************************************
// Anzeige der OSD Meldungen
// Dieser Abschnitt wird in anderen Sektionen eingebunden (include)
//***************************************************************************
[OSD-Messages]

Message x=10,y=483,width=670,height=35,size=19,red=0,green=0,blue=0,bg_x=2,bg_y=481,bg_width=715,bg_height=30,bg_red=197,bg_green=129,bg_blue=24,delay=5;



//***************************************************************************
// Kalibrationsanzeige für Touch Displays
//***************************************************************************
[Calibration]

var calibrationFrameOffset = 60; //Abstand von der Mitte des Cursors zum oberen und linken Bildschirmrand

Defaults font=graphTFT,size=20,red=255,green=255,blue=255,bg_red=0,bg_green=0,bg_blue=250,bg_alpha=0;
Background x=0,y=0,width=720,height=576,red=0,green=0,blue=160,bg_red=0,bg_green=0,bg_blue=0;

Text text=Calibration,x=0,y=20,size=44,width=720,height=70,align=center;
//Kalibrierungsanweisungen
Text text={calibrationInstruction},x=0,y=170,size=22,width=720,height=40,align=center;
Text text={calibrationInfo},x=0,y=210,size=22,width=720,height=40,align=center;
//Ausgabe der Kalibrationswerte
Text text=touched: {calibrationTouchedX} / {calibrationTouchedY},x=0,y=300,size=22,width=720,height=40,align=center;
Text text=Offset: {calibrationOffsetX} / {calibrationOffsetY},x=0,y=340,size=22,width=720,height=40,align=center;
Text text=Scale: {calibrationScaleX} / {calibrationScaleY},x=0,y=380,size=22,width=720,height=40,align=center;
//Anzeige Kalibrationscursor
CalibrationCursor width=30,height=30,path=symbols/calibratecursor.png;

//Testgrid zeichnen
Rectangle x=0,y=100,width=720,height=3;
Rectangle x=0,y=150,width=720,height=3;
Rectangle x=0,y=426,width=720,height=3;
Rectangle x=0,y=476,width=720,height=3;

Rectangle x=100,y=0,width=3,height=720;
Rectangle x=150,y=0,width=3,height=576;
Rectangle x=570,y=0,width=3,height=576;
Rectangle x=620,y=0,width=3,height=576;

MenuButtonBackgroundYellow x=360,y=529,width=170,height=45,pathON=menu/button-yellow.png,bg_red=50,bg_green=84,bg_blue=121,on_click=Yellow;
MenuButtonYellow x=360,y=534,width=170,height=45,red=0,green=0,blue=0,alpha=255,align=center;



//***************************************************************************
// Ausgabe eines Bildes oder, mittels Script, einer Bilderserie auf dem Display
// Diese Funktion wird über das graphTFT OSD-Menu oder "svdrpsend.pl plug graphtft VIEW Dia" aufgerufen
//***************************************************************************
[NormalDia]

Background path=backgrounds/bg-sysinfo-blue.png;
ImageFile x=0,y=0,width=720,height=576,path=/tmp/dia.file,path2=symbols/nocover.png,fit=yes,aspect_ratio=yes;

Include=OSD-Messages;



//***************************************************************************
// Ausgabe von Systeminformationen
// Diese Funktion wird über das graphTFT OSD-Menu oder "svdrpsend.pl plug graphtft VIEW Sysinfo" aufgerufen
//***************************************************************************
[NormalSysinfo]

Defaults font=graphTFT,size=20,red=255,green=255,blue=255,bg_red=0,bg_green=0,bg_blue=0,bg_alpha=0;

Background path=backgrounds/bg-sysinfo-blue.png;

// {...ChannelName/tologo} sorgt dafür, dass event. Sonderzeichen im Sendernamen entfernt werden
// So wird z.B. beim Sender BR-alpha* das Logo BR-alpha.png gesich und nicht BR-alpha*.png
Image x=5,y=2,width=60,height=35,fit=yes,aspect_ratio=yes,path=columnimages/{presentChannelName/tologo}.png;

Text text={time/%d.%m %H:%M},x=520,y=27,width=200,height=40,red=52,green=162,blue=159;

Text x=70,y=7,text={presentChannelName},align=center,width=420,height=30;

Text text=Prozessor,size=24,x=25,y=47,width=200,height=30,red=52,green=162,blue=159;
Text text=load,x=25,y=95,width=130,height=30;
Sysinfo type=cpuload,text=percent,align=center,size=16,x=160,y=90,width=500,height=40,bg_x=160,delay=3,switch=yes,bg_red=150,bg_green=150,bg_blue=150;
Text text=idle,x=25,y=155,width=130,height=30;
Sysinfo type=cpuidle,text=percent,align=center,size=16,x=160,y=150,width=500,height=40,bg_x=160,delay=3,red=100,green=255,blue=100,bg_red=150,bg_green=150,bg_blue=150;

Text text=Speicher,size=24,x=25,y=210,width=200,height=30,red=52,green=162,blue=159;
Text text=used,x=25,y=270,width=130,height=30;
Sysinfo type=memused,factor=1048576,text=value,align=center,unit=MB,size=16,x=160,y=260,width=500,height=40,bg_x=160,delay=3,switch=yes,red=100,green=255,blue=100,bg_red=150,bg_green=150,bg_blue=150;

Text text=Festplatten,size=24,x=25,y=330,width=200,height=30,red=52,green=162,blue=159;
Text text=video,x=25,y=390,width=130,height=30;
Sysinfo type=disk,reference=/video?,factor=1073741824,align=center,text=value,unit=GB,size=16,x=160,y=385,width=500,height=40,bg_x=160,delay=3,switch=yes,red=100,green=255,blue=100,bg_red=150,bg_green=150,bg_blue=150;
Text text=system,x=25,y=450,width=130,height=30;
Sysinfo type=disk,reference=/,factor=1073741824,align=center,text=value,unit=GB,size=16,x=160,y=445,width=500,height=40,bg_x=160,delay=3,switch=yes,red=100,green=255,blue=100,bg_red=150,bg_green=150,bg_blue=150;

#ifdef MOUSE_BUTTONS
	Include=MouseButtons;
#endif

Include=Volume;
Include=OSD-Messages;



//***************************************************************************
// Ausgabe der Programminformationen mit einer Uhr als zentraler Bestandteil der Anzeige 
// Diese Funktion wird über das graphTFT OSD-Menu oder "svdrpsend.pl plug graphtft VIEW Clock" aufgerufen
//***************************************************************************
[NormalClock]

Defaults font=graphTFT,red=50,green=130,blue=255,bg_red=0,bg_green=0,bg_blue=0;

Background x=0,y=0,width=720,height=576,red=0,green=0,blue=0;

Text text={time/%A\, %d. %B %G},x=25,y=10,width=500,height=35,size=20;
Text text={time/%H:%M},x=10,y=140,width=690,height=250,size=180;
Text text={presentTitle},x=25,y=450,height=120,width=450,size=28,red=150,green=150,blue=150,lines=2;
Timebar x=485,y=500,width=215,height=18,path=symbols/progress.png,bg_red=230,bg_green=230,bg_blue=230,bg_alpha=255;
Image x=620,y=15,width=80,height=50,fit=yes,aspect_ratio=yes,path=columnimages/{presentChannelName/tologo}.png;

#ifdef MOUSE_BUTTONS
	Include=MouseButtons;
#endif

Include=Volume;
Include=OSD-Messages;

//***************************************************************************
// Non Live TV - shows actual recordings
//***************************************************************************

[NormalNonLiveTv]

// TextList text={actRecordings},x=20,y=20,height=400,width=605,size=12;
TextList text={actRunningRecordings},x=20,y=20,height=200,width=605,size=12,red=200,green=10,blue=10;
TextList text={actPendingRecordings},x=20,y=230,height=200,width=605,size=12;

Include=OSD-Messages;


//***************************************************************************
// Definition der Mouse Button Fenster
//***************************************************************************
[MouseButtons]
Defaults bg_alpha=0,foreground=yes;

//Anzeige für Keyboardaufruf
Image x=000,y=480,width=40,height=40,delay=150,path=menu/mouse_btn/btn_keyb_white.png,on_click=varTouchMenu:1:0;

//***************************************************************************
//Basisblock
//{varHideColorButtons} = 0 -> Farbtasten anzeigen
//{varHideColorButtons} = 1 -> Farbtasten nicht anzeigen
//{varHidePrevChannel} = 0 -> PrevChannel Taste anzeigen
//{varHidePrevChannel} = 1 -> PrevChannel Taste nicht anzeigen

if ({varTouchMenu})
	//Hintergrund
	Image x=114,y=343,width=408,height=159,path=menu/mouse_btn/btn_back_master.png;

	//Schalterbuttons für Nummernblock (2) und Extended Block (3), beim zweiten Klick, Rückfall auf 1 (:2:1)
	Image x=124,y=351,width=40,height=40,delay=150,path=menu/mouse_btn/btn_keyb_segment_trans_left.png,on_click=varTouchMenu:2:1,delay=15;
	Image x=472,y=351,width=40,height=40,delay=150,path=menu/mouse_btn/btn_keyb_segment_trans_right.png,on_click=varTouchMenu:3:1,delay=15;

	//Erste Zeile von oben
	Image x=222,y=357,width=40,height=40,delay=150,path=menu/mouse_btn/btn_rec.png,on_click=Record;
	Image x=376,y=357,width=40,height=40,delay=150,path=menu/mouse_btn/btn_power.png,on_click=Power;

	//Zweite Zeile von oben
	Image condition={varHidePrevChannel} <> 1,x=132,y=402,width=40,height=40,delay=150,path=menu/mouse_btn/btn_prevchannel.png,on_click=PrevChannel;
	Image x=177,y=402,width=40,height=40,delay=150,path=menu/mouse_btn/btn_back.png,on_click=back;
	Image x=222,y=402,width=40,height=40,delay=150,path=menu/mouse_btn/btn_up.png,on_click=Up;
	Image x=267,y=402,width=40,height=40,delay=150,path=menu/mouse_btn/btn_ok.png,on_click=ok;

	Image x=376,y=402,width=40,height=40,delay=150,path=menu/mouse_btn/btn_minus.png,on_click=Volume-;
	Image x=421,y=402,width=40,height=40,delay=150,path=menu/mouse_btn/btn_mute.png,on_click=Mute;
	Image x=466,y=402,width=40,height=40,delay=150,path=menu/mouse_btn/btn_plus.png,on_click=Volume+;

	//Dritte Zeile von oben
	Image x=132,y=447,width=40,height=40,delay=150,path=menu/mouse_btn/btn_menu.png,on_click=Menu;
	Image x=177,y=447,width=40,height=40,delay=150,path=menu/mouse_btn/btn_left.png,on_click=Left;
	Image x=222,y=447,width=40,height=40,delay=150,path=menu/mouse_btn/btn_down.png,on_click=Down;
	Image x=267,y=447,width=40,height=40,delay=150,path=menu/mouse_btn/btn_right.png,on_click=Right;

	Image condition={varHideColorButtons} <> 1,x=331,y=447,width=40,height=40,delay=150,path=menu/mouse_btn/btn_red.png,on_click=Red;
	Image condition={varHideColorButtons} <> 1,x=376,y=447,width=40,height=40,delay=150,path=menu/mouse_btn/btn_green.png,on_click=Green;
	Image condition={varHideColorButtons} <> 1,x=421,y=447,width=40,height=40,delay=150,path=menu/mouse_btn/btn_yellow.png,on_click=Yellow;
	Image condition={varHideColorButtons} <> 1,x=466,y=447,width=40,height=40,delay=150,path=menu/mouse_btn/btn_blue.png,on_click=Blue;
endif

//***************************************************************************
//Nummernblock
//{varSwitchMouseNumber} = 0 -> Normaler Zehnerblock
//{varSwitchMouseNumber} = 1 -> Ändert Zehnerblock-Zahlen zu Aufnahme Icons
//{varSwitchMouseNumber} = 2 -> Ändert Zehnerblock-Zahlen zu DVD Wiedergabe Icons

if ({varTouchMenu} == 2)
	//Hintergrund
	Image x=009,y=192,width=158,height=205,path=menu/mouse_btn/btn_back_numberblock.png;

	//Erste Zeile von oben
	Image x=023,y=207,width=40,height=40,delay=150,path=menu/mouse_btn/btn_1.png,on_click=1;
	Image condition={varSwitchMouseNumber} = 0,x=068,y=207,width=40,height=40,delay=150,path=menu/mouse_btn/btn_2.png,on_click=2;
	Image condition={varSwitchMouseNumber} = 1,x=068,y=207,width=40,height=40,delay=150,path=menu/mouse_btn/btn_cut.png,on_click=2;
	Image condition={varSwitchMouseNumber} = 2,x=068,y=207,width=40,height=40,delay=150,path=menu/mouse_btn/btn_subtitle.png,on_click=2;
	Image condition={varSwitchMouseNumber} <> 2,x=113,y=207,width=40,height=40,delay=150,path=menu/mouse_btn/btn_3.png,on_click=3;
	Image condition={varSwitchMouseNumber} = 2,x=113,y=207,width=40,height=40,delay=150,path=menu/mouse_btn/btn_dvdangle.png,on_click=3;

	//Zweite Zeile von oben
	Image condition={varSwitchMouseNumber} <> 1,x=023,y=252,width=40,height=40,delay=150,path=menu/mouse_btn/btn_4.png,on_click=4;
	Image condition={varSwitchMouseNumber} = 1,x=023,y=252,width=40,height=40,delay=150,path=menu/mouse_btn/btn_cropmarkleft.png,on_click=4;
	Image condition={varSwitchMouseNumber} = 2,x=023,y=252,width=40,height=40,delay=150,path=menu/mouse_btn/btn_prev.png,on_click=4;;

	Image condition={varSwitchMouseNumber} <> 2,x=068,y=252,width=40,height=40,delay=150,path=menu/mouse_btn/btn_5.png,on_click=5;
	Image condition={varSwitchMouseNumber} = 2,x=068,y=252,width=40,height=40,delay=150,path=menu/mouse_btn/btn_dvdnavi.png,on_click=5;
	Image condition={varSwitchMouseNumber} = 0,x=113,y=252,width=40,height=40,delay=150,path=menu/mouse_btn/btn_6.png,on_click=6;
	Image condition={varSwitchMouseNumber} = 1,x=113,y=252,width=40,height=40,delay=150,path=menu/mouse_btn/btn_cropmarkright.png,on_click=6;
	Image condition={varSwitchMouseNumber} = 2,x=113,y=252,width=40,height=40,delay=150,path=menu/mouse_btn/btn_next.png,on_click=6;

	//Dritte Zeile von oben
	Image condition={varSwitchMouseNumber} = 0,x=023,y=297,width=40,height=40,delay=150,path=menu/mouse_btn/btn_7.png,on_click=7;
	Image condition={varSwitchMouseNumber} = 1,x=023,y=297,width=40,height=40,delay=150,path=menu/mouse_btn/btn_prevtitle.png,on_click=7;
	Image condition={varSwitchMouseNumber} = 2,x=023,y=297,width=40,height=40,delay=150,path=menu/mouse_btn/btn_prevtitle.png,on_click=7;
	Image condition={varSwitchMouseNumber} <> 2,x=068,y=297,width=40,height=40,delay=150,path=menu/mouse_btn/btn_8.png,on_click=8;
	Image condition={varSwitchMouseNumber} = 2,x=068,y=297,width=40,height=40,delay=150,path=menu/mouse_btn/btn_dvdmenu.png,on_click=8;
	Image condition={varSwitchMouseNumber} = 0,x=113,y=297,width=40,height=40,delay=150,path=menu/mouse_btn/btn_9.png,on_click=9;
	Image condition={varSwitchMouseNumber} = 1,x=113,y=297,width=40,height=40,delay=150,path=menu/mouse_btn/btn_nexttitle.png,on_click=9;
	Image condition={varSwitchMouseNumber} = 2,x=113,y=297,width=40,height=40,delay=150,path=menu/mouse_btn/btn_nexttitle.png,on_click=9;

	//Vierte Zeile von oben
	Image condition={varSwitchMouseNumber} = 0,x=068,y=342,width=40,height=40,delay=150,path=menu/mouse_btn/btn_0.png,on_click=0;
	Image condition={varSwitchMouseNumber} = 1,x=068,y=342,width=40,height=40,delay=150,path=menu/mouse_btn/btn_cropmark.png,on_click=0;
	Image condition={varSwitchMouseNumber} = 2,x=068,y=342,width=40,height=40,delay=150,path=menu/mouse_btn/btn_audiomenu.png,on_click=0;
endif

//***************************************************************************
//Extended Icon Block
if ({varTouchMenu} == 3)
	//Hintergrund
	Image x=465,y=192,width=255,height=205,path=menu/mouse_btn/btn_back_extended.png;

	//Erste Zeile von oben
	Image x=483,y=207,width=40,height=40,delay=150,path=menu/mouse_btn/btn_dvd.png,on_click=User4;
	Image x=573,y=207,width=40,height=40,delay=150,path=menu/mouse_btn/btn_audio.png,on_click=Audio;
	Image x=618,y=207,width=40,height=40,delay=150,path=menu/mouse_btn/btn_mp3.png,on_click=User2;
	Image x=663,y=207,width=40,height=40,delay=150,path=menu/mouse_btn/btn_mplayer.png,on_click=User3;

	//Zweite Zeile von oben
	Image x=483,y=252,width=40,height=40,delay=150,path=menu/mouse_btn/btn_mail.png,on_click=User9;
	Image x=528,y=252,width=40,height=40,delay=150,path=menu/mouse_btn/btn_videotext.png,on_click=User1;
	Image x=573,y=252,width=40,height=40,delay=150,path=menu/mouse_btn/btn_pip.png,on_click=User6;
	Image x=663,y=252,width=40,height=40,delay=150,path=menu/mouse_btn/btn_burn.png,on_click=User5;

	//Dritte Zeile von oben
	Image x=528,y=297,width=40,height=40,delay=150,path=menu/mouse_btn/btn_pause.png,on_click=Pause;
	Image x=573,y=297,width=40,height=40,delay=150,path=menu/mouse_btn/btn_stop.png,on_click=Stop;
	Image x=618,y=297,width=40,height=40,delay=150,path=menu/mouse_btn/btn_play.png,on_click=Play;
	Image x=663,y=297,width=40,height=40,delay=150,path=menu/mouse_btn/btn_eject.png,on_click=User8;

	//Vierte Zeile von oben
	Image x=528,y=342,width=40,height=40,delay=150,path=menu/mouse_btn/btn_prev.png,on_click=Prev;
	Image x=573,y=342,width=40,height=40,delay=150,path=menu/mouse_btn/btn_frwd.png,on_click=FastRew;
	Image x=618,y=342,width=40,height=40,delay=150,path=menu/mouse_btn/btn_ffwd.png,on_click=FastFwd;
	Image x=663,y=342,width=40,height=40,delay=150,path=menu/mouse_btn/btn_next.png,on_click=Next;
endif


//***************************************************************************
// Allgemeine Einstellungen zur Ausgabe der TV und RADIO Informationen
// Dieser Abschnitt wird in anderen Sektionen eingebunden (include)
// Diese Funktion wird über das graphTFT OSD-Menu oder "svdrpsend.pl plug graphtft VIEW Standard" aufgerufen
//***************************************************************************
[TV_Radio_Common]
Defaults font=graphTFT,size=24,red=52,green=162,blue=159,bg_red=0,bg_green=0,bg_blue=0,bg_alpha=0;

// Senderlogo Logo oben links
Image x=15,y=15,width=80,height=50,fit=yes,aspect_ratio=yes,path=columnimages/{presentChannelName/tologo}.png;

//Datum/Uhr oben rechts
Text text={time/%d.%m. %H:%M},x=510,y=55,width=210,height=40;
//Textausgabe des Kanalnamens im Kopfbereich
Text x=120,y=13,size=36,text={presentChannelName},align=center,width=360,height=60,lines=1,red=255,green=255,blue=255;

// Themeversion
Text text={varThemeName} {themeVersion}/{syntaxVersion},x=520,y=33,width=190,size=8,align=right,height=18,red=255,green=255,blue=255;

//Kanalnummer unten links
Text x=37,y=522,size=32,text={presentChannelNumber},align=center,width=80,height=50,lines=1,red=255,green=255,blue=255;

// Verschiedene Möglichkeiten für die Timebar
// some ways to display the timebar
Timebar x=523,y=12,width=184,height=18,bg_x=520,bg_y=9,bg_width=190,bg_height=24,bg_red=0,bg_green=0,bg_blue=0,path=symbols/progress.png,bg_alpha=255;
//Timebar x=525,y=12,width=180,height=21,bg_x=520,bg_y=8,bg_width=190,bg_height=29,bg_red=0,bg_green=0,bg_blue=0,switch=yes,bg_alpha=255;
//Timebar x=525,y=12,width=180,height=21,bg_x=520,bg_y=8,bg_width=190,bg_height=29,bg_red=0,bg_green=0,bg_blue=0,switch=no,bg_alpha=255;

//Aktuelle Sendung
Text text={presentStartTime/%H:%M},x=5,y=110,width=120,height=45,size=30,red=255,green=255,blue=255;

Image x=5,y=160,width=130,height=120,path={varEPGimagesPath_1}{presentID}.png:{varEPGimagesPath_2}{presentID}.png:{varEPGimagesPath_3}{presentID}.png:{varImagesPath_1}{presentTitle}.jpg,fit=yes,aspect_ratio=yes;
Text condition="{presentDuration/%M}" != "",text={presentTitle} - {presentDuration/%M}',x=140,y=110,width=580,height=100,size=30,lines=2,red=255,green=255,blue=255,dots=yes; // Titelausgabe wenn Laufzeit ermittelbar
Text condition="{presentDuration/%M}" = "",text={presentTitle},x=140,y=110,width=580,height=100,size=30,lines=2,red=255,green=255,blue=255,dots=yes; // Titelausgabe wenn Laufzeit NICHT ermittelbar
Text text={presentSubtitle},x=140,y=210,width=580,height=80,size=24,lines=2;

// Kommende Sendung
Text text={followingStartTime/%H:%M},x=5,y=295,width=120,height=45,size=30,red=255,green=255,blue=255;
Image x=5,y=345,width=130,height=120,path={varEPGimagesPath_1}{followingID}.png:{varEPGimagesPath_2}{followingID}.png:{varEPGimagesPath_3}{followingID}.png:{varImagesPath_1}{followingTitle}.jpg,fit=yes,aspect_ratio=yes;
Text condition="{followingDuration/%M}" != "",text={followingTitle} - {followingDuration/%M}',x=140,y=295,width=580,height=100,size=30,lines=2,red=255,green=255,blue=255,dots=yes; // Titelausgabe wenn Laufzeit ermittelbar
Text condition="{followingDuration/%M}" = "",text={followingTitle},x=140,y=295,width=580,height=100,size=30,lines=2,red=255,green=255,blue=255,dots=yes; // Titelausgabe wenn Laufzeit NICHT ermittelbar
Text text={followingSubtitle},x=140,y=395,width=580,height=80,size=24,lines=2;

// Iconleiste
SymCrypt x=257,y=518,width=45,height=25,pathON=symbols/cryptOn.png;
SymDD x=309,y=518,width=45,height=25,pathON=symbols/ddOn.png;
Sym2ch x=361,y=518,width=45,height=25,pathON=symbols/ch2On.png;

// E-Mail Symbol
Image condition={hasNewMail} != 0,x=361,y=518,width=45,height=25,path=symbols/mail.png,delay=30;
Text condition={unseenMailCount} > 0,text={unseenMailCount},
     x=376,y=522,size=10,align=center,width=12,height=12,red=255,green=255,blue=255,delay=30,bg_alpha=0;

#ifdef MOUSE_BUTTONS
	Include=MouseButtons;
#endif

Include=Volume;
Include=RecSymbol;
Include=OSD-Messages;



//***************************************************************************
// Einstellungen zur Ausgabe der TV Informationen
//***************************************************************************

[NormalTV]
// Hintergrund setzen
Background path=backgrounds/bg-tv-blue.png;

//Standardwerte laden
Include=TV_Radio_Common;


//Zusätzliches spezifisches Icon in der Iconleiste
SymVTX x=205,y=518,width=45,height=25,pathON=symbols/vtxOn.png;

//***************************************************************************
// Einstellungen zur Ausgabe der RADIO Informationen
//***************************************************************************
[NormalRadio]
// Hintergrund setzen
Background path=backgrounds/bg-radio-blue.png;

//Standardwerte laden
Include=TV_Radio_Common;



//***************************************************************************
// Allgemeine Einstellungen für kommende Wiedergabe Abschnitte (Replay)
// Dieser Abschnitt wird in anderen Sektionen eingebunden (include)
//***************************************************************************
[ReplayCommon]
Defaults font=graphTFT,size=28,red=52,green=162,blue=159,bg_red=0,bg_green=0,bg_blue=0,bg_alpha=0;

// play
Image condition={replayForward} == 1 && {replaySpeed} == -1 && {replayPlay} == 1,x=0,y=70,width=178,height=30,path=symbols/play.png,delay=1;
// pause
Image condition={replayForward} == 1 && {replaySpeed} == -1 && {replayPlay} <  1,x=0,y=70,width=178,height=30,path=symbols/pause.png,delay=1;
// Fast Rewind
Image condition={replayForward} == 0 && {replaySpeed} > 0 && {replayPlay} == 1,x=0,y=70,width=178,height=30,path=symbols/frew{replaySpeed}.png,delay=1;
// Fast Forward
Image condition={replayForward} == 1 && {replaySpeed} > 0 && {replayPlay} == 1,x=0,y=70,width=178,height=30,path=symbols/ffwd{replaySpeed}.png,delay=1;
// Slow Rewind
Image condition={replayForward} == 0 && {replaySpeed} > 0 && {replayPlay} <  1,x=0,y=70,width=178,height=30,path=symbols/srew.png,delay=1;
// Slow Forward
Image condition={replayForward} == 1 && {replaySpeed} > 0 && {replayPlay} <  1,x=0,y=70,width=178,height=30,path=symbols/sfwd.png,delay=1;

Include=Volume;
Include=OSD-Messages;



//***************************************************************************
// Anzeige der Informationen bei der Wiedergabe von Aufnahmen und media Dateien
//***************************************************************************
[ReplayNormal]
//Standardwerte laden
Include=ReplayCommon;

Defaults font=graphTFT,size=28,red=52,green=162,blue=159,bg_red=0,bg_green=0,bg_blue=0,bg_alpha=0;

// Hintergrund setzen
Background path=backgrounds/bg-replay-blue.png;

Text text={time/%d.%m. %H:%M},x=548,y=63,size=20,width=200,height=27;
Text text={replayTitle},x=5,y=100,size=28,height=66,align=center,lines=2,red=255,green=255,blue=255;
Rectangle x=5,y=195,width=710,height=3;
Text text={replaySubtitle},x=10,y=208,size=20,height=80,lines=1,align=center;
Image x=10,y=248,width=700,height=247,
     path={replayPath}/thumbnail.png
     :{varEPGimagesPath_1}{replayEventID}.png
     :{varEPGimagesPath_2}{replayEventID}.png
     :{varEPGimagesPath_3}{replayEventID}.png
     :{varImagesPath_1}{replayTitle}.jpg
     :{replayPath}/Cover-Enigma.jpg,fit=yes,aspect_ratio=yes;

Text text={replayCurrent/%k:%M:%S},x=10,y=505,width=160,height=40,delay=1;
Text text={replayTotal/%k:%M:%S},x=540,y=505,width=170,height=40,align=right,delay=1;

// three different progressbar, uncomment which you like
//Progressbar total={replayTotal/%s},value={replayCurrent/%s},x=196,y=553,width=325,height=22,red=187,green=129,blue=22,bg_x=193,bg_y=550,bg_width=331,bg_height=28,bg_red=50,bg_green=84,bg_blue=121,bg_alpha=255;
//Progressbar total={replayTotal/%s},value={replayCurrent/%s},x=196,y=553,width=325,height=22,bg_x=193,bg_y=550,bg_width=331,bg_height=28,bg_red=0,bg_green=0,bg_blue=0,switch=yes,bg_alpha=255;
Progressbar total={replayTotal/%s},value={replayCurrent/%s},x=196,y=553,width=326,height=22,bg_x=193,bg_y=550,bg_width=332,bg_height=28,bg_red=0,bg_green=0,bg_blue=0,path=symbols/progress.png,bg_alpha=255,delay=3;

#ifdef MOUSE_BUTTONS
	var varSwitchMouseNumber = 1;
	Include=MouseButtons;
#endif


//***************************************************************************
// Anzeige der Informationen bei der Wiedergabe von DVDs
//***************************************************************************
[ReplayDVD]
//Standardwerte laden
Include=ReplayCommon;

Defaults font=graphTFT,size=28,red=52,green=162,blue=159,bg_red=0,bg_green=0,bg_blue=0,bg_alpha=0;

// Hintergrund setzen
Background path=backgrounds/bg-dvd-blue.png;

Text text={time/%H:%M},x=620,y=60,size=24,red=50,green=150,blue=150;

Progressbar total={replayTotal/%s},value={replayCurrent/%s},x=200,y=555,width=323,height=20,red=187,green=129,blue=22,bg_x=200,bg_y=555,bg_width=323,bg_height=20, bg_red=50, bg_green=84, bg_blue=121,path=symbols/progress.png,bg_alpha=255,delay=3;

Text text={replayTitle},x=150,y=150,size=48,width=540,height=340,lines=4, red=255,green=255,blue=255;
Text text={replayCurrent/%k:%M:%S},x=10,y=490,width=160,height=40,delay=1;
Text text={replayTotal/%k:%M:%S},x=540,y=490,width=170,height=40,align=right,delay=1;

#ifdef MOUSE_BUTTONS
	var varSwitchMouseNumber = 2;
	Include=MouseButtons;
#endif


//***************************************************************************
// Anzeige der Informationen bei der Wiedergabe von mp3 Dateien
// über das mp3 oder music Plugin.
// Hier werden drei Versionen angeboten, die am Anfang dieses Themes 
// ausgewählt werden können.
// MP3_PLUGIN - Einfache Ausgabe für das mp3 und music Plugin
// MUSIC_PLUGIN - Erweiterete Informationen für das music Plugin ab Version 0.4.0 in DeepBlue Style
// MUSIC_PLUGIN_MORONE_STYLE - Erweiterete Informationen für das music Plugin ab Version 0.4.0 in Morone Style
//***************************************************************************
[ReplayMP3]

// ----------------------------------------
#ifdef MP3_PLUGIN
// ----------------------------------------

Defaults font=graphTFT,size=28,red=52,green=162,blue=159,bg_red=0,bg_green=0,bg_blue=0,bg_alpha=0;

Background path=backgrounds/bg-mp3-blue.png;

Text text={time/%d.%m. %H:%M},x=548,y=63,size=20,width=200,height=27;

ImageFile x=195,y=180,width=330,height=247,path=/tmp/graphTFT.cover,path2=symbols/nocover.png,fit=yes,aspect_ratio=yes;

// play
Image condition={replayForward} == 1 && {replaySpeed} == -1 && {replayPlay} == 1,x=0,y=70,width=178,height=30,path=symbols/play.png,delay=1;
// pause
Image condition={replayForward} == 1 && {replaySpeed} == -1 && {replayPlay} <  1,x=0,y=70,width=178,height=30,path=symbols/pause.png,delay=1;
// Fast Rewind
Image condition={replayForward} == 0 && {replaySpeed} > 0 && {replayPlay} == 1,x=0,y=70,width=178,height=30,path=symbols/frew{replaySpeed}.png,delay=1;
// Fast Forward
Image condition={replayForward} == 1 && {replaySpeed} > 0 && {replayPlay} == 1,x=0,y=70,width=178,height=30,path=symbols/ffwd{replaySpeed}.png,delay=1;
// Slow Rewind
Image condition={replayForward} == 0 && {replaySpeed} > 0 && {replayPlay} <  1,x=0,y=70,width=178,height=30,path=symbols/srew.png,delay=1;
// Slow Forward
Image condition={replayForward} == 1 && {replaySpeed} > 0 && {replayPlay} <  1,x=0,y=70,width=178,height=30,path=symbols/sfwd.png,delay=1;

Text text={replayTitle},x=10,y=5,size=26,height=40,width=700,align=center,lines=1,red=255,green=255,blue=255;
Text text={replayCurrent/%k:%M:%S},x=10,y=505,width=160,height=40,delay=1;
Text text={replayTotal/%k:%M:%S},x=540,y=505,width=170,height=40,align=right,delay=1;

// three different progressbars, uncomment which you like
//Progressbar total={replayTotal/%s},value={replayCurrent/%s},x=196,y=553,width=325,height=22,red=187,green=129,blue=22,bg_x=193,bg_y=550,bg_width=331,bg_height=28,bg_red=50,bg_green=84,bg_blue=121;
//Progressbar total={replayTotal/%s},value={replayCurrent/%s},x=196,y=553,width=325,height=22,bg_x=193,bg_y=550,bg_width=331,bg_height=28,bg_red=0,bg_green=0,bg_blue=0,switch=yes;
Progressbar total={replayTotal/%s},value={replayCurrent/%s},x=196,y=553,width=326,height=22,bg_x=193,bg_y=550,bg_width=332,bg_height=28,bg_red=0,bg_green=0,bg_blue=0,path=symbols/progress.png,bg_alpha=255,delay=3;

// Achtung delay beim SpectrumAnalyzer in ms
//SpectrumAnalyzer x=500,y=350,width=200,height=100,delay=100,red=52,green=162,blue=159,path=backgrounds/spectrum.png;

#ifdef MOUSE_BUTTONS
	Include=MouseButtons;
#endif

Include=Volume;
Include=OSD-Messages;

#endif


// ----------------------------------------
#ifdef MUSIC_PLUGIN
// ----------------------------------------

Defaults font=graphTFT,size=28,red=52,green=162,blue=159,bg_red=0,bg_green=0,bg_blue=0,bg_alpha=0;

Background path=backgrounds/bg-music-blue.png;
Text text={time/%d.%m. %H:%M},x=548,y=63,size=20,width=200,height=27;

// Replay Name in Titlebar
Text x=10,y=5,size=26,text={replayTitle},width=700,height=40,align=center,red=255,green=255,blue=255;

// Cover
Image x=22,y=124,width=190,height=190,fit=yes,aspect_ratio=yes,path={musicCoverName}:symbols/nocover.png;

// Staus Info
Text text={musicPlayStatus},x=490,y=119,height=28,width=200,size=20,align=center;
Text text={musicFrequence} kHz\,{musicBitrate} kbps\, {musicStereoMode},x=477,y=170,height=20,width=220,size=12;
Text condition={volumeMute} == 0,text={\\008},x=490,y=200,width=20,height=18,size=13,align=left,red=187,green=129,blue=22;
Text condition={volumeMute} <> 0,text={\\009},x=490,y=200,width=20,height=18,size=13,align=left,red=187,green=129,blue=22;
Volumebar x=520,y=205,width=170,height=10,red=187,green=129,blue=22,permanent=yes,bg_red=50,bg_green=50,bg_blue=50,bg_alpha=255;

// Track Info
Text text={musicArtist},x=245,y=122,height=20,width=200,size=12,red=255,green=248,blue=166;
Text text=Album:,x=245,y=147,height=20,width=60,size=12,red=255,green=248,blue=166;
Text text={musicAlbum},x=305,y=147,height=20,width=140,size=12,red=255,green=248,blue=166,scroll=ticker;
Text text=Genre: {musicGenre},x=245,y=172,height=20,width=200,size=12,red=255,green=248,blue=166;
Text text=Year: {musicYear},x=245,y=197,height=20,width=200,size=12,red=255,green=248,blue=166;

// Playlist
Text text={musicCurrentTrack},x=245,y=310,height=24,width=450,size=14,red=255,green=248,blue=166;
TextList text={musicTrack},x=245,y=335,height=160,width=450,size=12;

// Show some Details (commented out, totally missplaced ; ) only to show how it works)
//Text text=File: {musicFilename},x=245,y=500,height=20,width=450,size=12,red=255,green=248,blue=166;
//Text text=Comment: {musicComment},x=245,y=525,height=20,width=450,size=12,red=255,green=248,blue=166;

// Status Icons
Text condition={musicShuffle} == 1,text={\\001},x=20,y=517,width=20,height=20,size=12,align=center,red=187,green=129,blue=22;
Text condition={musicShuffle} <> 1,text={\\001},x=20,y=517,width=20,height=20,size=12,align=center,red=64,green=64,blue=64;

Text condition={musicLoop} == 1,text={\\002},x=41,y=517,width=20,height=20,size=12,align=center,red=187,green=129,blue=22;
Text condition={musicLoop} <> 1,text={\\002},x=41,y=517,width=20,height=20,size=12,align=center,red=64,green=64,blue=64;

Text condition={musicRecording} == 1,text={\\003},x=62,y=517,width=20,height=20,size=12,align=center,red=187,green=129,blue=22;
Text condition={musicRecording} <> 1,text={\\003},x=62,y=517,width=20,height=20,size=12,align=center,red=64,green=64,blue=64;

// Variable musicLyrics wird noch nicht unterstützt
Text condition={musicLyrics} == 1,text={\\004},x=83,y=517,width=20,height=20,size=12,align=center,red=187,green=129,blue=22;
Text condition={musicLyrics} <> 1,text={\\004},x=83,y=517,width=20,height=20,size=12,align=center,red=64,green=64,blue=64;

// Variable musicCopy wird noch nicht unterstützt
Text condition={musicCopy} == 1,text={\\005},x=104,y=517,width=20,height=20,size=12,align=center,red=187,green=129,blue=22;
Text condition={musicCopy} <> 1,text={\\005},x=104,y=517,width=20,height=20,size=12,align=center,red=64,green=64,blue=64;

Text condition={musicShutdown} == 1,text={\\006},x=125,y=517,width=20,height=20,size=12,align=center,red=255,green=0,blue=0;
Text condition={musicShutdown} <> 1,text={\\006},x=125,y=517,width=20,height=20,size=12,align=center,red=64,green=64,blue=64;

// Variable musicTimer wird noch nicht unterstützt
Text condition={musicTimer} == 1,text={\\007},x=146,y=517,width=20,height=20,size=12,align=center,red=187,green=129,blue=22;
Text condition={musicTimer} <> 1,text={\\007},x=146,y=517,width=20,height=20,size=12,align=center,red=64,green=64,blue=64;

// to be continued ...

// Progressbar
Text text=Track {musicIndex} of {musicCount},x=250,y=242,height=20,width=200,size=12;
Text text={replayCurrent/%k:%M:%S},x=250,y=265,width=70,height=18,size=12;
Progressbar total={replayTotal/%s},value={replayCurrent/%s},x=325,y=268,width=295,height=10,red=187,green=230,blue=22,bg_red=20,bg_green=50,bg_blue=50,bg_alpha=255;
Text text={replayTotal/%k:%M:%S},x=625,y=265,width=70,height=18,size=12;

Text text=Rating,x=460,y=242,height=20,width=100,size=12;
Progressbar condition={musicRating} <> 3,total=255,value={musicRating},x=517,y=247,width=110,height=10,path=symbols/music-rating.png,bg_alpha=255;
Text condition={musicRating} == 3,text=zum löschen,x=517,y=242,height=20,width=110,size=12,red=255,green=248,blue=166;

// Delay beim SpectrumAnalyzer in ms!
SpectrumAnalyzer x=18,y=340,width=200,height=140,delay=200,red=52,green=162,blue=159,path=backgrounds/spectrum.png;

// Buttons Help
Rectangle x=15,y=557,width=10,height=10,red=200,green=0,blue=0;
Text text={musicButtonRed},x=30,y=552,height=22,width=150,size=14,bg_red=50,bg_green=84,bg_blue=121;
Rectangle x=215,y=557,width=10,height=10,red=0,green=200,blue=0;
Text text={musicButtonGreen},x=230,y=552,height=22,width=150,size=14,bg_red=50,bg_green=84,bg_blue=121;
Rectangle x=415,y=557,width=10,height=10,red=250,green=250,blue=100;
Text text={musicButtonYellow},x=430,y=552,height=22,width=150,size=14,bg_red=50,bg_green=84,bg_blue=121;
Rectangle x=615,y=557,width=10,height=10,red=0,green=0,blue=200;
Text text={musicButtonBlue},x=630,y=552,height=22,width=150,size=14,bg_red=50,bg_green=84,bg_blue=121;

Include=OSD-Messages;

#endif

// ----------------------------------------
#ifdef MUSIC_PLUGIN_MORONE_STYLE
// ----------------------------------------

Defaults font=graphTFT,size=28,red=52,green=162,blue=159,bg_red=0,bg_green=0,bg_blue=0,bg_alpha=0;

Background path=backgrounds/bg-music-morone.png;

// Cover
Image x=42,y=78,width=148,height=142,fit=yes,aspect_ratio=no,path={musicCoverName}:symbols/nocover.png;

// Status Info
Text text={musicPlayStatus},x=42,y=270,height=20,width=148,size=12,align=center,red=255,green=248,blue=166;

// Volume
Text condition={volumeMute} == 0,text={\\008},x=470,y=485,width=30,height=30,size=18,align=left,red=187,green=129,blue=22;
Text condition={volumeMute} <> 0,text={\\009},x=470,y=485,width=30,height=30,size=18,align=left,red=187,green=129,blue=22;
Volumebar x=500,y=493,width=170,height=10,red=187,green=129,blue=22,permanent=yes,bg_red=50,bg_green=50,bg_blue=50,bg_alpha=255;

// Track Info
Text text={musicArtist},x=220,y=78,height=20,width=460,size=12,red=255,green=248,blue=166;
Text text=Album:,x=220,y=105,height=20,width=60,size=12,red=255,green=248,blue=166;
Text text={musicAlbum},x=285,y=105,height=20,width=395,size=12,red=255,green=248,blue=166;
Text text=Genre:,x=220,y=130,height=20,width=60,size=12,red=255,green=248,blue=166;
Text text={musicGenre},x=285,y=130,height=20,width=395,size=12,red=255,green=248,blue=166;
Text text=Year:,x=220,y=155,height=20,width=60,size=12,red=255,green=248,blue=166;
Text text={musicYear},x=285,y=155,height=20,width=395,size=12,red=255,green=248,blue=166;

// Playlist
Text text={musicCurrentTrack},x=42,y=354,height=22,width=635,size=14,red=255,green=248,blue=166;
TextList text={musicTrack},x=42,y=376,height=90,width=635,size=12;

// Show some Details (commented out, totally missplaced ; ) only to show how it works)
//Text text=File: {musicFilename},x=245,y=500,height=20,width=450,size=12,red=255,green=248,blue=166;
//Text text=Comment: {musicComment},x=245,y=525,height=20,width=450,size=12,red=255,green=248,blue=166;

// Progressbar
Text text={musicFrequence} kHz\,{musicBitrate} kbps\, {musicStereoMode},x=220,y=250,height=20,width=460,size=12;
Text text=Track {musicIndex} of {musicCount},x=220,y=273,height=20,width=460,size=12;
Text text={replayCurrent/%k:%M:%S},x=220,y=296,width=70,height=20,size=12;
Progressbar total={replayTotal/%s},value={replayCurrent/%s},x=300,y=300,width=300,height=10,red=187,green=230,blue=22,bg_red=20,bg_green=50,bg_blue=50,bg_alpha=255;
Text text={replayTotal/%k:%M:%S},x=610,y=296,width=70,height=20,size=12;

// Rating
Text text=Rating:,x=220,y=200,height=20,width=60,size=12;
Progressbar total=255,value={musicRating},x=285,y=205,width=110,height=10,path=symbols/music-rating.png,bg_red=0,bg_green=0,bg_blue=0,bg_alpha=255;

// Delay beim SpectrumAnalyzer in ms!
//SpectrumAnalyzer x=42,y=250,width=159,height=60,delay=0,red=52,green=162,blue=159,path=backgrounds/spectrum.png,fit=yes,aspect_ration=yes;
//SpectrumAnalyzer x=295,y=480,width=160,height=40,delay=0,red=52,green=162,blue=159,path=backgrounds/spectrum.png,fit=yes,aspect_ration=yes;

// Status Icons
Text condition={musicShuffle} = 1,text={\\001},x=42,y=485,width=30,height=30,size=20,align=center,red=187,green=129,blue=22;
Text condition={musicShuffle} <> 1,text={\\001},x=42,y=485,width=30,height=30,size=20,align=center,red=64,green=64,blue=64;

Text condition={musicLoop} = 1,text={\\002},x=77,y=485,width=30,height=30,size=20,align=center,red=187,green=129,blue=22;
Text condition={musicLoop} <> 1,text={\\002},x=77,y=485,width=30,height=30,size=20,align=center,red=64,green=64,blue=64;

Text condition={musicRecording} = 1,text={\\003},x=112,y=485,width=30,height=30,size=20,align=center,red=187,green=129,blue=22;
Text condition={musicRecording} <> 1,text={\\003},x=112,y=485,width=30,height=30,size=20,align=center,red=64,green=64,blue=64;

// Variable musicLyrics wird noch nicht unterstützt
Text condition={musicLyrics} = 1,text={\\004},x=147,y=485,width=30,height=30,size=20,align=center,red=187,green=129,blue=22;
Text condition={musicLyrics} <> 1,text={\\004},x=147,y=485,width=30,height=30,size=20,align=center,red=64,green=64,blue=64;

// Variable musicCopy wird noch nicht unterstützt
Text condition={musicCopy} = 1,text={\\005},x=182,y=485,width=30,height=30,size=20,align=center,red=187,green=129,blue=22;
Text condition={musicCopy} <> 1,text={\\005},x=182,y=485,width=30,height=30,size=20,align=center,red=64,green=64,blue=64;

Text condition={musicShutdown} = 1,text={\\006},x=217,y=485,width=30,height=30,size=20,align=center,red=255,green=0,blue=0;
Text condition={musicShutdown} <> 1,text={\\006},x=217,y=485,width=30,height=30,size=20,align=center,red=64,green=64,blue=64;

// Variable musicTimer wird noch nicht unterstützt
Text condition={musicTimer} = 1,text={\\007},x=252,y=485,width=30,height=30,size=20,align=center,red=187,green=129,blue=22;
Text condition={musicTimer} <> 1,text={\\007},x=252,y=485,width=30,height=30,size=20,align=center,red=64,green=64,blue=64;

// to be continued ...

// Buttons Help
Text text={musicButtonRed},x=40,y=547,height=20,width=130,size=12,red=255,green=248,blue=166,bg_alpha=0;
Text text={musicButtonGreen},x=217,y=547,height=20,width=130,size=12,red=255,green=248,blue=166,bg_alpha=0;
Text text={musicButtonYellow},x=400,y=547,height=20,width=130,size=12,red=255,green=248,blue=166,bg_alpha=0;
Text text={musicButtonBlue},x=578,y=547,height=20,width=130,size=12,red=255,green=248,blue=166,bg_alpha=0;

Include=OSD-Messages;

#endif
  


//***************************************************************************
// Tracklist des Music Plugins
//***************************************************************************
[MenuMusicTrackList]

Include=MenuCommon;

Defaults menu_y=90,menu_height=425,font=graphTFT,size=22,red=255,green=255,blue=255,bg_red=0,bg_green=0,bg_blue=0,bg_alpha=0;

// Track Nr
ColumnSelected number=1,width=80,focus=menu/focus-small.png;
Column number=1,width=80;

// Title
ColumnSelected number=2,scroll=marquee,scroll_count=5,dots=1;
Column number=2,dots=yes;



//***************************************************************************
// Standardwerte für alle Menüs
// Dieser Abschnitt wird in anderen Sektionen eingebunden (include)
//***************************************************************************
[MenuCommon]

Defaults font=graphTFT,size=22,red=52,green=162,blue=159,bg_red=0,bg_green=0,bg_blue=0,bg_alpha=0;

Background path=backgrounds/bg-menu-blue.png;

MenuImageMap name=Schedule,file=menu/menuitems/schedule.png;
MenuImageMap name=Channels,file=menu/menuitems/channels.png;
MenuImageMap name=Timers,file=menu/menuitems/timers.png;
MenuImageMap name=Timer...,file=menu/menuitems/timers.png;
MenuImageMap name=Recordings,file=menu/menuitems/recordings.png;
MenuImageMap name=ExtRecMenu,file=menu/menuitems/recordings.png;
MenuImageMap name=Video,file=menu/menuitems/recordings.png;
MenuImageMap name=Suche/Info...,file=menu/menuitems/info.png;
MenuImageMap name=Infotools...,file=menu/menuitems/info.png;
MenuImageMap name=System...,file=menu/menuitems/setup.png;
MenuImageMap name=Setup,file=menu/menuitems/setup.png;
MenuImageMap name=Minivdr-Setup,file=menu/menuitems/setup.png;
MenuImageMap name=Commands,file=menu/menuitems/commands.png;
MenuImageMap name=DVD,file=menu/menuitems/dvd.png;
MenuImageMap name=VideoCD,file=menu/menuitems/vcd.png;
MenuImageMap name=Disk abspielen,file=menu/menuitems/vdrcd.png;
MenuImageMap name=DVDs erstellen,file=menu/menuitems/burn.png;
MenuImageMap name=Create DVDs,file=menu/menuitems/burn.png;
MenuImageMap name=DVD-Wechsler,file=menu/menuitems/dvd.png;
MenuImageMap name=MP3,file=menu/menuitems/mp3.png;
MenuImageMap name=MPlayer,file=menu/menuitems/mplayer.png;
MenuImageMap name=Picture beside Picture,file=menu/menuitems/pbp.png;
MenuImageMap name=Mldonkey,file=menu/menuitems/donkey.png;
MenuImageMap name=Bilder,file=menu/menuitems/image.png;
MenuImageMap name=Bilder...,file=menu/menuitems/image.png;
MenuImageMap name=Postfach,file=menu/menuitems/Mail.png;
MenuImageMap name=SysInfo,file=menu/menuitems/Sysinfo.png;
MenuImageMap name=Signalinformationen,file=menu/menuitems/Signal.png;
MenuImageMap name=Pilot,file=menu/menuitems/Pilot.png;
MenuImageMap name=Graph-TFT,file=menu/menuitems/Pilot.png;
MenuImageMap name=Konsolen,file=menu/menuitems/konsole.png;
MenuImageMap name=Prefermenu,file=menu/menuitems/Prefermenu.png;
MenuImageMap name=TV-OnScreen,file=menu/menuitems/tvonscreen.png;
MenuImageMap name=Sleep-Timer,file=menu/menuitems/sleeptimer.png;
MenuImageMap name=Wetter,file=menu/menuitems/Wetter.png;
MenuImageMap name=Suche,file=menu/menuitems/suche.png;
MenuImageMap name=Bild-in-Bild,file=menu/menuitems/osdpip.png;
MenuImageMap name=Zeitleiste,file=menu/menuitems/timeline.png;
MenuImageMap name=iPod,file=menu/menuitems/ipod.png;
MenuImageMap name=Video/Audio...,file=menu/menuitems/recordings.png;
MenuImageMap name=EPG...,file=menu/menuitems/yaepg.png;
MenuImageMap name=Spiele...,file=menu/menuitems/gngb2vdr.png;
MenuImageMap name=Sonstige Plugins...,file=menu/menuitems/content.png;
MenuImageMap name=Videotext (OSD),file=menu/menuitems/osdteletext.png;
MenuImageMap name=Fritz!Box Telefonbuch,file=menu/menuitems/vbox.png;
MenuImageMap name=Aufnahmen wiederherstellen,file=menu/menuitems/stop.png;
MenuImageMap name=VideoCD (/dev/dvd),file=menu/menuitems/vcd.png;
MenuImageMap name=CD Player,file=menu/menuitems/vdrcd.png;

Text text={menuTitle},x=70,y=15,width=420,height=40,lines=1,align=center,red=0,green=0,blue=0;

Text text={time/%d.%m. %H:%M},x=520,y=39,height=30;

MenuButtonBackgroundRed x=5,y=529,width=170,height=45,pathON=menu/button-red.png,bg_red=50,bg_green=84,bg_blue=121,on_click=Red;
MenuButtonRed x=5,y=534,width=170,height=45,red=255,green=255,blue=255,alpha=255,align=center;
MenuButtonBackgroundGreen x=180,y=529,width=170,height=45,pathON=menu/button-green.png,bg_red=50,bg_green=84,bg_blue=121,on_click=Green;
MenuButtonGreen x=180,y=534,width=170,height=45,red=0,green=0,blue=0,alpha=255,align=center;
MenuButtonBackgroundYellow x=360,y=529,width=170,height=45,pathON=menu/button-yellow.png,bg_red=50,bg_green=84,bg_blue=121,on_click=Yellow;
MenuButtonYellow x=360,y=534,width=170,height=45,red=0,green=0,blue=0,alpha=255,align=center;
MenuButtonBackgroundBlue x=540,y=529,width=170,height=45,pathON=menu/button-blue.png,bg_red=50,bg_green=84,bg_blue=121,on_click=Blue;
MenuButtonBlue x=540,y=534,width=170,height=45,red=255,green=255,blue=255,alpha=255,align=center;

PartingLine x=0,align=center,width=720,red=255,green=255,blue=255,path=menu/parting-line.png,path2=menu/parting-line-empty.png;

SymRecording x=520,y=480,pathON=symbols/recOn.png;
Recording x=601,y=485,width=120,height=38,lines=1,size=24,red=0,green=0,blue=0,bg_red=50,bg_green=84,bg_blue=121,scroll=marquee,scroll_count=5;

#ifdef MOUSE_BUTTONS
	var varHideColorButtons = 1;
	var varHidePrevChannel = 1;
	Include=MouseButtons;
#endif

// OSD Message
Message x=10,y=483,width=480,height=35,size=19,red=0,green=0,blue=0,bg_x=2,bg_y=481,path=backgrounds/bg-message.png,delay=5;



//***************************************************************************
// Anzeige der Timer Daten
//***************************************************************************
[MenuTimers]

Include=MenuCommon;

Defaults menu_y=70,menu_height=425,font=graphTFT,size=22,bg_red=0,bg_green=0,bg_blue=0,bg_alpha=0;

// define the MenuNavigationArea
MenuNavigationArea y=70,x=1,width=720,height=425,on_dblclick=Ok;

// flag as text (or symbol via font)
ColumnSelected number=1,width=65,red=255,green=248,blue=166,focus=menu/focus-small.png;
Column number=1,width=65;

// Channel Nr
ColumnSelected number=2,width=50,red=255,green=248,blue=166;
Column number=2,width=50,red=255,green=255,blue=255;

// 
ColumnSelected number=3,width=120,red=255,green=248,blue=166;
Column number=3,width=120,red=255,green=255,blue=255;

// Start Time
ColumnSelected number=4,width=100,red=255,green=248,blue=166;
Column number=4,width=100;

// End Time
ColumnSelected number=5,width=100,red=255,green=248,blue=166;
Column number=5,width=100,red=255,green=255,blue=255;

// Event
ColumnSelected number=6,red=255,green=248,blue=166,scroll=marquee,scroll_count=5,dots=1;
Column number=6,red=255,green=255,blue=255,dots=yes;



//***************************************************************************
// Anzeige der Auswahlliste aller Plugins
//***************************************************************************
[MenuSetupPlugins]

Include=MenuCommon;

Defaults menu_y=70,menu_height=400,font=graphTFT,size=22,bg_red=0,bg_green=0,bg_blue=0,bg_alpha=0;

// define the MenuNavigationArea
MenuNavigationArea y=70,x=1,width=720,height=400,on_dblclick=Ok;

ColumnSelected number=0,red=255,green=248,blue=166,focus=menu/focus-small.png,scroll=off;
Column number=0,red=255,green=255,blue=255;

// ColumnSelected number=2,width=300,red=255,green=248,blue=166,scroll=off;
// Column number=2,red=255,green=255,blue=255;



//***************************************************************************
// Menü zur Einstellung von Konfigurationsparametern
//***************************************************************************
[MenuSetupPage]

Include=MenuCommon;

Defaults menu_y=70,menu_height=400,font=graphTFT,size=22,bg_red=0,bg_green=0,bg_blue=0,bg_alpha=0;

// define the MenuNavigationArea
MenuNavigationArea y=70,x=1,width=720,height=400,on_dblclick=Ok;

ColumnSelected number=1,width=520,red=255,green=248,blue=166,focus=menu/focus-small.png,scroll=off;
Column number=1,width=520,red=255,green=255,blue=255;

ColumnSelected number=2,red=255,green=248,blue=166,scroll=off;
Column number=2,red=255,green=255,blue=255;


//***************************************************************************
// Aufnahmemenü (VDR Standardversion)
//***************************************************************************
[MenuRecordings]

Include=MenuCommon;

Defaults menu_y=70,menu_height=400,font=graphTFT,size=22,bg_red=0,bg_green=0,bg_blue=0,bg_alpha=0;

// define the MenuNavigationArea
MenuNavigationArea y=70,x=1,width=720,height=400,on_dblclick=Ok;

// Date
// conditon example
// ColumnSelected condition={colCount} < 3,number=1,width=150,red=255,green=248,blue=166,focus=menu/focus-small.png;
ColumnSelected number=1,width=150,red=255,green=248,blue=166,focus=menu/focus-small.png;
Column number=1,width=150,red=255,green=255,blue=255;

// Time
ColumnSelected number=2,width=120,red=255,green=248,blue=166;
Column number=2,width=120,red=255,green=255,blue=255;

// length only if more than 3 columns
ColumnSelected condition={colCount} > 3,number=3,width=120,red=255,green=248,blue=166;
Column condition={colCount} > 3,number=3,width=120;

// text
ColumnSelected condition={colCount} > 3,number=4,red=255,green=248,blue=166,scroll=marquee,scroll_count=5,dots=1;
Column condition={colCount} > 3,number=4,red=255,green=255,blue=255,dots=yes;

ColumnSelected condition={colCount} = 3,number=3,red=255,green=248,blue=166,scroll=marquee,scroll_count=5,dots=1;
Column condition={colCount} = 3,number=3,red=255,green=255,blue=255,dots=yes;



//***************************************************************************
// Aufnahmemenü (extRecMenu Plugin Version)
//***************************************************************************
[MenuExtRecordings]

Include=MenuCommon;

Defaults menu_y=70,menu_height=400,font=graphTFT,size=22,bg_red=0,bg_green=0,bg_blue=0,bg_alpha=0;

// define the MenuNavigationArea
MenuNavigationArea y=70,x=1,width=720,height=400,on_dblclick=Ok;

// flag (New,...) as text (or symbol via font)
ColumnSelected number=1,width=40,red=255,green=248,blue=166,focus=menu/focus-small.png;
Column number=1,width=40;

// Date
ColumnSelected number=2,width=150,red=255,green=248,blue=166;
Column number=2,width=150,red=255,green=255,blue=255;

// Time
ColumnSelected number=3,width=105,red=255,green=248,blue=166;
Column number=3,width=105,red=255,green=255,blue=255;

// length
ColumnSelected number=4,width=85,red=255,green=248,blue=166;
Column number=4,width=85;

// text
ColumnSelected number=5,red=255,green=248,blue=166,scroll=marquee,scroll_count=5,dots=1;
Column number=5,red=255,green=255,blue=255,dots=yes;



//***************************************************************************
// Kanalmenü (Menu->Kanäle)
//***************************************************************************
[MenuChannels]

Include=MenuCommon;

Defaults menu_y=90,menu_height=400,font=graphTFT,size=22,red=255,green=255,blue=255,bg_red=0,bg_green=0,bg_blue=0,bg_alpha=0;

// define the MenuNavigationArea
MenuNavigationArea y=90,x=1,width=720,height=400,on_dblclick=Ok;

// ChannelNumber
ColumnSelected number=1,x=1,width=80,focus=menu/focus-small.png;
Column number=1,x=1;

// ChannelName
ColumnSelected number=2,x=80;
Column number=2,x=80;



//***************************************************************************
// Programmübersicht (Menu->Programme) (EPGSearch Plugin Version)
//***************************************************************************
[MenuEpgsSchedule]

Include=MenuCommon;

Defaults menu_y=170,menu_height=300,height=70,font=graphTFT,size=22,red=255,green=255,blue=255,bg_red=0,bg_green=0,bg_blue=0,bg_alpha=0;

// define the MenuNavigationArea
MenuNavigationArea y=170,x=1,width=720,height=300,on_dblclick=Ok;

// Senderlogo Logo oben links
Image width=80,fit=yes,aspect_ratio=yes,x=10,y=-5,path=columnimages/{selectedRowEventChannelName/tologo}.png;

// Info zum Event der selektierten Zeile über dem Menü

// Start und Endezeit des gewählten Titels oben links
Text text={selectedRowEventStartTime/%a %d.%m.},x=10,y=70,size=20,width=170,height=30,red=52,green=162,blue=159;
Text text={selectedRowEventStartTime/%H:%M}-{selectedRowEventEndTime/%H:%M},x=10,y=110,size=20,width=170,height=30,red=52,green=162,blue=159;

// EPG Detailinformationen des gewählten Titels im Kopfbereich anzeigen
text text={selectedRowEventDescription},x=195,y=70,size=12,width=400,height=73,red=255,green=255,blue=255;
Image x=613,y=70,width=97,height=73,path={varEPGimagesPath_1}{selectedRowEventID}.png:{varEPGimagesPath_2}{selectedRowEventID}.png:{varEPGimagesPath_3}{selectedRowEventID}.png:{varImagesPath_1}{selectedRowEventTitle}.jpg:menu/menuitems/logo.png,fit=yes,aspect_ratio=yes;

//Alternativ: Gewählten Programmtitel und Subtitel im Kopfbereich anzeigen
//text text={selectedRowEventTitle},x=195,y=70,width=450,height=40,red=255,green=255,blue=255;
//text text={selectedRowEventSubtitle},x=195,y=110,size=18,width=450,height=30,lines=1,red=52,green=162,blue=159;

Rectangle x=185,y=70,width=3,height=75,red=52,green=162,blue=159;
Rectangle x=5,y=145,width=710,height=3,red=52,green=162,blue=159;


//Das Menü...
// Date
EventColumnSelected text={rowEventStartTime/%a %d.%m. %H:%M},width=150,focus=menu/focus-big.png;
EventColumn text={rowEventStartTime/%a %d.%m. %H:%M},width=150;

// EPG Image
EventColumnSelected type=image,bar_height=70%,fit=yes,aspect_ratio=yes,spaceing=10,width=80,spacing=10,path={varEPGimagesPath_1}{rowEventID}.png:{varEPGimagesPath_2}{rowEventID}.png:{varEPGimagesPath_3}{rowEventID}.png:{varImagesPath_1}{rowEventTitle}.jpg:menu/menuitems/logo.png;
EventColumn type=image,bar_height=70%,fit=yes,aspect_ratio=yes,spaceing=10,width=80,spacing=10,path={varEPGimagesPath_1}{rowEventID}.png:{varEPGimagesPath_2}{rowEventID}.png:{varEPGimagesPath_3}{rowEventID}.png:{varImagesPath_1}{rowEventTitle}.jpg:menu/menuitems/logo.png;


//////////////////
// Symbol Column Beginn - flag (V,T,t,...) as text (or symbol via font)
////
// Partial Timer Before Record; Char 149 = Half Clock 1
EventColumnSelected x=230,condition={rowEventHasPartialTimerBefore} == 1,text={\\149},width=40,align_v=1;
EventColumn x=230,condition={rowEventHasPartialTimerBefore} == 1,text={\\149},width=40,align_v=1;

// Timer & not Recording; Char 253 = Clock-Symbol
EventColumnSelected x=230,condition={rowEventHasTimer} == 1 && {rowEventIsRecording} == 0,text={\\253},width=40,align_v=1;
EventColumn x=230,condition={rowEventHasTimer} == 1 && {rowEventIsRecording} == 0,text={\\253},width=40,align_v=1;

// Partial Timer After Record; Char 148 = Half Clock 2
EventColumnSelected x=230,condition={rowEventHasPartialTimerAfter} == 1,text={\\148},width=40,align_v=1;
EventColumn x=230,condition={rowEventHasPartialTimerAfter} == 1,text={\\148},width=40,align_v=1;

// Recording Timer; Char 249 = REC Symbol
EventColumnSelected x=230,condition={rowEventIsRecording} == 1,text={\\249},width=40,align_v=1;
EventColumn x=230,condition={rowEventIsRecording} == 1,text={\\249},width=40,align_v=1;

// Running Event; Char 251 = Runningman-Symbol
EventColumnSelected x=230,condition={rowEventIsRunning} == 1,text={\\251},width=40,align_v=1;
EventColumn x=230,condition={rowEventIsRunning} == 1,text={\\251},width=40,align_v=1;
////
// Symbol Column End
////////////////////

// event
EventColumnSelected text={rowEventTitle},scroll=off,dots=1,line=1;
EventColumn text={rowEventTitle},line=1,dots=yes;
EventColumnSelected text={rowEventSubTitle},line=2,size=20,dots=yes,red=52,green=162,blue=159;
EventColumn text={rowEventSubTitle},line=2,size=20,dots=yes,red=52,green=162,blue=159;



//***************************************************************************
// Programmübersicht (Menu->Programme) (VDR Standard Version)
//***************************************************************************
[MenuSchedule]

Include=MenuEpgsSchedule;



//***************************************************************************
// Anzeige von Senderlogo und Startzeit
// Dieser Abschnitt wird in anderen ...WhatsOn...-Sektionen eingebunden (include)
//***************************************************************************
[MenuEpgsWhatsOn_logo_time]

Include=MenuCommon;

Defaults menu_y=70,height=66,menu_height=400,font=graphTFT,size=22,red=255,green=255,blue=255,bg_red=0,bg_green=0,bg_blue=0,bg_alpha=0;

// define the MenuNavigationArea
MenuNavigationArea y=70,x=1,width=720,height=400,on_dblclick=Ok;

// Senderlogo Logo oben links
Image width=80,height=70,fit=yes,aspect_ratio=yes,x=10,y=-5,path=columnimages/{selectedRowEventChannelName/tologo}.png;

// ch-logo
EventColumnSelected type=image,width=60,fit=yes,aspect_ratio=yes,bar_height=90%,spacing=10,path=columnimages/{rowEventChannelName/tologo}.png,focus=menu/focus-big.png;
EventColumn type=image,width=60,fit=yes,aspect_ratio=yes,bar_height=90%,spacing=10,path=columnimages/{rowEventChannelName/tologo}.png;

// time
EventColumnSelected text={rowEventStartTime/%H:%M},align_v=1,width=100;
EventColumn text={rowEventStartTime/%H:%M},align_v=1,width=100;



//***************************************************************************
// Anzeige der Event Daten (aktuelles Programm)
// Dieser Abschnitt wird in anderen ...WhatsOn...-Sektionen eingebunden (include)
//***************************************************************************
[MenuEpgsWhatsOn_Event]

Defaults menu_y=70,height=66,menu_height=400,font=graphTFT,size=22,red=255,green=255,blue=255,bg_red=0,bg_green=0,bg_blue=0,bg_alpha=0;

EventColumnSelected text={rowEventTitle},line=1,scroll=marquee,scroll_count=5,dots=1;
EventColumn text={rowEventTitle},line=1,dots=yes;

EventColumnSelected text={rowEventSubTitle},line=2,size=20,scroll=marquee,scroll_count=5,dots=1,red=52,green=162,blue=159;
EventColumn text={rowEventSubTitle},line=2,size=20,dots=yes,red=52,green=162,blue=159;



//***************************************************************************
// Anzeige eingerichteter persönlicher Zeitabschnitte in EPGSearch
//***************************************************************************
[MenuEpgsWhatsOnElse]

Include=MenuEpgsWhatsOn_logo_time;

Defaults menu_y=70,height=66,menu_height=400,font=graphTFT,size=22,red=255,green=255,blue=255,bg_red=0,bg_green=0,bg_blue=0,bg_alpha=0;

//////////////////
// Symbol Column Beginn - flag (V,T,t,...) as text (or symbol via font)
////
// Partial Timer Before Record; Char 149 = Half Clock 1
EventColumnSelected x=170,condition={rowEventHasPartialTimerBefore} == 1,text={\\149},width=40,align_v=1;
EventColumn x=170,condition={rowEventHasPartialTimerBefore} == 1,text={\\149},width=40,align_v=1;

// Timer & not Recording; Char 253 = Clock-Symbol
EventColumnSelected x=170,condition={rowEventHasTimer} == 1 && {rowEventIsRecording} == 0,text={\\253},width=40,align_v=1;
EventColumn x=170,condition={rowEventHasTimer} == 1 && {rowEventIsRecording} == 0,text={\\253},width=40,align_v=1;

// Partial Timer After Record; Char 148 = Half Clock 2
EventColumnSelected x=170,condition={rowEventHasPartialTimerAfter} == 1,text={\\148},width=40,align_v=1;
EventColumn x=170,condition={rowEventHasPartialTimerAfter} == 1,text={\\148},width=40,align_v=1;

// Recording Timer; Char 249 = REC Symbol
EventColumnSelected x=170,condition={rowEventIsRecording} == 1,text={\\249},width=40,align_v=1;
EventColumn x=170,condition={rowEventIsRecording} == 1,text={\\249},width=40,align_v=1;

// Running Event; Char 251 = Runningman-Symbol
EventColumnSelected x=170,condition={rowEventIsRunning} == 1,text={\\251},width=40,align_v=1;
EventColumn x=170,condition={rowEventIsRunning} == 1,text={\\251},width=40,align_v=1;
////
// Symbol Column End
////////////////////

Include=MenuEpgsWhatsOn_Event;



//***************************************************************************
// Was läuft JETZT (Menu->Programme-Jetzt) (EPGSearch Plugin Version)
//***************************************************************************
[MenuEpgsWhatsOnNow]

Include=MenuEpgsWhatsOn_logo_time;

Defaults menu_y=70,height=66,menu_height=400,font=graphTFT,size=22,red=255,green=255,blue=255,bg_red=0,bg_green=0,bg_blue=0,bg_alpha=0;

// Fortschrittsanzeige (progress)
EventColumnSelected type=progress,width=70,spacing=10,bar_height=40%,bg_red=0,bg_green=0,bg_blue=0,bg_alpha=255,path=symbols/progress.png;
EventColumn type=progress,width=70,spacing=10,bar_height=40%,bg_red=0,bg_green=0,bg_blue=0,bg_alpha=255,path=symbols/progress.png;

//////////////////
// Symbol Column Beginn - flag (V,T,t,...) as text (or symbol via font)
////
// Partial Timer Before Record; Char 149 = Half Clock 1
EventColumnSelected x=250,condition={rowEventHasPartialTimerBefore} == 1,text={\\149},width=40,align_v=1;
EventColumn x=250,condition={rowEventHasPartialTimerBefore} == 1,text={\\149},width=40,align_v=1;

// Timer & not Recording; Char 253 = Clock-Symbol
EventColumnSelected x=250,condition={rowEventHasTimer} == 1 && {rowEventIsRecording} == 0,text={\\253},width=40,align_v=1;
EventColumn x=250,condition={rowEventHasTimer} == 1 && {rowEventIsRecording} == 0,text={\\253},width=40,align_v=1;

// Partial Timer After Record; Char 148 = Half Clock 2
EventColumnSelected x=250,condition={rowEventHasPartialTimerAfter} == 1,text={\\148},width=40,align_v=1;
EventColumn x=250,condition={rowEventHasPartialTimerAfter} == 1,text={\\148},width=40,align_v=1;

// Recording Timer; Char 249 = REC Symbol
EventColumnSelected x=250,condition={rowEventIsRecording} == 1,text={\\249},width=40,align_v=1;
EventColumn x=250,condition={rowEventIsRecording} == 1,text={\\249},width=40,align_v=1;

// Running Event; Char 251 = Runningman-Symbol
EventColumnSelected x=250,condition={rowEventIsRunning} == 1,text={\\251},width=40,align_v=1;
EventColumn x=250,condition={rowEventIsRunning} == 1,text={\\251},width=40,align_v=1;
////
// Symbol Column End
////////////////////

Include=MenuEpgsWhatsOn_Event;



//***************************************************************************
// Was läuft Jetzt (Menu->Programme-Jetzt) (VDR Standard Version)
//***************************************************************************
[MenuWhatsOnNow]
Include=MenuEpgsWhatsOnNow;



//***************************************************************************
// Was läuft als NÄCHSTES (Menu->Programme-Nächste) (EPGSearch Plugin Version)
//***************************************************************************
[MenuEpgsWhatsOnNext]
Include=MenuEpgsWhatsOnElse;



//***************************************************************************
// Was läuft als NÄCHSTES (Menu->Programme-Nächste) (VDR Standard Version)
//***************************************************************************
[MenuWhatsOnNext]
Include=MenuEpgsWhatsOnElse;



//***************************************************************************
// Anzeige ArghDirector (benötigt ArghDirector Plugin)
//***************************************************************************
[MenuArghDirector]

Include=MenuCommon;

Defaults menu_y=90,menu_height=400,font=graphTFT,size=20,red=255,green=255,blue=255,bg_red=0,bg_green=0,bg_blue=0,bg_alpha=0;

// define the MenuNavigationArea
MenuNavigationArea y=90,x=1,width=720,height=400,on_dblclick=Ok;

// Overview - View
// event
ColumnSelected condition={colCount} = 1,number=1,focus=menu/focus-small.png;
Column condition={colCount} = 1,number=1;

// Detail - View (with times, ...)
// event/ch-name
ColumnSelected condition={colCount} > 1,number=1,width=350,focus=menu/focus-small.png;
Column condition={colCount} > 1,number=1,width=350;

// flag (V,T,t,...) as text (or symbol via font) ColumnSelected number=2,width=40;
Column number=2,width=40;

// progress graphical with image
ColumnSelected number=3,type=progress,width=70,spacing=10,bar_height=50%,bg_red=0,bg_green=0,bg_blue=0,bg_alpha=255,path=symbols/progress.png;
Column number=3,type=progress,width=70,spacing=10,bar_height=50%,bg_red=0,bg_green=0,bg_blue=0,bg_alpha=255,path=symbols/progress.png;

// time
ColumnSelected number=4;
Column number=4;



//***************************************************************************
// Detailinfos des Programms in der Programmübersicht
//***************************************************************************
[MenuEvent]

Include=MenuCommon;

Defaults font=graphTFT,size=24,red=52,green=162,blue=159,bg_red=0,bg_green=0,bg_blue=0,bg_alpha=0;

// define the MenuNavigationArea
MenuNavigationArea y=75,x=1,width=720,height=400,on_dblclick=Ok;

// Image x=15,y=15,width=80,height=50,fit=yes,aspect_ratio=yes,path=columnimages/{presentChannelName/tologo}.png;
Text text={eventStartTime/%a %d.%m},x=10,y=90,size=20,width=170,height=30;
Text text={eventStartTime/%H:%M},x=10,y=130,size=20,width=80,height=30;
Text text=-{eventEndTime/%H:%M},x=90,y=130,size=20,width=90,height=30;

Rectangle x=185,y=70,width=3,height=115;

text text={eventTitle},x=195,y=80,width=500,height=40,red=255,green=255,blue=255;
text text={eventSubtitle},x=195,y=120,size=18,width=350,height=65,lines=2;
Image x=540,y=75,width=190,height=105,path={varEPGimagesPath_1}{eventID}.png:{varEPGimagesPath_2}{eventID}.png:{varEPGimagesPath_3}{eventID}.png:{varImagesPath_1}{eventTitle}.jpg,fit=yes,aspect_ratio=yes;

Rectangle x=5,y=185,width=710,height=3;

MenuText x=10,y=200,width=680,height=270,size=20,red=255,blue=255,green=255;


//***************************************************************************
// Detailinfos der Aufnahmen
//***************************************************************************
[MenuRecording]

Include=MenuCommon;

Defaults font=graphTFT,size=22,red=52,green=162,blue=159,bg_red=0,bg_green=0,bg_blue=0,bg_alpha=0;

// define the MenuNavigationArea
MenuNavigationArea y=75,x=1,width=720,height=400,on_dblclick=Ok;

Text text={recordingTime/%a %d.%m},x=10,y=90,size=20,width=140,height=30;
Text text={recordingTime/%H:%M},x=10,y=130,size=20,width=80,height=30;

Rectangle x=185,y=70,width=3,height=115;

Text text={recordingTitle},x=195,y=80,width=500,height=40,red=255,green=255,blue=255;
Text text={recordingSubtitle},x=195,y=120,size=18,width=350,height=65,lines=2;
Image x=540,y=75,width=190,height=105,path={recordingPath}/thumbnail.png:{varEPGimagesPath_1}{recordingEventID}.png:{varEPGimagesPath_2}{recordingEventID}.png:{varEPGimagesPath_3}{recordingEventID}.png:{varImagesPath_1}{recordingTitle}.jpg,fit=yes,aspect_ratio=yes;

Rectangle x=5,y=185,width=710,height=3;

MenuText x=10,y=200,width=680,height=270,size=20,red=255,blue=255,green=255;



//***************************************************************************
// Detailinfos der Aufnahmen (extRecMenu Plugin Version)
//***************************************************************************
[MenuExtRecording]

Include=MenuRecording;
Defaults font=graphTFT,size=22,red=52,green=162,blue=159,bg_red=0,bg_green=0,bg_blue=0,bg_alpha=0;



//***************************************************************************
// Anzeige Standardmenü
//***************************************************************************
[Menu]

Include=MenuCommon;

Defaults font=graphTFT,size=24,red=52,green=162,blue=159,bg_red=0,bg_green=0,bg_blue=0,bg_alpha=0;

// define the MenuNavigationArea
MenuNavigationArea y=75,x=1,width=720,height=400,on_dblclick=Ok;

MenuText x=10,y=70,width=680,height=400,alpha=255,red=255,blue=255,green=255;

// display menu icon in the upper left corner
MenuSelected x=0,y=70,width=720,height=400,stat_pic=yes,stat_x=1,stat_y=1,
   stat_width=60,stat_height=60,alpha=255,red=255,green=248,blue=166,focus=menu/focus-small.png;

// OR display menu icon in the current menu line
// MenuSelected stat_pic=yes,stat_x=600,stat_width=40,stat_height=40,alpha=255,
   red=255,green=248,blue=166,focus=menu/focus-small.png;

Menu x=0,y=70,width=720,height=400,alpha=255,red=255,green=255,blue=255;

//***************************************************************************
// Noch nicht weiter definierter Menüeintrag
//***************************************************************************

[MenuCommands]
Include=Menu;

[MenuMain]
Include=Menu;

//***************************************************************************
// Anzeige bei nicht bekannten Menüstrukturen
//***************************************************************************
[MenuUnknown]
Include=Menu;