PlotLayoutManualObject.js
1.67 KB
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
/**
* Project : AMDA-NG
* Name : PlotLayoutManualObject.js
* @class amdaPlotObj.PlotLayoutManualObject
* @extends Ext.data.Model
* @brief Plot Manual Layout Business Object Definition
* @author Benjamin Renard
* @version $Id: PlotLayoutManualObject.js benjamin $
******************************************************************************
* FT Id : Date : Name - Description
******************************************************************************
* : :25/08/2015: BRE - file creation
*/
Ext.define('amdaPlotObj.PlotLayoutManualObject', {
extend: 'Ext.data.Model',
requires: [
'amdaPlotObj.PlotObjectConfig'
],
fields : [
{name: 'layout-timeplot-margin-left', type: 'float', useNull:true},
{name: 'layout-timeplot-margin-right', type: 'float', useNull:true},
{name: 'layout-xyplot-margin-left', type: 'float', useNull:true},
{name: 'layout-xyplot-margin-right', type: 'float', useNull:true}
],
getJsonValues : function()
{
var layoutValues = new Object();
layoutValues['layout-timeplot-margin-left'] = this.get('layout-timeplot-margin-left') ? this.get('layout-timeplot-margin-left') : -1;
layoutValues['layout-timeplot-margin-right'] = this.get('layout-timeplot-margin-right') ? this.get('layout-timeplot-margin-right') : -1;
layoutValues['layout-xyplot-margin-left'] = this.get('layout-xyplot-margin-left') ? this.get('layout-xyplot-margin-left') : -1;
layoutValues['layout-xyplot-margin-right'] = this.get('layout-xyplot-margin-right') ? this.get('layout-xyplot-margin-right') : -1;
return layoutValues;
}
});