PlotLayoutAutoObject.js 2.14 KB
/**
 * 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 : [
        {name: 'layout-panel-height', type: 'float'},
        {name: 'layout-panel-spacing', type: 'float'},
        {name: 'layout-expand', type: 'boolean'},
        {name: 'layout-timeaxes-legend-lowerone', type: 'boolean'}
    ],

    constructor: function()
    {
        var me = this;
        me.callParent(arguments);
        if ((arguments.length > 0) && arguments[0])
        {
        }
        else
        {
            //new object, set default fields values
            me.setDefaultValues();
        }
        this.dirty = false;
    },

    setDefaultValues: function()
    {
        this.set('layout-panel-height', amdaPlotObj.PlotObjectConfig.defaultValues.page.layout.panelHeight);
        this.set('layout-panel-spacing', amdaPlotObj.PlotObjectConfig.defaultValues.page.layout.panelSpacing);
        this.set('layout-expand', amdaPlotObj.PlotObjectConfig.defaultValues.page.layout.expand);
        this.set('layout-timeaxes-legend-lowerone', amdaPlotObj.PlotObjectConfig.defaultValues.page.layout.timeAxesLegend);
    },
    
    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');
	layoutValues['layout-timeaxes-legend-lowerone'] = this.get('layout-timeaxes-legend-lowerone');
    	
    	return layoutValues;
    }
});