Blame view

js/app/models/PlotObjects/PlotLayoutVerticalObject.js 2.89 KB
003ba315   Benjamin Renard   Add Epoch Plot an...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/**
 * Project      : AMDA-NG
 * Name         : PlotLayoutVerticalObject.js
 * @class   amdaPlotObj.PlotLayoutVerticalObject
 * @extends Ext.data.Model
 * @brief   Plot Vertical Layout Business Object Definition 
 * @author  Benjamin Renard
 * @version $Id: PlotLayoutVerticalObject.js benjamin $
 ******************************************************************************
 *    FT Id     :   Date   : Name - Description
 ******************************************************************************
 *	:           :25/08/2015: BRE  - file creation
 */
 
 		
Ext.define('amdaPlotObj.PlotLayoutVerticalObject', {
41109aaa   Benjamin Renard   Set amdaPlotObj.P...
17
    extend: 'Ext.data.Model',
003ba315   Benjamin Renard   Add Epoch Plot an...
18
	
41109aaa   Benjamin Renard   Set amdaPlotObj.P...
19
20
21
    requires: [
        'amdaPlotObj.PlotObjectConfig'
    ],
003ba315   Benjamin Renard   Add Epoch Plot an...
22
	
41109aaa   Benjamin Renard   Set amdaPlotObj.P...
23
24
25
26
27
28
29
30
31
    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'},
        //{name: 'layout-timeplot-width', type: 'float', useNull:true},
        {name: 'layout-timeplot-height', type: 'float', useNull:true},
        {name: 'layout-xyplot-width', type: 'float', useNull:true},
        {name: 'layout-xyplot-height', type: 'float', useNull:true}
003ba315   Benjamin Renard   Add Epoch Plot an...
32
    ],
41109aaa   Benjamin Renard   Set amdaPlotObj.P...
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55

    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);
    },

003ba315   Benjamin Renard   Add Epoch Plot an...
56
57
58
59
60
61
62
    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');
29f02ab8   Benjamin Renard   Add layout proper...
63
	layoutValues['layout-timeaxes-legend-lowerone'] = this.get('layout-timeaxes-legend-lowerone');
003ba315   Benjamin Renard   Add Epoch Plot an...
64
65
66
67
68
69
70
   		//layoutValues['layout-timeplot-width'] = this.get('layout-timeplot-width') ? this.get('layout-timeplot-width') : -1;
    	layoutValues['layout-timeplot-height'] = this.get('layout-timeplot-height') ? this.get('layout-timeplot-height') : -1;
    	layoutValues['layout-xyplot-width'] = this.get('layout-xyplot-width') ? this.get('layout-xyplot-width') : -1;
    	layoutValues['layout-xyplot-height'] = this.get('layout-xyplot-height') ? this.get('layout-xyplot-height') : -1;
    	
    	return layoutValues;
    }
29f02ab8   Benjamin Renard   Add layout proper...
71
});