Blame view

ihm/app/view/Steps/TransformationDefinition/FramesPanel.js 753 Bytes
346b85c6   Benjamin Renard   First commit with...
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
Ext.define('treps.view.Steps.TransformationDefinition.FramesPanel' ,{
	extend: 'Ext.form.Panel',

	alias: 'widget.frames_panel',

	requires: [
		'treps.view.Frames.FramesCombo'
	],

	initComponent: function() {
		this.callParent(arguments);
	},

	tools: [
		{
			type: 'help',
			pageId: '3dview'
		}
	],

	title: 'Coordinate systems selection',

	layout: {
		type: 'hbox',
		padding: 5,
		margin: 5
	},

	items: [
		{
			xtype: 'frames_combo',
			id: 'srcSysFrame',
			fieldLabel: 'Source system',
			labelWidth: 150,
			padding: 5,
			flex: 1
		},
		{
                        xtype: 'frames_combo',
			id: 'destSysFrame',
                        fieldLabel: 'Destination system',
			labelWidth: 150,
			padding: 5,
			flex: 1
                }
	]
});