-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathVKAP.Main.dfm
4007 lines (4007 loc) · 217 KB
/
VKAP.Main.dfm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
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
object FormMain: TFormMain
Left = 0
Top = 0
Caption = 'VK Audio Player'
ClientHeight = 491
ClientWidth = 618
Color = clWhite
Constraints.MinHeight = 460
Constraints.MinWidth = 630
DoubleBuffered = True
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Segoe UI'
Font.Style = []
Position = poScreenCenter
ShowHint = True
OnCloseQuery = FormCloseQuery
OnCreate = FormCreate
OnDestroy = FormDestroy
OnResize = FormResize
OnShow = FormShow
TextHeight = 17
object Shape1: TShape
Left = 0
Top = 56
Width = 618
Height = 1
Align = alTop
Brush.Color = 15395049
Pen.Color = 15395049
ExplicitLeft = -8
ExplicitTop = 80
ExplicitWidth = 716
end
object PanelPlayer: TPanel
Left = 0
Top = 0
Width = 618
Height = 56
Align = alTop
BevelOuter = bvNone
Color = 16579578
ParentBackground = False
TabOrder = 0
StyleElements = []
object ImageAlbum: TImage
AlignWithMargins = True
Left = 100
Top = 8
Width = 40
Height = 40
Margins.Left = 8
Margins.Top = 8
Margins.Right = 4
Margins.Bottom = 8
Align = alLeft
Picture.Data = {
0954506E67496D61676589504E470D0A1A0A0000000D49484452000000280000
00280802000000039C2F3A000000017352474200AECE1CE90000000467414D41
0000B18F0BFC6105000000097048597300000EC300000EC301C76FA864000001
0A4944415478DA637CF9F6130318303232FEFFFF9F819600D90A46B8C5740623
CC6260988F301F8F5A3C942CFEF19BE1D987EF4F5E7FF9F4EDD78B0F3F816491
9F066D2DBEFFFAC7DE8BCF5E7EFC89265E1DAC495B8BFB36DDF8FE1B4B114B73
8B5BD75EC72A3E022CE664659410E010E6E712E2629213E5151760A787C5B91E
CA7CDC6C6468A7D462220376D4E2518B472D1E4C16032BA58FDF7E02EBC18B0F
3FD1C36260BDBBE7E2538865C880E6166F3983C5567A588CB52E12E7674F7151
A2ADC593B7DF05366BD004F5E5F97C4CA4696BF1CE8BAFCEDC798B2C02AC0D53
9C95C8AB9A48B01892B86E3DFB0C6CEE0043585694C75245806C5B49B098EA60
D4E2518B472D1EFA160300B5E2ED6C3B3604E00000000049454E44AE426082}
Proportional = True
Stretch = True
end
object ButtonFlatPlayPause: TButtonFlat
Left = 0
Top = 0
Width = 54
Height = 56
Align = alLeft
Caption = ''
ColorNormal = 14668740
ColorOver = 11373924
ColorPressed = 10451273
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Tahoma'
Font.Style = []
FontOver.Charset = DEFAULT_CHARSET
FontOver.Color = clWindowText
FontOver.Height = -13
FontOver.Name = 'Tahoma'
FontOver.Style = []
FontDown.Charset = DEFAULT_CHARSET
FontDown.Color = clWindowText
FontDown.Height = -13
FontDown.Name = 'Tahoma'
FontDown.Style = []
IgnorBounds = True
ImageIndentLeft = 18
ImageIndex = 0
Images = ImageList
ImagesOver = ImageListL
Transparent = True
OnClick = ButtonFlatPlayPauseClick
RoundRectParam = 0
ShowFocusRect = False
TabOrder = 0
TabStop = True
TextFormat = [tfCenter, tfSingleLine, tfVerticalCenter]
SubTextFont.Charset = DEFAULT_CHARSET
SubTextFont.Color = clWhite
SubTextFont.Height = -13
SubTextFont.Name = 'Tahoma'
SubTextFont.Style = []
end
object ButtonFlatNext: TButtonFlat
Left = 73
Top = 0
Width = 19
Height = 56
Align = alLeft
Caption = ''
ColorNormal = 14668740
ColorOver = 11373924
ColorPressed = 10451273
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Tahoma'
Font.Style = []
FontOver.Charset = DEFAULT_CHARSET
FontOver.Color = clWindowText
FontOver.Height = -13
FontOver.Name = 'Tahoma'
FontOver.Style = []
FontDown.Charset = DEFAULT_CHARSET
FontDown.Color = clWindowText
FontDown.Height = -13
FontDown.Name = 'Tahoma'
FontDown.Style = []
IgnorBounds = True
ImageIndentLeft = -6
ImageIndex = 1
Images = ImageList
ImagesOver = ImageListL
Transparent = True
OnClick = ButtonFlatNextClick
RoundRectParam = 0
ShowFocusRect = False
TabOrder = 1
TabStop = True
TextFormat = [tfCenter, tfSingleLine, tfVerticalCenter]
SubTextFont.Charset = DEFAULT_CHARSET
SubTextFont.Color = clWhite
SubTextFont.Height = -13
SubTextFont.Name = 'Tahoma'
SubTextFont.Style = []
end
object ButtonFlatPrev: TButtonFlat
Left = 54
Top = 0
Width = 19
Height = 56
Align = alLeft
Caption = ''
ColorNormal = 14668740
ColorOver = 11373924
ColorPressed = 10451273
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Tahoma'
Font.Style = []
FontOver.Charset = DEFAULT_CHARSET
FontOver.Color = clWindowText
FontOver.Height = -13
FontOver.Name = 'Tahoma'
FontOver.Style = []
FontDown.Charset = DEFAULT_CHARSET
FontDown.Color = clWindowText
FontDown.Height = -13
FontDown.Name = 'Tahoma'
FontDown.Style = []
IgnorBounds = True
ImageIndentLeft = -6
ImageIndex = 2
Images = ImageList
ImagesOver = ImageListL
Transparent = True
OnClick = ButtonFlatPrevClick
RoundRectParam = 0
ShowFocusRect = False
TabOrder = 2
TabStop = True
TextFormat = [tfCenter, tfSingleLine, tfVerticalCenter]
SubTextFont.Charset = DEFAULT_CHARSET
SubTextFont.Color = clWhite
SubTextFont.Height = -13
SubTextFont.Name = 'Tahoma'
SubTextFont.Style = []
end
object ButtonFlatDownload: TButtonFlat
Left = 522
Top = 0
Width = 40
Height = 56
Hint = #1057#1086#1093#1088#1072#1085#1080#1090#1100' '#1085#1072' '#1076#1080#1089#1082'...'
Align = alRight
Caption = ''
ColorNormal = 14668740
ColorOver = 11373924
ColorPressed = 10451273
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Tahoma'
Font.Style = []
FontOver.Charset = DEFAULT_CHARSET
FontOver.Color = clWindowText
FontOver.Height = -13
FontOver.Name = 'Tahoma'
FontOver.Style = []
FontDown.Charset = DEFAULT_CHARSET
FontDown.Color = clWindowText
FontDown.Height = -13
FontDown.Name = 'Tahoma'
FontDown.Style = []
IgnorBounds = True
ImageIndentLeft = 4
ImageIndex = 3
Images = ImageList
ImagesOver = ImageListL
Transparent = True
OnClick = ButtonFlatDownloadClick
RoundRectParam = 0
ShowFocusRect = False
TabOrder = 3
TabStop = True
TextFormat = [tfCenter, tfSingleLine, tfVerticalCenter]
SubTextFont.Charset = DEFAULT_CHARSET
SubTextFont.Color = clWhite
SubTextFont.Height = -13
SubTextFont.Name = 'Tahoma'
SubTextFont.Style = []
end
object PanelTrackInfo: TPanel
AlignWithMargins = True
Left = 144
Top = 3
Width = 228
Height = 50
Margins.Left = 0
Align = alClient
BevelOuter = bvNone
ParentBackground = False
ParentColor = True
TabOrder = 4
object PanelTrackSinger: TPanel
AlignWithMargins = True
Left = 2
Top = 0
Width = 178
Height = 36
Margins.Left = 2
Margins.Top = 0
Margins.Right = 0
Margins.Bottom = 0
Align = alClient
BevelOuter = bvNone
Ctl3D = False
ParentColor = True
ParentCtl3D = False
TabOrder = 0
object LabelTitle: TLabel
AlignWithMargins = True
Left = 5
Top = 0
Width = 168
Height = 17
Margins.Left = 5
Margins.Top = 0
Margins.Right = 5
Margins.Bottom = 0
Align = alTop
AutoSize = False
Caption = #1053#1072#1079#1074#1072#1085#1080#1077
EllipsisPosition = epEndEllipsis
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Segoe UI Semibold'
Font.Style = []
ParentFont = False
StyleElements = [seClient, seBorder]
ExplicitLeft = 21
ExplicitTop = 11
ExplicitWidth = 244
end
object LabelArtist: TLabel
AlignWithMargins = True
Left = 5
Top = 17
Width = 168
Height = 17
Margins.Left = 5
Margins.Top = 0
Margins.Right = 5
Margins.Bottom = 0
Align = alTop
AutoSize = False
Caption = #1040#1088#1090#1080#1089#1090
EllipsisPosition = epEndEllipsis
Font.Charset = DEFAULT_CHARSET
Font.Color = 10658209
Font.Height = -13
Font.Name = 'Segoe UI Semibold'
Font.Style = []
ParentFont = False
StyleElements = [seClient, seBorder]
ExplicitTop = 15
ExplicitWidth = 244
end
end
object PanelTrackTime: TPanel
Left = 180
Top = 0
Width = 48
Height = 36
Align = alRight
BevelOuter = bvNone
TabOrder = 1
object LabelTime: TLabel
AlignWithMargins = True
Left = 3
Top = 6
Width = 42
Height = 24
Margins.Top = 6
Margins.Bottom = 6
Align = alClient
Alignment = taCenter
Caption = '3:22'
Font.Charset = DEFAULT_CHARSET
Font.Color = 10658209
Font.Height = -12
Font.Name = 'Segoe UI Semibold'
Font.Style = []
ParentFont = False
Layout = tlCenter
OnClick = LabelTimeClick
ExplicitWidth = 24
ExplicitHeight = 15
end
end
object TrackbarPosition: ThTrackbar
Left = 0
Top = 36
Width = 228
Height = 14
Align = alBottom
OnChange = TrackbarPositionChange
OnAdvHint = TrackbarPositionAdvHint
OnMouseLeave = TrackbarPositionMouseLeave
Color = 16579578
ParentColor = False
MarginScaleSide = 4
MarginScaleUpdown = 2
HotZoom = False
end
end
object ButtonFlatShuffle: TButtonFlat
Left = 452
Top = 0
Width = 35
Height = 56
Hint = #1055#1077#1088#1077#1084#1077#1096#1072#1090#1100
Align = alRight
Caption = ''
ColorNormal = 14668740
ColorOver = 11373924
ColorPressed = 10451273
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Tahoma'
Font.Style = []
FontOver.Charset = DEFAULT_CHARSET
FontOver.Color = clWindowText
FontOver.Height = -13
FontOver.Name = 'Tahoma'
FontOver.Style = []
FontDown.Charset = DEFAULT_CHARSET
FontDown.Color = clWindowText
FontDown.Height = -13
FontDown.Name = 'Tahoma'
FontDown.Style = []
IgnorBounds = True
ImageIndentLeft = 1
ImageIndex = 8
Images = ImageList
ImagesOver = ImageListL
Transparent = True
OnClick = ButtonFlatShuffleClick
RoundRectParam = 0
ShowFocusRect = False
TabOrder = 5
TabStop = True
TextFormat = [tfCenter, tfSingleLine, tfVerticalCenter]
SubTextFont.Charset = DEFAULT_CHARSET
SubTextFont.Color = clWhite
SubTextFont.Height = -13
SubTextFont.Name = 'Tahoma'
SubTextFont.Style = []
end
object ButtonFlatRepeat: TButtonFlat
Left = 487
Top = 0
Width = 35
Height = 56
Hint = #1055#1086#1074#1090#1086#1088#1103#1090#1100
Align = alRight
Caption = ''
ColorNormal = 14668740
ColorOver = 11373924
ColorPressed = 10451273
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Tahoma'
Font.Style = []
FontOver.Charset = DEFAULT_CHARSET
FontOver.Color = clWindowText
FontOver.Height = -13
FontOver.Name = 'Tahoma'
FontOver.Style = []
FontDown.Charset = DEFAULT_CHARSET
FontDown.Color = clWindowText
FontDown.Height = -13
FontDown.Name = 'Tahoma'
FontDown.Style = []
IgnorBounds = True
ImageIndentLeft = 1
ImageIndex = 6
Images = ImageList
ImagesOver = ImageListL
Transparent = True
OnClick = ButtonFlatRepeatClick
RoundRectParam = 0
ShowFocusRect = False
TabOrder = 6
TabStop = True
TextFormat = [tfCenter, tfSingleLine, tfVerticalCenter]
SubTextFont.Charset = DEFAULT_CHARSET
SubTextFont.Color = clWhite
SubTextFont.Height = -13
SubTextFont.Name = 'Tahoma'
SubTextFont.Style = []
end
object PanelUser: TPanel
Left = 562
Top = 0
Width = 56
Height = 56
Align = alRight
BevelOuter = bvNone
ParentBackground = False
ParentColor = True
TabOrder = 7
object ImageAvatar: TImage
AlignWithMargins = True
Left = 8
Top = 8
Width = 40
Height = 40
Margins.Left = 8
Margins.Top = 8
Margins.Right = 8
Margins.Bottom = 8
Align = alRight
Picture.Data = {
0954506E67496D61676589504E470D0A1A0A0000000D49484452000000280000
002808060000008CFEB86D000000097048597300000B1300000B1301009A9C18
00000A4F6943435050686F746F73686F70204943432070726F66696C65000078
DA9D53675453E9163DF7DEF4424B8880944B6F5215082052428B801491262A21
09104A8821A1D91551C1114545041BC8A088038E8E808C15512C0C8A0AD807E4
21A28E83A3888ACAFBE17BA36BD6BCF7E6CDFEB5D73EE7ACF39DB3CF07C0080C
9648335135800CA9421E11E083C7C4C6E1E42E40810A2470001008B3642173FD
230100F87E3C3C2B22C007BE000178D30B0800C04D9BC0301C87FF0FEA42995C
01808401C07491384B08801400407A8E42A600404601809D98265300A0040060
CB6362E300502D0060277FE6D300809DF8997B01005B94211501A09100201365
884400683B00ACCF568A450058300014664BC43900D82D00304957664800B0B7
00C0CE100BB200080C00305188852900047B0060C8232378008499001446F257
3CF12BAE10E72A00007899B23CB9243945815B082D710757572E1E28CE49172B
14366102619A402EC27999193281340FE0F3CC0000A0911511E083F3FD78CE0E
AECECE368EB60E5F2DEABF06FF226262E3FEE5CFAB70400000E1747ED1FE2C2F
B31A803B06806DFEA225EE04685E0BA075F78B66B20F40B500A0E9DA57F370F8
7E3C3C45A190B9D9D9E5E4E4D84AC4425B61CA577DFE67C25FC057FD6CF97E3C
FCF7F5E0BEE22481325D814704F8E0C2CCF44CA51CCF92098462DCE68F47FCB7
0BFFFC1DD322C44962B9582A14E35112718E449A8CF332A52289429229C525D2
FF64E2DF2CFB033EDF3500B06A3E017B912DA85D6303F64B27105874C0E2F700
00F2BB6FC1D4280803806883E1CF77FFEF3FFD47A02500806649927100005E44
242E54CAB33FC708000044A0812AB0411BF4C1182CC0061CC105DCC10BFC6036
844224C4C24210420A64801C726029AC82422886CDB01D2A602FD4401D34C051
688693700E2EC255B80E3D700FFA61089EC128BC81090441C808136121DA8801
628A58238E08179985F821C14804128B2420C9881451224B91354831528A5420
55481DF23D720239875C46BA913BC8003282FC86BC47319481B2513DD40CB543
B9A8371A8446A20BD06474319A8F16A09BD072B41A3D8C36A1E7D0AB680FDA8F
3E43C730C0E8180733C46C302EC6C342B1382C099363CBB122AC0CABC61AB056
AC03BB89F563CFB17704128145C0093604774220611E4148584C584ED848A820
1C243411DA093709038451C2272293A84BB426BA11F9C4186232318758482C23
D6128F132F107B8843C437241289433227B9900249B1A454D212D246D26E5223
E92CA99B34481A2393C9DA646BB20739942C202BC885E49DE4C3E433E41BE421
F25B0A9D624071A4F853E22852CA6A4A19E510E534E5066598324155A39A52DD
A8A15411358F5A42ADA1B652AF5187A81334759A39CD8316494BA5ADA295D31A
681768F769AFE874BA11DD951E4E97D057D2CBE947E897E803F4770C0D861583
C7886728199B18071867197718AF984CA619D38B19C754303731EB98E7990F99
6F55582AB62A7C1591CA0A954A9526951B2A2F54A9AAA6AADEAA0B55F355CB54
8FA95E537DAE46553353E3A909D496AB55AA9D50EB531B5367A93BA887AA67A8
6F543FA47E59FD890659C34CC34F43A451A0B15FE3BCC6200B6319B3782C216B
0DAB86758135C426B1CDD97C762ABB98FD1DBB8B3DAAA9A13943334A3357B352
F394663F07E39871F89C744E09E728A797F37E8ADE14EF29E2291BA6344CB931
655C6BAA96979658AB48AB51AB47EBBD36AEEDA79DA6BD45BB59FB810E41C74A
275C2747678FCE059DE753D953DDA70AA7164D3D3AF5AE2EAA6BA51BA1BB4477
BF6EA7EE989EBE5E809E4C6FA7DE79BDE7FA1C7D2FFD54FD6DFAA7F5470C5806
B30C2406DB0CCE183CC535716F3C1D2FC7DBF151435DC34043A561956197E184
91B9D13CA3D5468D460F8C69C65CE324E36DC66DC6A326062621264B4DEA4DEE
9A524DB9A629A63B4C3B4CC7CDCCCDA2CDD699359B3D31D732E79BE79BD79BDF
B7605A785A2CB6A8B6B86549B2E45AA659EEB6BC6E855A3959A558555A5DB346
AD9DAD25D6BBADBBA711A7B94E934EAB9ED667C3B0F1B6C9B6A9B719B0E5D806
DBAEB66DB67D6167621767B7C5AEC3EE93BD937DBA7D8DFD3D070D87D90EAB1D
5A1D7E73B472143A563ADE9ACE9CEE3F7DC5F496E92F6758CF10CFD833E3B613
CB29C4699D539BD347671767B97383F3888B894B82CB2E973E2E9B1BC6DDC8BD
E44A74F5715DE17AD2F59D9BB39BC2EDA8DBAFEE36EE69EE87DC9FCC349F299E
593373D0C3C843E051E5D13F0B9F95306BDFAC7E4F434F8167B5E7232F632F91
57ADD7B0B7A577AAF761EF173EF63E729FE33EE33C37DE32DE595FCC37C0B7C8
B7CB4FC36F9E5F85DF437F23FF64FF7AFFD100A78025016703898141815B02FB
F87A7C21BF8E3F3ADB65F6B2D9ED418CA0B94115418F82AD82E5C1AD2168C8EC
90AD21F7E798CE91CE690E85507EE8D6D00761E6618BC37E0C2785878557863F
8E7088581AD131973577D1DC4373DF44FA449644DE9B67314F39AF2D4A352A3E
AA2E6A3CDA37BA34BA3FC62E6659CCD5589D58496C4B1C392E2AAE366E6CBEDF
FCEDF387E29DE20BE37B17982FC85D7079A1CEC2F485A716A92E122C3A96404C
884E3894F041102AA8168C25F21377258E0A79C21DC267222FD136D188D8435C
2A1E4EF2482A4D7A92EC91BC357924C533A52CE5B98427A990BC4C0D4CDD9B3A
9E169A76206D323D3ABD31839291907142AA214D93B667EA67E66676CBAC6585
B2FEC56E8BB72F1E9507C96BB390AC05592D0AB642A6E8545A28D72A07B26765
5766BFCD89CA3996AB9E2BCDEDCCB3CADB90379CEF9FFFED12C212E192B6A586
4B572D1D58E6BDAC6A39B23C7179DB0AE315052B865606AC3CB88AB62A6DD54F
ABED5797AE7EBD267A4D6B815EC1CA82C1B5016BEB0B550AE5857DEBDCD7ED5D
4F582F59DFB561FA869D1B3E15898AAE14DB1797157FD828DC78E51B876FCABF
99DC94B4A9ABC4B964CF66D266E9E6DE2D9E5B0E96AA97E6970E6E0DD9DAB40D
DF56B4EDF5F645DB2F97CD28DBBB83B643B9A3BF3CB8BC65A7C9CECD3B3F54A4
54F454FA5436EED2DDB561D7F86ED1EE1B7BBCF634ECD5DB5BBCF7FD3EC9BEDB
5501554DD566D565FB49FBB3F73FAE89AAE9F896FB6D5DAD4E6D71EDC703D203
FD07230EB6D7B9D4D51DD23D54528FD62BEB470EC71FBEFE9DEF772D0D360D55
8D9CC6E223704479E4E9F709DFF71E0D3ADA768C7BACE107D31F761D671D2F6A
429AF29A469B539AFB5B625BBA4FCC3ED1D6EADE7AFC47DB1F0F9C343C59794A
F354C969DAE982D39367F2CF8C9D959D7D7E2EF9DC60DBA2B67BE763CEDF6A0F
6FEFBA1074E1D245FF8BE73BBC3BCE5CF2B874F2B2DBE51357B8579AAF3A5F6D
EA74EA3CFE93D34FC7BB9CBB9AAEB95C6BB9EE7ABDB57B66F7E91B9E37CEDDF4
BD79F116FFD6D59E393DDDBDF37A6FF7C5F7F5DF16DD7E7227FDCECBBBD97727
EEADBC4FBC5FF440ED41D943DD87D53F5BFEDCD8EFDC7F6AC077A0F3D1DC47F7
068583CFFE91F58F0F43058F998FCB860D86EB9E383E3939E23F72FDE9FCA743
CF64CF269E17FEA2FECBAE17162F7EF8D5EBD7CED198D1A197F29793BF6D7CA5
FDEAC0EB19AFDBC6C2C61EBEC97833315EF456FBEDC177DC771DEFA3DF0F4FE4
7C207F28FF68F9B1F553D0A7FB93199393FF040398F3FC63332DDB000004D149
44415478DACD98EB72DA4614C7FF5C0D36C6863A38AE1D1B5F9A4973A99B6967
927E2A7D82E60DEABE41F204A54F90F609EA3C419C2728FD9664D299D4719AE9
A43638A9496D2780C1E00B42F49C452242AC402298E9617624B4D2EAA773DBB3
EBAAD7EBF83F8BAB57C057FFE6BEA5C3756A5F538B6B4D9702B5A786B6367B3E
7A70E6800435478724B55BD4C61DBE6B8DDA4F04FA5BDF01096C8C07A7B6D28B
164C92A2769B40FFE80BA066CAD51E34D64D7E24C8E40701121C0FF0439FC18C
C2665FE9E49F968004F70BFA63D26EC24194B08294020E4073664911E037B600
359F5B1B209C2E1CE1773A026AD19A41FF03C2AE24CC69C80CE8C8EFDC6E175C
2E6A746E7614FD1A8FAFAAB6736D8600E7A5805A12CED805AB2A3564F7F2D8CB
17A1D2182ED33D3CAA9BE06391303E8E45E0F37AEC827254DF93015A6A8F813C
6E775337B55A0D7FA6770460535D32D17818F0F2FC343C1E4FF3624D55AD805B
B46804E4B7B5F91E9BF0F8E414F9625998CB45A0C5C323BCD9CFD3ABEAA2BF93
8867E837752E827028883A81F13391F00802437E58A4B9CFF59946005A452E0F
745AADE2F9E63FD8CB95F86EF132369DD7E74567B456452A5545B802FF5027D3
4747716571067E9F4F06D98C681D300949DE73B3B6CA153C5CFF1B5E328FAE2C
A3D6F4C1F95EFD9CFB55D214DBDEA860BD9F0F0AB9C9CDCF96101E19D6EE6D91
665ED4017FA5F38414F0B082471B9B04E8969A93B53249814003C2AFF9D889A2
E2D56E0EFBF912641EC0EF546A2A6E5C5D24B34B01793C9711308DD67AAE4583
8F9E6D8A286C8323275F989EC0EC6414A5CA310ECB27226046870318090E09C8
74F6AD0832B37016B8716DD14A832C7182DCD601A59EDA099035373116C2158A
CE77C512365FEFA17C7C2AFA42C343589A89617C34848DAD1D0AB0C336EDDB00
1449BB6740F6A1E58B73180D06B0FE721B058A6CFD9EAAA2608C4CB7FCC91C0E
C8453628C83C1EF76001F9055F5D5B12267DB8FE125EAFB7ED036E523F6BFA31
3DEF953CEF04509A03BB01B293B3661E5310B544B676E47E85EEE320F3390714
B9B07B145B00F24CB0381DC3ECD4045EA4B3C852E27E6FE21A2E4C7E848BF1F3
D8DED9C75676DF3013D9033447F15D3ABFED04909FF3515AF9F2F28230DFD6CE
2E76DF15455A8945C7B130738E92BC8227CFD3F43135A741F29400AF1B01BF43
63DDE10890D34C3814C0258AE410058B5B8360BF2B558EF01769B6583E6E563D
0E005709F07B2320D7810527803A648D20FDD437191D43682420AE97086A3757
20FF53A57036006F11E08326200B41DE4763BD6B007411E09125A02EFC029E19
547DDAE3B99ACC2F4BD0ED804173555320B888FEC708C83B04293360E5E814BF
BF48E3848A0699269AC5AA79C2B7286475CD0F5191F0C5A7F3180EFACD802DCB
517345DD16CD0CF5F6A088D76F72A20E4427C82ED7343A51175E988AD24C1436
5732EC6671E30ACF0CB88CC632B045DE17AC760BAC6E52B72A5879C7E1E7960F
95ACEA58BD835C72EA225D7A5AAD8BDB02E68C2583C6CCD1B678B702E4B493E2
870600C77E97B0DA4CEAB4F5C190BC0C489C215C068D9C67B9D36567774B3A0D
F641521A5CC78D4DBBFB839C235721A9BA7B103669D21CAD1F046800E5393BD9
23288331D45D27DBC13DED516BF972058D204A74B8D5B847FDA0878FEA7D13DD
04CCDB2671A3B6EC6EF10E04F02CE53F801D14DE1749987D0000000049454E44
AE426082}
Proportional = True
Stretch = True
OnClick = ImageAvatarClick
ExplicitLeft = 11
ExplicitTop = 6
end
end
object PanelVolume: TPanel
Left = 375
Top = 0
Width = 77
Height = 56
Align = alRight
BevelOuter = bvNone
ParentBackground = False
ParentColor = True
TabOrder = 8
object TrackbarVolume: ThTrackbar
AlignWithMargins = True
Left = 3
Top = 21
Width = 71
Height = 14
Margins.Top = 21
Margins.Bottom = 21
Align = alClient
OnChange = TrackbarVolumeChange
OnAdvHint = TrackbarVolumeAdvHint
OnMouseLeave = TrackbarVolumeMouseLeave
Color = 16579578
ParentColor = False
HotScroll = True
MarginScaleSide = 4
MarginScaleUpdown = 2
HotZoom = False
end
end
end
object PanelPlaylist: TPanel
AlignWithMargins = True
Left = 20
Top = 57
Width = 598
Height = 434
Margins.Left = 20
Margins.Top = 0
Margins.Right = 0
Margins.Bottom = 0
Align = alClient
BevelOuter = bvNone
ParentBackground = False
ParentColor = True
TabOrder = 1
object PanelInfoBottom: TPanel
AlignWithMargins = True
Left = 0
Top = 399
Width = 578
Height = 35
Margins.Left = 0
Margins.Top = 0
Margins.Right = 20
Margins.Bottom = 0
Align = alBottom
BevelOuter = bvNone
ParentBackground = False
ParentColor = True
TabOrder = 0
object LabelAudioCount: TLabel
AlignWithMargins = True
Left = 15
Top = 4
Width = 9
Height = 28
Margins.Left = 15
Align = alLeft
Caption = '...'
Font.Charset = DEFAULT_CHARSET
Font.Color = 10658466
Font.Height = -13
Font.Name = 'Segoe UI'
Font.Style = []
ParentFont = False
Layout = tlCenter
ExplicitHeight = 17
end
object Shape2: TShape
Left = 0
Top = 0
Width = 578
Height = 1
Align = alTop
Brush.Color = 15460326
Pen.Color = 15460326
ExplicitTop = 64
ExplicitWidth = 716
end
end
object PanelNav: TPanel
AlignWithMargins = True
Left = 0
Top = 0
Width = 578
Height = 111
Margins.Left = 0
Margins.Top = 0
Margins.Right = 20
Margins.Bottom = 0
Align = alTop
BevelOuter = bvNone
ParentBackground = False
ParentColor = True
TabOrder = 1
object Shape3: TShape
Left = 0
Top = 110
Width = 578
Height = 1
Align = alBottom
Brush.Color = 15460326
Pen.Color = 15460326
ExplicitTop = 108
ExplicitWidth = 651
end
object PanelPageControl: TPanel
Left = 0
Top = 65
Width = 578
Height = 45
Align = alBottom
BevelOuter = bvNone
TabOrder = 0
object PanelPageInd: TPanel
Left = 0
Top = 43
Width = 578
Height = 2
Align = alBottom
BevelOuter = bvNone
TabOrder = 0
object ShapeHotButton: TShape
Left = 0
Top = 0
Width = 122
Height = 2
Brush.Color = 14406346
Pen.Color = 14406346
Visible = False
end
object ShapeActivePage: TShape
Left = 0
Top = 0
Width = 122
Height = 2
Brush.Color = 12091729
Pen.Color = 12091729
end
end
object ButtonFlatMy: TButtonFlat
AlignWithMargins = True
Left = 128
Top = 0
Width = 85
Height = 43
Margins.Top = 0
Margins.Bottom = 0
Align = alLeft
Caption = #1052#1091#1079#1099#1082#1072
ColorNormal = clWhite
ColorOver = clWhite
ColorPressed = clWhite
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Tahoma'
Font.Style = []
BorderColor = clWhite
FontOver.Charset = DEFAULT_CHARSET
FontOver.Color = clWindowText
FontOver.Height = -13
FontOver.Name = 'Tahoma'
FontOver.Style = []
FontDown.Charset = DEFAULT_CHARSET
FontDown.Color = clWindowText
FontDown.Height = -13
FontDown.Name = 'Tahoma'
FontDown.Style = []
IgnorBounds = True
ImageIndentLeft = 0
OnClick = ButtonFlatMyClick
OnMouseEnter = ButtonFlatMyMouseEnter
OnMouseLeave = ButtonFlatMyMouseLeave
RoundRectParam = 3
Shape = stRoundRect
ShowFocusRect = False
TabOrder = 1
TabStop = True
TextFormat = [tfCenter, tfSingleLine, tfVerticalCenter]
SubTextFont.Charset = DEFAULT_CHARSET
SubTextFont.Color = clWhite
SubTextFont.Height = -13
SubTextFont.Name = 'Tahoma'
SubTextFont.Style = []
end
object ButtonFlatCurrent: TButtonFlat
AlignWithMargins = True
Left = 0
Top = 0
Width = 122
Height = 43
Margins.Left = 0
Margins.Top = 0
Margins.Bottom = 0
Align = alLeft
Caption = #1058#1077#1082#1091#1097#1080#1081' '#1087#1083#1077#1081#1083#1080#1089#1090
ColorNormal = clWhite
ColorOver = clWhite
ColorPressed = clWhite
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Tahoma'
Font.Style = []
BorderColor = clWhite
FontOver.Charset = DEFAULT_CHARSET
FontOver.Color = clWindowText
FontOver.Height = -13
FontOver.Name = 'Tahoma'
FontOver.Style = []
FontDown.Charset = DEFAULT_CHARSET
FontDown.Color = clWindowText
FontDown.Height = -13
FontDown.Name = 'Tahoma'
FontDown.Style = []
IgnorBounds = True
ImageIndentLeft = 0
OnClick = ButtonFlatCurrentClick
OnMouseEnter = ButtonFlatMyMouseEnter
OnMouseLeave = ButtonFlatMyMouseLeave
RoundRectParam = 3
Shape = stRoundRect
ShowFocusRect = False
TabOrder = 2
TabStop = True
TextFormat = [tfCenter, tfSingleLine, tfVerticalCenter]
SubTextFont.Charset = DEFAULT_CHARSET
SubTextFont.Color = clWhite
SubTextFont.Height = -13
SubTextFont.Name = 'Tahoma'
SubTextFont.Style = []
end
object ButtonFlatPlaylists: TButtonFlat
AlignWithMargins = True
Left = 219
Top = 0
Width = 79
Height = 43
Margins.Top = 0
Margins.Bottom = 0
Align = alLeft
Caption = #1055#1083#1077#1081#1083#1080#1089#1090#1099
ColorNormal = clWhite
ColorOver = clWhite
ColorPressed = clWhite
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Tahoma'
Font.Style = []
BorderColor = clWhite
FontOver.Charset = DEFAULT_CHARSET
FontOver.Color = clWindowText
FontOver.Height = -13
FontOver.Name = 'Tahoma'
FontOver.Style = []
FontDown.Charset = DEFAULT_CHARSET
FontDown.Color = clWindowText
FontDown.Height = -13
FontDown.Name = 'Tahoma'
FontDown.Style = []
IgnorBounds = True
ImageIndentLeft = 0
OnClick = ButtonFlatPlaylistsClick
OnMouseEnter = ButtonFlatMyMouseEnter
OnMouseLeave = ButtonFlatMyMouseLeave
RoundRectParam = 3
Shape = stRoundRect
ShowFocusRect = False
TabOrder = 3
TabStop = True
TextFormat = [tfCenter, tfSingleLine, tfVerticalCenter]
SubTextFont.Charset = DEFAULT_CHARSET
SubTextFont.Color = clWhite
SubTextFont.Height = -13
SubTextFont.Name = 'Tahoma'
SubTextFont.Style = []
end
object ButtonFlatFriends: TButtonFlat
AlignWithMargins = True
Left = 304
Top = 0
Width = 79
Height = 43
Margins.Top = 0
Margins.Bottom = 0
Align = alLeft
Caption = #1044#1088#1091#1079#1100#1103
ColorNormal = clWhite
ColorOver = clWhite
ColorPressed = clWhite
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Tahoma'
Font.Style = []
BorderColor = clWhite
FontOver.Charset = DEFAULT_CHARSET
FontOver.Color = clWindowText
FontOver.Height = -13
FontOver.Name = 'Tahoma'
FontOver.Style = []
FontDown.Charset = DEFAULT_CHARSET
FontDown.Color = clWindowText
FontDown.Height = -13
FontDown.Name = 'Tahoma'
FontDown.Style = []
IgnorBounds = True
ImageIndentLeft = 0
OnClick = ButtonFlatFriendsClick
OnMouseEnter = ButtonFlatMyMouseEnter
OnMouseLeave = ButtonFlatMyMouseLeave
RoundRectParam = 3
Shape = stRoundRect
ShowFocusRect = False
TabOrder = 4
TabStop = True
TextFormat = [tfCenter, tfSingleLine, tfVerticalCenter]
SubTextFont.Charset = DEFAULT_CHARSET
SubTextFont.Color = clWhite
SubTextFont.Height = -13
SubTextFont.Name = 'Tahoma'
SubTextFont.Style = []
end
object ButtonFlatSearchTab: TButtonFlat
AlignWithMargins = True
Left = 389
Top = 0
Width = 79
Height = 43
Margins.Top = 0
Margins.Bottom = 0
Align = alLeft
Caption = #1055#1086#1080#1089#1082
ColorNormal = clWhite
ColorOver = clWhite
ColorPressed = clWhite
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Tahoma'
Font.Style = []
BorderColor = clWhite
FontOver.Charset = DEFAULT_CHARSET
FontOver.Color = clWindowText
FontOver.Height = -13
FontOver.Name = 'Tahoma'
FontOver.Style = []
FontDown.Charset = DEFAULT_CHARSET
FontDown.Color = clWindowText
FontDown.Height = -13
FontDown.Name = 'Tahoma'
FontDown.Style = []
IgnorBounds = True
ImageIndentLeft = 0
OnClick = ButtonFlatSearchTabClick
OnMouseEnter = ButtonFlatMyMouseEnter
OnMouseLeave = ButtonFlatMyMouseLeave
RoundRectParam = 3
Shape = stRoundRect
ShowFocusRect = False
TabOrder = 5
TabStop = True
TextFormat = [tfCenter, tfSingleLine, tfVerticalCenter]
SubTextFont.Charset = DEFAULT_CHARSET
SubTextFont.Color = clWhite
SubTextFont.Height = -13
SubTextFont.Name = 'Tahoma'
SubTextFont.Style = []
Visible = False
end
object ButtonFlatMyMusic: TButtonFlat
AlignWithMargins = True
Left = 481
Top = 0