forked from stuntrally/stuntrally3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGame.layout
2426 lines (2313 loc) · 116 KB
/
Game.layout
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
<?xml version="1.0" encoding="UTF-8"?>
<MyGUI type="Layout" version="3.2.0">
<Widget type="Window" skin="WindowC" position="16 88 800 600" align="Center" layer="Overlapped" name="GameWnd">
<Property key="MinSize" value="500 400"/>
<Property key="Caption" value="#{SingleRace}"/>
<Property key="Alpha" value="0.6"/>
<Property key="Snap" value="true"/>
<Widget type="TabControl" skin="TabControlIcon" position="0 0 800 600" align="Default" layer="Back" name="TabWndGame">
<Property key="InheritsAlpha" value="false"/>
<Property key="Colour" value="0.7 0.85 1"/>
<Property key="SmoothShow" value="false"/>
<Widget type="TabItem" skin="" position="2 24 794 562">
<Property key="Caption" value="#FFE0C0<#{BackMenu}"/>
<Property key="Colour" value="1 0.6 0.2"/>
</Widget>
<Widget type="TabItem" skin="" position="2 24 794 562" name="TabTrack">
<Property key="Caption" value="#60FF60#{Track}"/>
<Widget type="Button" skin="CheckBox" position="380 524 132 24" name="ReverseOn">
<Property key="Caption" value="#{Reverse}"/>
<Property key="Colour" value="0.8 1 0.6"/>
<Property key="TextColour" value="0.8 1 0.5"/>
<UserString key="tip" value="#{TipReverse}"/>
</Widget>
<Widget type="Button" skin="Button" position="176 516 160 32" name="NewGame0">
<Property key="Caption" value="#{NewGame}"/>
<Property key="Colour" value="0.6 1.0 0.3"/>
<Property key="TextColour" value="0.3 1 0.2"/>
<UserString key="tip" value="#{TipNewGame}"/>
<Widget type="ImageBox" skin="ImageBox" position="2 4 24 24">
<Property key="ImageCoord" value="256 0 128 128"/>
<Property key="Alpha" value="0.7"/>
<Property key="ImageTexture" value="gui_icons.png"/>
<Property key="NeedMouse" value="false"/>
</Widget>
</Widget>
<Widget type="ImageBox" skin="ImageBox" position="174 26 336 336" name="TrackImg0">
<UserString key="tip" value="#{TipTrackImg} #{TipClickMax}"/>
</Widget>
<Widget type="ImageBox" skin="ImageBox" position="526 270 252 252" name="TrkTerImg0">
<UserString key="tip" value="#{TipTrackMap} #{TipClickMax}"/>
</Widget>
<Widget type="ImageBox" skin="ImageBox" position="526 270 252 252" name="TrackMap0">
<UserString key="tip" value="#{TipTrackMap} #{TipClickMax}"/>
<Widget type="ImageBox" skin="RotatingSkin" position="64 64 16 16" name="TrackPos0">
<Property key="ImageTexture" value="carpos0.png"/>
</Widget>
</Widget>
<!-- user xml -->
<Widget type="ImageBox" skin="ImageBox" position="172 4 20 20">
<Property key="ImageTexture" value="track_icons.png"/>
<Property key="ImageCoord" value="320 32 32 32"/>
<Property key="Alpha" value="0.7"/>
<UserString key="tip" value="#{user}: #{bookmark}"/>
</Widget>
<Widget type="Button" skin="CheckBox" position="190 8 20 20" name="UserBookm">
<Property key="Caption" value=""/>
<Property key="TextColour" value="0.6 1 1"/>
<UserString key="tip" value="#{user}: #{bookmark}"/>
</Widget>
<Widget type="ImageBox" skin="ImageBox" position="210 4 20 20">
<Property key="ImageTexture" value="track_icons.png"/>
<Property key="ImageCoord" value="288 32 32 32"/>
<Property key="Alpha" value="0.6"/>
<UserString key="tip" value="#{user}: #{rating}"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="234 6 16 16" name="UserRateVal">
<Property key="Caption" value="5"/>
<Property key="TextColour" value="0.6 0.8 1"/>
<UserString key="tip" value="#{user}: #{rating}"/>
</Widget>
<Widget type="Slider" skin="Slider" position="252 8 90 12" name="UserRate">
<Property key="Colour" value="0.6 1 1"/>
<UserString key="tip" value="#{user}: #{rating}"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="528 528 88 20">
<Property key="Caption" value="#{Author}"/>
<Property key="TextColour" value="0.4 0.5 0.6"/>
<Property key="FontName" value="font.small"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="616 528 250 20" name="TrackAuthor">
<Property key="TextColour" value="0.45 0.55 0.65"/>
<Property key="FontName" value="font.small"/>
</Widget>
<Widget type="Widget" skin="PanelEmpty" position="176 367 336 107" align="Stretch" name="panTrkDesc0">
<Widget type="EditBox" skin="EditBoxStretch" position="0 0 336 52" name="TrackAdvice0">
<Property key="ReadOnly" value="true"/>
<Property key="MultiLine" value="true"/>
<Property key="WordWrap" value="true"/>
<Property key="VisibleHScroll" value="false"/>
<Property key="VisibleVScroll" value="true"/>
<Property key="TextColour" value="0.9 0.9 0.6"/>
<Property key="Colour" value="0.35 0.35 0.3"/>
<Property key="FontName" value="font.small"/>
<UserString key="tip" value="#{TipTrackAdvice}"/>
</Widget>
<Widget type="ImageBox" skin="ImageBox" position="312 30 24 24">
<Property key="ImageCoord" value="768 768 128 128"/>
<Property key="ImageTexture" value="gui_icons.png"/>
<Property key="InheritsAlpha" value="false"/>
<Property key="Alpha" value="0.5"/>
<UserString key="tip" value="#{TipTrackAdvice}"/>
</Widget>
<Widget type="EditBox" skin="EditBoxStretch" position="0 53 336 52" name="TrackDesc0">
<Property key="ReadOnly" value="true"/>
<Property key="MultiLine" value="true"/>
<Property key="WordWrap" value="true"/>
<Property key="VisibleHScroll" value="false"/>
<Property key="VisibleVScroll" value="true"/>
<Property key="FontName" value="font.small"/>
<Property key="TextColour" value="0.6 1.0 0.8"/>
<Property key="Colour" value="0.25 0.35 0.3"/>
<UserString key="tip" value="#{TipTrackDesc}"/>
</Widget>
<Widget type="ImageBox" skin="ImageBox" position="312 83 24 24">
<Property key="ImageCoord" value="384 256 128 128"/>
<Property key="ImageTexture" value="gui_icons.png"/>
<Property key="InheritsAlpha" value="false"/>
<Property key="Alpha" value="0.5"/>
<UserString key="tip" value="#{TipTrackDesc}"/>
</Widget>
</Widget>
<Widget type="Widget" skin="PanelSkin" position="524 95 256 172">
<Property key="Colour" value="0.6 0.73 0.85"/>
<Property key="Alpha" value="0.5"/>
<Widget type="Widget" skin="" position="0 0 256 172">
<Property key="InheritsAlpha" value="false"/>
<Widget type="TextBox" skin="TextBox" position="6 5 82 18">
<Property key="Caption" value="#{TrackLength}"/>
<Property key="TextColour" value="0.4 0.8 1.0"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="6 25 82 18">
<Property key="Caption" value="#{TrackArea}"/>
<Property key="TextColour" value="0.4 0.8 1.0"/>
<Property key="FontName" value="font.small"/>
<Property key="Alpha" value="0.5"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="86 5 68 18" name="st0">
<Property key="TextColour" value="0.55 0.8 1.0"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="86 25 68 18" name="st1">
<Property key="TextColour" value="0.4 0.8 1.0"/>
<Property key="FontName" value="font.small"/>
<Property key="Alpha" value="0.5"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="202 5 56 18" name="st2">
<Property key="TextColour" value="0.5 0.75 1.0"/>
<Property key="Alpha" value="1.0"/>
<UserString key="tip" value="#{TrackWidthAvg}"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="202 25 56 18" name="st3">
<Property key="TextColour" value="0.35 0.6 0.9"/>
<Property key="FontName" value="font.small"/>
<Property key="Alpha" value="0.9"/>
<UserString key="tip" value="#{TrackHeightDiff}"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="158 64 36 18" name="st4">
<Property key="TextColour" value="0.5 0.9 0.9"/>
<Property key="FontName" value="font.small"/>
<Property key="Alpha" value="0.9"/>
<UserString key="tip" value="#{TrackInAir} %"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="158 84 36 18" name="st5">
<Property key="TextColour" value="0.9 0.9 0.5"/>
<Property key="FontName" value="font.small"/>
<Property key="Alpha" value="0.9"/>
<UserString key="tip" value="#{TrackPipes} %"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="208 64 28 18" name="st6">
<Property key="TextColour" value="0.7 0.75 0.8"/>
<Property key="FontName" value="font.small"/>
<UserString key="tip" value="#{TrackBankAng}"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="232 64 28 18" name="st7">
<Property key="TextColour" value="0.8 0.72 0.67"/>
<Property key="FontName" value="font.small"/>
<UserString key="tip" value="#{TrackBankAng}"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="208 84 36 18" name="st8">
<Property key="TextColour" value="0.9 0.4 0.2"/>
<Property key="FontName" value="font.small"/>
<Property key="Alpha" value="0.9"/>
<UserString key="tip" value="#{Road_OnPipe} %"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="170 76 80 22">
<Property key="Caption" value="%"/>
<Property key="TextColour" value="0.5 0.7 0.7"/>
<Property key="Alpha" value="0.8"/>
<Property key="FontName" value="font.small"/>
<Property key="FontHeight" value="17"/>
</Widget>
<Widget type="ImageBox" skin="ImageBox" position="170 5 32 20">
<Property key="ImageCoord" value="0 40 32 20"/>
<Property key="ImageTexture" value="track_icons.png"/>
<Property key="Colour" value="1.0 0.9 0.7"/>
<Property key="Alpha" value="0.8"/>
<UserString key="tip" value="#{TrackWidthAvg}"/>
</Widget>
<Widget type="ImageBox" skin="ImageBox" position="170 25 32 20">
<Property key="ImageCoord" value="32 40 32 20"/>
<Property key="ImageTexture" value="track_icons.png"/>
<Property key="Colour" value="1.0 0.9 0.7"/>
<Property key="Alpha" value="0.7"/>
<UserString key="tip" value="#{TrackHeightDiff}"/>
</Widget>
<Widget type="ImageBox" skin="ImageBox" position="130 63 32 20" name="ist0">
<Property key="ImageCoord" value="64 40 32 20"/>
<Property key="ImageTexture" value="track_icons.png"/>
<Property key="Alpha" value="0.8"/>
<UserString key="tip" value="#{TrackInAir} %"/>
</Widget>
<Widget type="ImageBox" skin="ImageBox" position="130 83 32 20" name="ist1">
<Property key="ImageCoord" value="128 40 32 20"/>
<Property key="ImageTexture" value="track_icons.png"/>
<Property key="Alpha" value="0.18"/>
<UserString key="tip" value="#{TrackPipes} %"/>
</Widget>
<Widget type="ImageBox" skin="ImageBox" position="184 63 32 20" name="ist2">
<Property key="ImageCoord" value="96 40 32 20"/>
<Property key="ImageTexture" value="track_icons.png"/>
<Property key="Alpha" value="0.18"/>
<UserString key="tip" value="#{TrackBankAng}"/>
</Widget>
<Widget type="ImageBox" skin="ImageBox" position="184 83 32 20" name="ist3">
<Property key="ImageCoord" value="160 40 32 20"/>
<Property key="ImageTexture" value="track_icons.png"/>
<Property key="Alpha" value="0.18"/>
<UserString key="tip" value="#{Road_OnPipe} %"/>
</Widget>
<Widget type="ImageBox" skin="ImageBox" position="1 60 32 32" name="iti9">
<Property key="ImageTexture" value="track_icons.png"/>
<Property key="ImageCoord" value="0 0 32 32"/>
<UserString key="tip" value="#{difficulty}"/>
</Widget>
<Widget type="ImageBox" skin="ImageBox" position="34 60 32 32" name="iti10">
<Property key="ImageTexture" value="track_icons.png"/>
<Property key="ImageCoord" value="32 0 32 32"/>
<UserString key="tip" value="#{TipRating}"/>
</Widget>
<Widget type="ImageBox" skin="ImageBox" position="76 66 26 26" name="iti11">
<Property key="ImageTexture" value="track_icons.png"/>
<Property key="ImageCoord" value="384 0 32 32"/>
<UserString key="tip" value="#{long} km"/>
</Widget>
<Widget type="ImageBox" skin="ImageBox" position="98 66 26 26" name="iti12">
<Property key="ImageTexture" value="track_icons.png"/>
<Property key="ImageCoord" value="352 0 32 32"/>
<UserString key="tip" value="#{sum}"/>
</Widget>
<Widget type="ImageBox" skin="ImageBox" position="2 120 28 28" name="iti8">
<Property key="ImageTexture" value="track_icons.png"/>
<Property key="ImageCoord" value="64 0 32 32"/>
<UserString key="tip" value="#{objects}"/>
</Widget>
<Widget type="ImageBox" skin="ImageBox" position="30 120 28 28" name="iti7">
<Property key="ImageTexture" value="track_icons.png"/>
<Property key="ImageCoord" value="96 0 32 32"/>
<UserString key="tip" value="#{obstacles}"/>
</Widget>
<Widget type="ImageBox" skin="ImageBox" position="58 120 28 28" name="iti0">
<Property key="ImageTexture" value="track_icons.png"/>
<Property key="ImageCoord" value="128 0 32 32"/>
<UserString key="tip" value="#{fluids}"/>
</Widget>
<Widget type="ImageBox" skin="ImageBox" position="86 120 28 28" name="iti1">
<Property key="ImageTexture" value="track_icons.png"/>
<Property key="ImageCoord" value="160 0 32 32"/>
<UserString key="tip" value="#{bumps}"/>
</Widget>
<Widget type="ImageBox" skin="ImageBox" position="114 120 28 28" name="iti2">
<Property key="ImageTexture" value="track_icons.png"/>
<Property key="ImageCoord" value="192 0 32 32"/>
<UserString key="tip" value="#{jumps}"/>
</Widget>
<Widget type="ImageBox" skin="ImageBox" position="142 120 28 28" name="iti3">
<Property key="ImageTexture" value="track_icons.png"/>
<Property key="ImageCoord" value="224 0 32 32"/>
<UserString key="tip" value="#{loops}"/>
</Widget>
<Widget type="ImageBox" skin="ImageBox" position="170 120 28 28" name="iti4">
<Property key="ImageTexture" value="track_icons.png"/>
<Property key="ImageCoord" value="256 0 32 32"/>
<UserString key="tip" value="#{pipes}"/>
</Widget>
<Widget type="ImageBox" skin="ImageBox" position="198 120 28 28" name="iti5">
<Property key="ImageTexture" value="track_icons.png"/>
<Property key="ImageCoord" value="288 0 32 32"/>
<UserString key="tip" value="#{banked}"/>
</Widget>
<Widget type="ImageBox" skin="ImageBox" position="226 120 28 28" name="iti6">
<Property key="ImageTexture" value="track_icons.png"/>
<Property key="ImageCoord" value="320 0 32 32"/>
<UserString key="tip" value="#{frenzy}"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="12 148 32 20" name="ti8">
<Property key="TextColour" value="0.8 0.4 0.6"/>
<UserString key="tip" value="#{objects}"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="40 148 32 20" name="ti7">
<Property key="TextColour" value="0.8 0.65 0.2"/>
<UserString key="tip" value="#{obstacles}"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="68 148 32 20" name="ti0">
<Property key="TextColour" value="0.5 0.8 1.0"/>
<UserString key="tip" value="#{fluids}"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="96 148 32 20" name="ti1">
<Property key="TextColour" value="0.5 1.0 0.4"/>
<UserString key="tip" value="#{bumps}"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="124 148 32 20" name="ti2">
<Property key="TextColour" value="1.0 0.6 0.3"/>
<UserString key="tip" value="#{jumps}"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="152 148 32 20" name="ti3">
<Property key="TextColour" value="0.3 0.9 1.0"/>
<UserString key="tip" value="#{loops}"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="180 148 32 20" name="ti4">
<Property key="TextColour" value="0.9 0.9 0.3"/>
<UserString key="tip" value="#{pipes}"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="208 148 32 20" name="ti5">
<Property key="TextColour" value="0.8 0.8 0.8"/>
<UserString key="tip" value="#{banked}"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="236 148 32 20" name="ti6">
<Property key="TextColour" value="0.8 0.8 1.0"/>
<UserString key="tip" value="#{frenzy}"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="14 92 32 20" name="ti9">
<Property key="TextColour" value="0.8 0.9 1.0"/>
<UserString key="tip" value="#{difficulty}"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="46 92 32 20" name="ti10">
<Property key="TextColour" value="0.86 0.93 1.0"/>
<UserString key="tip" value="#{TipRating}"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="70 92 32 20" name="ti11">
<Property key="TextAlign" value="Top HCenter"/>
<Property key="TextColour" value="1.0 0.8 0.8"/>
<UserString key="tip" value="#{long} km"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="94 92 32 20" name="ti12">
<Property key="TextAlign" value="Top HCenter"/>
<Property key="TextColour" value="0.8 0.8 1.0"/>
<UserString key="tip" value="#{sum}"/>
</Widget>
</Widget>
</Widget>
<Widget type="Widget" skin="PanelSkin" position="524 2 256 92">
<Property key="Colour" value="0.8 0.92 1.0"/>
<Property key="Alpha" value="0.6"/>
<Widget type="Widget" skin="" position="0 0 256 92">
<Property key="InheritsAlpha" value="false"/>
<Widget type="TextBox" skin="TextBox" position="192 4 72 18">
<Property key="Caption" value="#{Track}"/>
<Property key="TextColour" value="0.5 0.9 0.5"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="112 4 72 18">
<Property key="Caption" value="#{Vehicle}"/>
<Property key="TextColour" value="0.4 0.9 0.9"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="6 24 102 18">
<Property key="Caption" value="#{TrackBestTime}"/>
<Property key="FontName" value="font.small"/>
<Property key="TextColour" value="0.7 0.86 1.0"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="6 44 102 18">
<Property key="Caption" value="#{TrackAvgSpeed}"/>
<Property key="FontName" value="font.small"/>
<Property key="TextColour" value="0.7 0.86 1.0"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="192 24 64 18" name="st9">
<Property key="TextColour" value="0.7 1 0.7"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="192 44 64 18" name="st10">
<Property key="TextColour" value="0.7 1 0.7"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="112 24 64 18" name="st11">
<Property key="TextColour" value="0.7 0.96 1.0"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="112 44 64 18" name="st12">
<Property key="TextColour" value="0.7 0.96 1.0"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="6 68 102 18">
<Property key="Caption" value="#{TBPoints}"/>
<Property key="TextColour" value="0.9 0.8 0.7"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="112 68 64 18" name="st13">
<Property key="TextColour" value="0.9 0.7 0.5"/>
</Widget>
</Widget>
</Widget>
<Widget type="ImageBox" skin="ImageBox" position="306 6 112 24" name="TrkView2icons1">
<Property key="ImageTexture" value="track_icons.png"/>
<Property key="ImageCoord" value="0 0 352 32"/>
<UserString key="tip" value="#{TrackDifficulties}"/>
</Widget>
<Widget type="ImageBox" skin="ImageBox" position="446 6 112 24" name="TrkView2icons2">
<Property key="ImageTexture" value="track_icons.png"/>
<Property key="ImageCoord" value="352 0 64 32"/>
<UserString key="tip" value="#{TrackDifficulties}"/>
</Widget>
<Widget type="Button" skin="Button" position="16 7 36 24" name="TrkView1">
<Property key="Caption" value="<"/>
<Property key="Alpha" value="0.8"/>
<Property key="Colour" value="0.6 0.8 1.0"/>
<Property key="TextColour" value="0.45 0.58 0.8"/>
<UserString key="tip" value="#{TipTrkViewShort}"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="55 12 18 24" name="TrkViewVal">
<Property key="Caption" value="0"/>
<Property key="TextColour" value="0.5 0.6 0.7"/>
<Property key="FontName" value="font.small"/>
</Widget>
<Widget type="Button" skin="Button" position="64 7 36 24" name="TrkView2">
<Property key="Caption" value=">"/>
<Property key="Alpha" value="0.8"/>
<Property key="Colour" value="0.6 0.8 1.0"/>
<Property key="TextColour" value="0.45 0.58 0.8"/>
<UserString key="tip" value="#{TipTrkViewDetailed}"/>
</Widget>
<Widget type="ImageBox" skin="ImageBox" position="16 494 24 24">
<Property key="ImageCoord" value="256 128 128 128"/>
<Property key="Alpha" value="0.7"/>
<Property key="ImageTexture" value="gui_icons.png"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="40 496 108 24">
<Property key="Caption" value="#{Find}:"/>
<Property key="TextColour" value="0.7 0.8 0.9"/>
<Property key="FontName" value="font.small"/>
<UserString key="tip" value="#{TipFind}"/>
</Widget>
<Widget type="EditBox" skin="EditBox" position="16 516 88 24" name="TrkFind">
<Property key="Colour" value="0.7 0.8 0.9"/>
<Property key="MaxTextLength" value="20"/>
<Property key="TextColour" value="0.8 0.9 1.0"/>
<UserString key="tip" value="#{TipFind}"/>
</Widget>
<Widget type="Button" skin="Button" position="116 7 40 24" name="TrkFilter">
<Property key="Alpha" value="0.7"/>
<Property key="Colour" value="0.7 0.7 1.0"/>
<Property key="TextColour" value="0.6 0.6 0.9"/>
<UserString key="tip" value="#{Track} - #{TerFilter}"/>
<Widget type="ImageBox" skin="ImageBox" position="10 2 18 18">
<Property key="InheritsAlpha" value="false"/>
<Property key="ImageTexture" value="gui_icons.png"/>
<Property key="ImageCoord" value="640 896 128 128"/>
<Property key="Alpha" value="0.7"/>
<Property key="NeedMouse" value="false"/>
</Widget>
</Widget>
<Widget type="ImageBox" skin="ImageBox" position="176 486 24 24" name="imgTrkDrivab0">
<Property key="InheritsAlpha" value="false"/>
<Property key="ImageCoord" value="640 384 128 128"/>
<Property key="Alpha" value="0.8"/>
<Property key="ImageTexture" value="gui_icons.png"/>
<UserString key="tip" value="#{TipDrivability}"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="206 492 160 22">
<Property key="Caption" value="#{TrackDrivability}"/>
<Property key="TextColour" value="0.7 0.8 0.9"/>
<Property key="Alpha" value="0.9"/>
<Property key="FontName" value="font.small"/>
<UserString key="tip" value="#{TipDrivability}"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="366 492 124 22" name="txTrkDrivab0">
<Property key="TextColour" value="0.8 0.8 0.9"/>
<Property key="Alpha" value="0.95"/>
<Property key="FontName" value="font.small"/>
<UserString key="tip" value="#{TipDrivability}"/>
</Widget>
</Widget>
<Widget type="TabItem" skin="" position="2 24 794 562" name="TabCar">
<Property key="Caption" value="#FF6050#{Vehicle}"/>
<Widget type="Button" skin="Button" position="16 7 40 24" name="CarView1">
<Property key="Caption" value="|"/>
<Property key="Alpha" value="0.7"/>
<Property key="Colour" value="0.6 0.8 1.0"/>
<Property key="TextColour" value="0.45 0.58 0.8"/>
<Property key="FontName" value="font.small"/>
<UserString key="tip" value="#{TipTrkViewShort}"/>
</Widget>
<Widget type="Button" skin="Button" position="64 7 40 24" name="CarView2">
<Property key="Caption" value="|||"/>
<Property key="Alpha" value="0.7"/>
<Property key="Colour" value="0.6 0.8 1.0"/>
<Property key="TextColour" value="0.45 0.58 0.8"/>
<Property key="FontName" value="font.small"/>
<UserString key="tip" value="#{TipTrkViewDetailed}"/>
</Widget>
<Widget type="Button" skin="Button" position="176 516 160 32" name="NewGame1">
<Property key="Caption" value="#{NewGame}"/>
<Property key="Colour" value="0.6 1.0 0.3"/>
<Property key="TextColour" value="0.3 1 0.2"/>
<UserString key="tip" value="#{TipNewGameCar}"/>
<Widget type="ImageBox" skin="ImageBox" position="2 4 24 24">
<Property key="ImageCoord" value="256 0 128 128"/>
<Property key="Alpha" value="0.7"/>
<Property key="ImageTexture" value="gui_icons.png"/>
<Property key="NeedMouse" value="false"/>
</Widget>
</Widget>
<Widget type="Widget" skin="PanelSkin" position="234 192 244 72" name="PanCarS">
<Property key="Colour" value="0.7 0.8 0.6"/>
<Property key="Alpha" value="0.0"/>
<Property key="InheritsAlpha" value="false"/>
</Widget>
<Widget type="Widget" skin="PanelSkin" position="14 292 420 154" name="PanCarStats">
<Property key="Colour" value="0.1 0.4 0.7"/>
<Property key="Alpha" value="0.15"/>
<Property key="InheritsAlpha" value="false"/>
<UserString key="tip" value="#{TipCarDesc}"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="507 44 88 42">
<Property key="Caption" value="#{CarSpeed}\n #{UnitKmh}"/>
<Property key="TextColour" value="0.4 0.6 0.8"/>
<Property key="FontName" value="font.small"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="524 134 34 18">
<Property key="Caption" value="100"/>
<Property key="TextColour" value="0.6 0.75 0.9"/>
<Property key="FontName" value="font.small"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="524 109 34 18">
<Property key="Caption" value="200"/>
<Property key="TextColour" value="0.4 0.8 0.8"/>
<Property key="FontName" value="font.small"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="524 84 34 18">
<Property key="Caption" value="300"/>
<Property key="TextColour" value="0.6 0.5 0.4"/>
<Property key="FontName" value="font.small"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="542 168 18 18">
<Property key="Caption" value="0"/>
<Property key="TextColour" value="0.65 0.78 0.9"/>
<Property key="FontName" value="font.small"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="727 170 88 22">
<Property key="Caption" value="#{Time} #{UnitS}"/>
<Property key="TextColour" value="0.65 0.78 0.9"/>
<Property key="FontName" value="font.small"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="580 168 18 18">
<Property key="Caption" value="5"/>
<Property key="TextColour" value="0.5 0.75 1.0"/>
<Property key="FontName" value="font.small"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="610 168 18 18">
<Property key="Caption" value="10"/>
<Property key="TextColour" value="0.3 0.8 0.8"/>
<Property key="FontName" value="font.small"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="674 168 18 18">
<Property key="Caption" value="20"/>
<Property key="TextColour" value="0.7 0.6 0.6"/>
<Property key="FontName" value="font.small"/>
</Widget>
<Widget type="Widget" skin="PanelSkin" position="550 60 214 109" align="Stretch">
<Property key="Colour" value="0.7 0.9 0.9"/>
<Property key="Alpha" value="1.0"/>
<Property key="InheritsAlpha" value="false"/>
<Widget type="Widget" skin="PanelEmpty" position="0 0 212 107" align="Stretch" name="VelGraph"/>
</Widget>
<Widget type="ImageBox" skin="ImageBox" position="240 296 180 11" name="cb0">
<Property key="ImageTexture" value="stats_bar.png"/>
<Property key="Alpha" value="0.7"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="16 294 200 14" name="cst0">
<Property key="TextAlign" value="Right Top"/>
<Property key="FontName" value="font.small"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="240 294 180 14" name="csv0">
<Property key="TextAlign" value="Left Top"/>
<Property key="FontName" value="font.small"/>
</Widget>
<Widget type="ImageBox" skin="ImageBox" position="240 309 180 11" name="cb1">
<Property key="ImageTexture" value="stats_bar.png"/>
<Property key="Alpha" value="0.7"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="16 308 200 14" name="cst1">
<Property key="TextAlign" value="Right Top"/>
<Property key="FontName" value="font.small"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="240 308 180 14" name="csv1">
<Property key="TextAlign" value="Left Top"/>
<Property key="FontName" value="font.small"/>
</Widget>
<Widget type="ImageBox" skin="ImageBox" position="240 329 180 11" name="cb2">
<Property key="ImageTexture" value="stats_bar.png"/>
<Property key="Alpha" value="0.7"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="16 328 200 14" name="cst2">
<Property key="TextAlign" value="Right Top"/>
<Property key="FontName" value="font.small"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="240 328 180 14" name="csv2">
<Property key="TextAlign" value="Left Top"/>
<Property key="FontName" value="font.small"/>
</Widget>
<Widget type="ImageBox" skin="ImageBox" position="240 341 180 11" name="cb3">
<Property key="ImageTexture" value="stats_bar.png"/>
<Property key="Alpha" value="0.7"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="16 340 200 14" name="cst3">
<Property key="TextAlign" value="Right Top"/>
<Property key="FontName" value="font.small"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="240 340 180 14" name="csv3">
<Property key="TextAlign" value="Left Top"/>
<Property key="FontName" value="font.small"/>
</Widget>
<Widget type="ImageBox" skin="ImageBox" position="240 353 180 11" name="cb4">
<Property key="ImageTexture" value="stats_bar.png"/>
<Property key="Alpha" value="0.8"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="16 352 200 14" name="cst4">
<Property key="TextAlign" value="Right Top"/>
<Property key="FontName" value="font.small"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="240 352 180 14" name="csv4">
<Property key="TextAlign" value="Left Top"/>
<Property key="FontName" value="font.small"/>
</Widget>
<Widget type="ImageBox" skin="ImageBox" position="240 369 180 11" name="cb5">
<Property key="ImageTexture" value="stats_bar.png"/>
<Property key="Alpha" value="0.7"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="16 368 200 14" name="cst5">
<Property key="TextAlign" value="Right Top"/>
<Property key="FontName" value="font.small"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="240 368 180 14" name="csv5">
<Property key="TextAlign" value="Left Top"/>
<Property key="FontName" value="font.small"/>
</Widget>
<Widget type="ImageBox" skin="ImageBox" position="240 389 180 11" name="cb6">
<Property key="ImageTexture" value="stats_bar.png"/>
<Property key="Alpha" value="0.8"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="16 388 200 14" name="cst6">
<Property key="TextAlign" value="Right Top"/>
<Property key="FontName" value="font.small"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="240 388 180 14" name="csv6">
<Property key="TextAlign" value="Left Top"/>
<Property key="FontName" value="font.small"/>
</Widget>
<Widget type="ImageBox" skin="ImageBox" position="240 401 180 11" name="cb7">
<Property key="ImageTexture" value="stats_bar.png"/>
<Property key="Alpha" value="0.8"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="16 400 200 14" name="cst7">
<Property key="TextAlign" value="Right Top"/>
<Property key="FontName" value="font.small"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="240 400 180 14" name="csv7">
<Property key="TextAlign" value="Left Top"/>
<Property key="FontName" value="font.small"/>
</Widget>
<Widget type="ImageBox" skin="ImageBox" position="240 413 180 11" name="cb8">
<Property key="ImageTexture" value="stats_bar.png"/>
<Property key="Alpha" value="0.8"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="16 412 200 14" name="cst8">
<Property key="TextAlign" value="Right Top"/>
<Property key="FontName" value="font.small"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="240 412 180 14" name="csv8">
<Property key="TextAlign" value="Left Top"/>
<Property key="FontName" value="font.small"/>
</Widget>
<Widget type="ImageBox" skin="ImageBox" position="240 429 180 11" name="cb9">
<Property key="ImageTexture" value="stats_bar.png"/>
<Property key="Alpha" value="0.8"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="16 428 200 14" name="cst9">
<Property key="TextAlign" value="Right Top"/>
<Property key="FontName" value="font.small"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="240 428 180 14" name="csv9">
<Property key="TextAlign" value="Left Top"/>
<Property key="FontName" value="font.small"/>
</Widget>
<Widget type="EditBox" skin="EditBoxEmpty" position="18 452 416 76" name="CarDesc">
<Property key="ReadOnly" value="true"/>
<Property key="MultiLine" value="true"/>
<Property key="WordWrap" value="true"/>
<Property key="VisibleHScroll" value="false"/>
<Property key="VisibleVScroll" value="true"/>
<Property key="TextColour" value="0.8 0.9 1.0"/>
<Property key="Colour" value="0.3 0.5 0.7"/>
<Property key="TextAlign" value="Left Top"/>
<Property key="FontName" value="font.small"/>
<UserString key="tip" value="#{TipCarDesc}"/>
</Widget>
<Widget type="Widget" skin="PanelSkin" position="14 448 420 64" name="PanCarDesc">
<Property key="Colour" value="0.5 0.6 0.7"/>
<Property key="Alpha" value="0.5"/>
<Property key="InheritsAlpha" value="false"/>
<UserString key="tip" value="#{TipCarDesc}"/>
</Widget>
<Widget type="ImageBox" skin="ImageBox" position="410 478 24 24">
<Property key="ImageCoord" value="768 768 128 128"/>
<Property key="ImageTexture" value="gui_icons.png"/>
<Property key="InheritsAlpha" value="false"/>
<Property key="Alpha" value="0.5"/>
<UserString key="tip" value="#{TipCarDesc}"/>
</Widget>
<Widget type="ImageBox" skin="ImageBox" position="448 196 328 328" name="CarImg"/>
<Widget type="TextBox" skin="TextBox" position="452 528 80 24">
<Property key="Caption" value="#{Author}"/>
<Property key="FontName" value="font.small"/>
<Property key="TextColour" value="0.45 0.55 0.65"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="532 528 250 24" name="CarAuthor">
<Property key="Caption" value="#{Author}"/>
<Property key="FontName" value="font.small"/>
<Property key="TextColour" value="0.45 0.55 0.6"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="284 62 80 22">
<Property key="Caption" value="#{CarSpeed}"/>
<Property key="TextColour" value="0.76 0.73 0.7"/>
<UserString key="tip" value="#{TipCarSpeed}"/>
</Widget>
<Widget type="ImageBox" skin="ImageBox" position="390 62 112 16" name="CarSpeedBar">
<Property key="ImageTexture" value="stats_bar.png"/>
<!--<Property key="Alpha" value="0.7"/>-->
</Widget>
<Widget type="TextBox" skin="TextBox" position="364 62 88 22" name="CarSpeed">
<Property key="TextColour" value="0.76 0.73 0.7"/>
<UserString key="tip" value="#{TipCarSpeed}"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="284 82 80 22">
<Property key="Caption" value="#{CarType}"/>
<Property key="TextColour" value="0.8 0.84 0.86"/>
<UserString key="tip" value="#{TipCarType}"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="364 82 124 22" name="CarType">
<Property key="TextColour" value="0.8 0.84 0.86"/>
<UserString key="tip" value="#{TipCarType}"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="284 102 80 22">
<Property key="Caption" value="#{CarYear}"/>
<Property key="TextColour" value="0.7 0.7 0.6"/>
<Property key="Alpha" value="0.7"/>
<Property key="FontName" value="font.small"/>
<UserString key="tip" value="#{TipCarYear}"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="364 102 124 22" name="CarYear">
<Property key="TextColour" value="0.74 0.74 0.64"/>
<Property key="FontName" value="font.small"/>
<UserString key="tip" value="#{TipCarYear}"/>
</Widget>
<Widget type="ImageBox" skin="ImageBox" position="250 122 32 32">
<Property key="ImageTexture" value="track_icons.png"/>
<Property key="ImageCoord" value="0 0 32 32"/>
<Property key="Alpha" value="0.8"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="284 132 80 22">
<Property key="Caption" value="#{Difficulty}"/>
<Property key="TextColour" value="1.0 0.7 0.4"/>
<Property key="Alpha" value="0.8"/>
<Property key="FontName" value="font.small"/>
<UserString key="tip" value="#{TipCarDifficulty}"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="364 132 124 22" name="CarDiff">
<Property key="TextColour" value="0.84 0.74 0.64"/>
<Property key="Alpha" value="0.95"/>
<Property key="FontName" value="font.small"/>
<UserString key="tip" value="#{TipCarDifficulty}"/>
</Widget>
<Widget type="ImageBox" skin="ImageBox" position="250 144 32 32">
<Property key="ImageTexture" value="track_icons.png"/>
<Property key="ImageCoord" value="32 0 32 32"/>
<Property key="Alpha" value="0.8"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="284 152 80 22">
<Property key="Caption" value="#{rating}"/>
<Property key="TextColour" value="0.6 1.0 1.0"/>
<Property key="Alpha" value="0.9"/>
<Property key="FontName" value="font.small"/>
<UserString key="tip" value="#{TipRating}"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="364 152 124 22" name="CarRating">
<Property key="TextColour" value="0.74 0.74 0.84"/>
<Property key="Alpha" value="0.95"/>
<Property key="FontName" value="font.small"/>
<UserString key="tip" value="#{TipRating}"/>
</Widget>
<Widget type="ImageBox" skin="ImageBox" position="250 172 32 20">
<Property key="InheritsAlpha" value="false"/>
<Property key="ImageCoord" value="0 40 32 20"/>
<Property key="ImageTexture" value="track_icons.png"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="284 172 80 22">
<Property key="Caption" value="#{Road_Width}"/>
<Property key="TextColour" value="0.5 1.0 0.8"/>
<Property key="Alpha" value="0.9"/>
<Property key="FontName" value="font.small"/>
<UserString key="tip" value="#{TipCarWidth}"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="364 172 124 22" name="CarWidth">
<Property key="TextColour" value="0.54 0.7 0.84"/>
<Property key="Alpha" value="0.95"/>
<Property key="FontName" value="font.small"/>
<UserString key="tip" value="#{TipCarWidth}"/>
</Widget>
<Widget type="ImageBox" skin="ImageBox" position="256 196 24 24" name="imgTrkDrivab1">
<Property key="InheritsAlpha" value="false"/>
<Property key="ImageCoord" value="640 384 128 128"/>
<Property key="Alpha" value="0.8"/>
<Property key="ImageTexture" value="gui_icons.png"/>
<UserString key="tip" value="#{TipDrivability}"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="284 202 160 22">
<Property key="Caption" value="#{TrackDrivability}"/>
<Property key="TextColour" value="0.7 0.8 0.9"/>
<Property key="Alpha" value="0.9"/>
<Property key="FontName" value="font.small"/>
<UserString key="tip" value="#{TipDrivability}"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="284 224 124 22" name="txTrkDrivab1">
<Property key="TextColour" value="0.8 0.8 0.9"/>
<Property key="Alpha" value="0.95"/>
<Property key="FontName" value="font.small"/>
<UserString key="tip" value="#{TipDrivability}"/>
</Widget>
<Widget type="TabControl" skin="TabControl" position="256 16 488 20" name="SubTabPlayer">
<Property key="SmoothShow" value="false"/>
<Widget type="TabItem" skin="" position="2 24 542 -8">
<Property key="Caption" value="#A0D0FF#{Player} 1"/>
</Widget>
<Widget type="TabItem" skin="" position="2 24 542 -8">
<Property key="Caption" value="#A0F0A0#{Player} 2"/>
</Widget>
<Widget type="TabItem" skin="" position="2 24 542 -8">
<Property key="Caption" value="#A0A060#{Player} 3"/>
</Widget>
<Widget type="TabItem" skin="" position="2 24 542 -8">
<Property key="Caption" value="#D06060 4"/>
</Widget>
<Widget type="TabItem" skin="" position="2 24 542 -8">
<Property key="Caption" value="#904040 5"/>
</Widget>
<Widget type="TabItem" skin="" position="2 24 542 -8">
<Property key="Caption" value="#704070 6"/>
</Widget>
<Widget type="TabItem" skin="" position="2 24 542 -8">
<Property key="Caption" value=""/>
</Widget>
<Widget type="TabItem" skin="" position="2 24 542 -8">
<Property key="Caption" value=""/>
</Widget>
</Widget>
</Widget>
<Widget type="TabItem" skin="" position="2 24 794 562">
<Property key="Caption" value="#D0D0A0#{Setup}"/>
<Widget type="TabControl" skin="TabControl" position="16 16 752 504" align="Default" layer="Back" name="SubTab">
<Property key="InheritsAlpha" value="false"/>
<Property key="Colour" value="0.75 0.83 0.9"/>
<Property key="SmoothShow" value="false"/>
<Widget type="TabItem" skin="" position="2 24 574 112" name="PlrPaints">
<Property key="Caption" value="#90C0FF#{Paint}"/>
<Widget type="TabControl" skin="TabControl" position="336 16 390 20" name="SubTabPlayer2">
<Property key="SmoothShow" value="false"/>
<Widget type="TabItem" skin="" position="2 24 542 -8">
<Property key="Caption" value="#A0D0FF#{Player} 1"/>
</Widget>
<Widget type="TabItem" skin="" position="2 24 542 -8">
<Property key="Caption" value="#A0F0A0#{Player} 2"/>
</Widget>
<Widget type="TabItem" skin="" position="2 24 542 -8">
<Property key="Caption" value="#A0A060#{Player} 3"/>
</Widget>
<Widget type="TabItem" skin="" position="2 24 542 -8">
<Property key="Caption" value="#D06060 4"/>
</Widget>
<Widget type="TabItem" skin="" position="2 24 542 -8">
<Property key="Caption" value="#B04040 5"/>
</Widget>
<Widget type="TabItem" skin="" position="2 24 542 -8">
<Property key="Caption" value="#804080 6"/>
</Widget>
<Widget type="TabItem" skin="" position="2 24 542 -8">
<Property key="Caption" value="#FFC020#{Ghost}"/>
</Widget>
<Widget type="TabItem" skin="" position="2 24 542 -8">
<Property key="Caption" value="#80FF80#{Track}"/>
</Widget>
</Widget>
<!-- Adjust -->
<Widget type="ImageBox" skin="ImageBox" position="10 12 20 20" layer="Back">
<Property key="ImageTexture" value="gui_icons.png"/>
<Property key="ImageCoord" value="0 896 128 128"/>
<Property key="Alpha" value="0.6"/>
<Property key="NeedMouse" value="false"/>
</Widget>
<Widget type="Button" skin="CheckBox" position="40 16 88 22" name="chkPaintAdj">
<Property key="Caption" value="#80E0F0#{Adjust}"/>
<Property key="TextColour" value="0.4 0.6 0.9"/>
</Widget>
<!-- clr img rgb -->
<Widget type="ImageBox" skin="ImageBox" position="680 40 52 52" name="ImgPaint">
<Property key="ImageTexture" value="white.png"/>
</Widget>
<Widget type="Widget" skin="PanelEmpty" position="0 55 750 420" align="Stretch" name="panPaintAdj">
<Widget type="ImageBox" skin="ImageBox" position="202 400 20 20">
<Property key="ImageTexture" value="track_icons.png"/>
<Property key="ImageCoord" value="352 32 32 32"/>
<Property key="Alpha" value="0.6"/>
</Widget>
<Widget type="Button" skin="CheckBox" position="232 400 240 24" name="chkPaintNewLine">
<Property key="Caption" value="#{NewLine}"/>
<Property key="TextColour" value="0.6 0.7 0.8"/>
</Widget>
<!-- Del Add manage buttons -->
<Widget type="Button" skin="Button" position="12 328 156 24" name="PaintDel">
<Property key="Caption" value="#{Delete}"/>
<Property key="Colour" value="1.0 0.6 0.6"/>
<Property key="TextColour" value="1.0 0.6 0.6"/>
<Widget type="ImageBox" skin="ImageBox" position="0 0 24 24">
<Property key="ImageCoord" value="256 384 128 128"/>
<Property key="Alpha" value="0.5"/>
<Property key="ImageTexture" value="gui_icons.png"/>
<Property key="NeedMouse" value="false"/>
</Widget>
</Widget>
<Widget type="Button" skin="Button" position="202 328 156 24" name="PaintAdd">
<Property key="Caption" value="#{Add}"/>
<Property key="Colour" value="0.6 1.0 0.6"/>
<Property key="TextColour" value="0.6 1.0 0.6"/>
<Property key="InheritsAlpha" value="false"/>
<Widget type="ImageBox" skin="ImageBox" position="0 0 24 24">
<Property key="ImageCoord" value="256 256 128 128"/>
<Property key="Alpha" value="0.7"/>
<Property key="ImageTexture" value="gui_icons.png"/>
<Property key="NeedMouse" value="false"/>
</Widget>
</Widget>
<!-- Load Save -->
<Widget type="Button" skin="Button" position="12 362 156 24" name="PaintLoad">
<Property key="Caption" value="#{RplLoad}"/>
<Property key="Colour" value="0.8 0.7 1.0"/>
<Property key="TextColour" value="0.7 0.7 1.0"/>
<Widget type="ImageBox" skin="ImageBox" position="0 0 24 24">
<Property key="ImageCoord" value="512 384 128 128"/>
<Property key="Alpha" value="0.7"/>
<Property key="ImageTexture" value="gui_icons.png"/>
<Property key="NeedMouse" value="false"/>