PlotLayoutManualObject.js 1.67 KB
/**
 * 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;
    }
});