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
| Ext.define('Neptune.view.panel.widget.Tool', {
| extend: 'Ext.panel.Panel',
| xtype: 'toolPanel',
| title: 'Tools',
| html: 'Hi, I\'m a panel with all possible tools',
| tools: [
| { type: 'close' },
| { type: 'minimize' },
| { type: 'maximize' },
| { type: 'restore' },
| { type: 'toggle' },
| { type: 'gear' },
| { type: 'prev' },
| { type: 'next' },
| { type: 'pin' },
| { type: 'unpin' },
| { type: 'right' },
| { type: 'left' },
| { type: 'down' },
| { type: 'up' },
| { type: 'refresh' },
| { type: 'plus' },
| { type: 'minus' },
| { type: 'search' },
| { type: 'save' },
| { type: 'help' },
| { type: 'print' },
| { type: 'expand' },
| { type: 'collapse' }
| ]
| });
|
|