Blame view

js/app/models/PlotObjects/PlotLayoutAutoObject.js 1.43 KB
003ba315   Benjamin Renard   Add Epoch Plot an...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/**
 * Project      : AMDA-NG
 * Name         : PlotLayoutAutoObject.js
 * @class   amdaPlotObj.PlotLayoutAutoObject
 * @extends Ext.data.Model
 * @brief   Plot Auto Layout Business Object Definition 
 * @author  Benjamin Renard
 * @version $Id: PlotLayoutAutoObject.js benjamin $
 ******************************************************************************
 *    FT Id     :   Date   : Name - Description
 ******************************************************************************
 *	:           :25/08/2015: BRE  - file creation
 */
 
 		
Ext.define('amdaPlotObj.PlotLayoutAutoObject', {
	extend: 'Ext.data.Model',
	
	requires: [
	           'amdaPlotObj.PlotObjectConfig'
	],
	
	fields : [
a971060f   Benjamin Renard   Fix some bugs
24
25
26
	          {name: 'layout-panel-height', type: 'float', defaultValue: amdaPlotObj.PlotObjectConfig.defaultValues.page.layout.panelHeight},
	          {name: 'layout-panel-spacing', type: 'float', defaultValue: amdaPlotObj.PlotObjectConfig.defaultValues.page.layout.panelSpacing},
	          {name: 'layout-expand', type: 'boolean', defaultValue: amdaPlotObj.PlotObjectConfig.defaultValues.page.layout.expand}
003ba315   Benjamin Renard   Add Epoch Plot an...
27
28
    ],
    
003ba315   Benjamin Renard   Add Epoch Plot an...
29
30
31
32
33
34
35
36
37
38
39
    getJsonValues : function() 
    {
    	var layoutValues  = new Object();
    	
    	layoutValues['layout-panel-height'] = this.get('layout-panel-height');
    	layoutValues['layout-panel-spacing'] = this.get('layout-panel-spacing');
    	layoutValues['layout-expand'] = this.get('layout-expand');
    	
    	return layoutValues;
    }
});