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
| Ext.define('Pandora.view.SongControls', {
| extend: 'Ext.Container',
| alias: 'widget.songcontrols',
| height: 70,
|
| initComponent: function() {
| this.layout = {
| type: 'vbox',
| align: 'center',
| pack: 'center'
| };
|
| this.items = [{
| xtype: 'container',
| defaultType: 'button',
| height: 30,
| width: 300,
| layout: {
| type: 'hbox',
| align: 'center',
| pack: 'center'
| },
| items: [{
| text: 'Vote Down',
| action: 'vote-down'
| }, {
| text: 'Vote Up',
| action: 'vote-up'
| }, {
| text: 'Pause',
| action: 'pause'
| }, {
| text: 'Skip',
| action: 'skip'
| }]
| }, {
| width: 300,
| xtype: 'container',
| layout: {
| type: 'hbox',
| align: 'center'
| },
| items: [{
| xtype: 'component',
| html: '2:00'
| }, {
| xtype: 'progressbar',
| value: 0.5,
| flex: 1
| }, {
| xtype: 'component',
| html: '4:00'
| }]
| }];
|
| this.callParent();
| }
| });
|
|