Blame view

js/app/views/PlotComponents/PlotTree.js 25 KB
437c4dbc   Benjamin Renard   First implementat...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/**
 * Project   : AMDA-NG
 * Name      : PlotTree.js
 * @class   amdaPlotComp.PlotTree
 * @extends Ext.tree.Panel
 * @brief   Tree to define all elements of a plot
 * @author  Benjamin Renard
 * @version $Id: PlotTree.js benjamin $
 */

Ext.define('amdaPlotComp.PlotTree', {
	extend: 'Ext.tree.Panel',
	
	requires: [
	           'amdaPlotObj.PlotTreeNode'
	],
	
27b2a53e   Benjamin Renard   Link tab plot to ...
18
19
20
21
	//Link to the combo box to define the use of the simplified view
	simplifiedViewCombo : null,
	
	//Link to the combo to attach the tab to the multi plot mode
17433635   Benjamin Renard   Add series and sp...
22
	
437c4dbc   Benjamin Renard   First implementat...
23
24
	//Link to the Plot Element Panel
    plotElementPanel: null,
27b2a53e   Benjamin Renard   Link tab plot to ...
25
26
27
    
    //Link to the Plot Tab Content Panel
    plotTabContent : null,
437c4dbc   Benjamin Renard   First implementat...
28
29
	
	//Tab object
abe09878   Benjamin Renard   Add panels and ax...
30
31
32
33
    tabObject: null,
	
	//Panels list node
	panelsNode: null,
437c4dbc   Benjamin Renard   First implementat...
34
35
36
37
38
39
	
	constructor: function(config) {
		this.init(config);	    
		this.callParent(arguments);
	},
	
e84ed2cf   Benjamin Renard   Add Interval Tick...
40
41
42
43
	refresh: function() {
		this.getView().refresh();
	},
	
437c4dbc   Benjamin Renard   First implementat...
44
	buildTree: function(tabObject) {
abe09878   Benjamin Renard   Add panels and ax...
45
46
47
48
		if (this.store.getRootNode().hasChildNodes())
			this.store.getRootNode().removeAll();
		
		this.tabObject = tabObject;
437c4dbc   Benjamin Renard   First implementat...
49
		
27b2a53e   Benjamin Renard   Link tab plot to ...
50
51
52
53
		this.simplifiedViewCombo.setValue(this.tabObject.get('tree-simplified-view'));
		this.linkToMultiPlotCombo.setValue(this.tabObject.get('multi-plot-linked'));
		
		if (!this.tabObject.get('tree-simplified-view'))
17433635   Benjamin Renard   Add series and sp...
54
55
56
		{
			//Page Node
			var pageNode = this.store.getRootNode().appendChild(new amdaPlotObj.PlotPageTreeNode({object : tabObject}));
437c4dbc   Benjamin Renard   First implementat...
57
		
17433635   Benjamin Renard   Add series and sp...
58
			//Layout node
003ba315   Benjamin Renard   Add Epoch Plot an...
59
			pageNode.appendChild(new amdaPlotObj.PlotLayoutTreeNode({object : tabObject}));
437c4dbc   Benjamin Renard   First implementat...
60
		
17433635   Benjamin Renard   Add series and sp...
61
62
63
64
65
66
67
68
69
70
71
72
			//Panels node
			this.panelsNode = pageNode.appendChild(new amdaPlotObj.PlotPanelsTreeNode());
		}
		else
			this.panelsNode = this.store.getRootNode();
		
		this.buildPanelsNode();
	},
	
	buildPanelsNode: function() {
		if (this.panelsNode.hasChildNodes())
			this.panelsNode.removeAll();
abe09878   Benjamin Renard   Add panels and ax...
73
74
75
		
		var me = this;
		this.tabObject.panels().each(function (panelObject) {
17433635   Benjamin Renard   Add series and sp...
76
			me.addPanelNode(panelObject);
abe09878   Benjamin Renard   Add panels and ax...
77
78
79
		});
	},
	
abe09878   Benjamin Renard   Add panels and ax...
80
81
82
83
84
85
86
87
88
89
90
	buildPanelAxesNode: function(panelObject) {
		var axesNode = null;
		
		this.panelsNode.eachChild(function (panelNode) {
			//Retrieve corresponding panel node
			if (panelNode.object == panelObject)
			{
				//Retrieve axes node
				axesNode = panelNode.findChild('type', 'axes');
				if (!axesNode)
					//create axes node
17433635   Benjamin Renard   Add series and sp...
91
					axesNode = panelNode.appendChild(new amdaPlotObj.PlotAxesTreeNode({object : panelObject}));
abe09878   Benjamin Renard   Add panels and ax...
92
93
94
				return;
			}
		});
437c4dbc   Benjamin Renard   First implementat...
95
		
abe09878   Benjamin Renard   Add panels and ax...
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
		if (axesNode == null)
			return;
		
		//Remove old axis nodes
		axesNode.removeAll();
		
		//Add axis nodes
		panelObject.axes().each(function (axisObject) {
			switch (axisObject.get('axis-type'))
			{
			case 'time' :
				axesNode.appendChild(new amdaPlotObj.PlotTimeAxisTreeNode({object : axisObject}));
				break;
			case 'epoch' :
				axesNode.appendChild(new amdaPlotObj.PlotEpochAxisTreeNode({object : axisObject}));
				break;
			case 'x' :
				axesNode.appendChild(new amdaPlotObj.PlotXAxisTreeNode({object : axisObject}));
				break;
			case 'y-left' :
				axesNode.appendChild(new amdaPlotObj.PlotYLeftAxisTreeNode({object : axisObject}));
				break;
			case 'y-right' :
				axesNode.appendChild(new amdaPlotObj.PlotYRightAxisTreeNode({object : axisObject}));
				break;
			case 'color' :
				axesNode.appendChild(new amdaPlotObj.PlotColorAxisTreeNode({object : axisObject}));
				break;
			}
		});
		this.getView().refresh();
437c4dbc   Benjamin Renard   First implementat...
127
128
	},
	
003ba315   Benjamin Renard   Add Epoch Plot an...
129
130
131
	buildPanelParamsNode: function(panelObject, selectedParamId) {
		selectedParamId = (typeof selectedParamId !== 'undefined') ? selectedParamId : '';
		
17433635   Benjamin Renard   Add series and sp...
132
133
134
135
136
137
138
		var paramsNode = null;
		
		var me = this;
		this.panelsNode.eachChild(function (panelNode) {
			//Retrieve corresponding panel node
			if (panelNode.object == panelObject)
			{
27b2a53e   Benjamin Renard   Link tab plot to ...
139
				if (!me.tabObject.get('tree-simplified-view'))
17433635   Benjamin Renard   Add series and sp...
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
				{
					//Retrieve params node
					paramsNode = panelNode.findChild('type', 'params');
					if (!paramsNode)
						//create axes node
						paramsNode = panelNode.appendChild(new amdaPlotObj.PlotParamsTreeNode({object : panelObject}));
				}
				else
					paramsNode = panelNode;
				return;
			}
		});
		
		if (paramsNode == null)
			return;
		
		//Remove old param nodes
		paramsNode.removeAll();
		
		//Add param nodes
a0bf9157   Benjamin Renard   Add tick plot and...
160
		var selectedParamNode = null;
17433635   Benjamin Renard   Add series and sp...
161
		panelObject.params().each(function (paramObject) {
a0bf9157   Benjamin Renard   Add tick plot and...
162
163
164
			var paramNode = paramsNode.appendChild(new amdaPlotObj.PlotParamTreeNode({object : paramObject}));
			if (paramObject.get('id') == selectedParamId)
				selectedParamNode = paramNode;
17433635   Benjamin Renard   Add series and sp...
165
166
		});
		this.getView().refresh();
a0bf9157   Benjamin Renard   Add tick plot and...
167
168
169
		
		if (selectedParamNode)
			this.getSelectionModel().select(selectedParamNode);
17433635   Benjamin Renard   Add series and sp...
170
171
	},
	
fd5552a4   Benjamin Renard   Info for plot ele...
172
173
	buildPanelAdditionalObjectsNode: function(panelObject, selectedObject) {
		selectedObject = (typeof selectedObject !== 'undefined') ? selectedObject : null;
339866c4   Benjamin Renard   Add text legend d...
174
		
94abdb37   Benjamin Renard   Add params legend...
175
176
177
178
179
180
181
182
183
184
185
186
187
		var objectsNode = null;
		
		var me = this;
		this.panelsNode.eachChild(function (panelNode) {
			//Retrieve corresponding panel node
			if (panelNode.object == panelObject)
			{
				//Retrieve additional objects node
				objectsNode = panelNode.findChild('type', 'objects');
				if (!objectsNode)
				{
					//create additional objects node
					objectsNode = panelNode.appendChild(new amdaPlotObj.PlotAdditionalObjectsTreeNode({object : panelObject}));
94abdb37   Benjamin Renard   Add params legend...
188
189
190
191
192
193
194
195
				}
				return;
			}
		});
		
		if (objectsNode == null)
			return;
		
339866c4   Benjamin Renard   Add text legend d...
196
197
198
199
		//Remove old objects nodes
		objectsNode.removeAll();
		
		//create legends node
fd5552a4   Benjamin Renard   Info for plot ele...
200
		this.buildPanelLegendsNode(panelObject, objectsNode, selectedObject);
829160b3   Benjamin Renard   Add constants def...
201
202
		
		//create drawing objects node
fd5552a4   Benjamin Renard   Info for plot ele...
203
		this.buildDrawingObjectsNode(panelObject, objectsNode, selectedObject);
486cc3c7   Benjamin Renard   Add fill elements...
204
205
206
		
		//create fills node
		this.buildFillsNode(panelObject, objectsNode, selectedObject);
94abdb37   Benjamin Renard   Add params legend...
207
208
	},
	
fd5552a4   Benjamin Renard   Info for plot ele...
209
	buildPanelLegendsNode: function(panelObject, objectsNode, selectedObject) {
94abdb37   Benjamin Renard   Add params legend...
210
211
212
213
		var legendsNode = objectsNode.appendChild(new amdaPlotObj.PlotLegendsTreeNode({object : panelObject}));
		
		legendsNode.appendChild(new amdaPlotObj.PlotSeriesLegendTreeNode({object : panelObject}));
		
339866c4   Benjamin Renard   Add text legend d...
214
215
216
217
218
		var textLegendsNode = legendsNode.appendChild(new amdaPlotObj.PlotTextLegendsTreeNode({object : panelObject}));
		
		var selectedTextLegendNode = null;
		panelObject.textLegends().each(function (legendObject) {
			var textLegendNode = textLegendsNode.appendChild(new amdaPlotObj.PlotTextLegendTreeNode({object : legendObject}));
fd5552a4   Benjamin Renard   Info for plot ele...
219
			if (legendObject == selectedObject)
339866c4   Benjamin Renard   Add text legend d...
220
221
222
223
224
225
				selectedTextLegendNode = textLegendNode;
		});
		
		this.getView().refresh();
		if (selectedTextLegendNode)
			this.getSelectionModel().select(selectedTextLegendNode);
94abdb37   Benjamin Renard   Add params legend...
226
227
	},
	
fd5552a4   Benjamin Renard   Info for plot ele...
228
	buildDrawingObjectsNode: function(panelObject, objectsNode, selectedObject) {
829160b3   Benjamin Renard   Add constants def...
229
230
		var drawingObjectsNode = objectsNode.appendChild(new amdaPlotObj.PlotDrawingObjectsTreeNode({object : panelObject}));
		
a8c54fb9   Benjamin Renard   Add text object p...
231
		//Constants
829160b3   Benjamin Renard   Add constants def...
232
233
234
		var selectedConstantNode = null;
		panelObject.constants().each(function (constantObject) {
			var constantNode = drawingObjectsNode.appendChild(new amdaPlotObj.PlotConstantTreeNode({object : constantObject}));
fd5552a4   Benjamin Renard   Info for plot ele...
235
			if (constantObject == selectedObject)
829160b3   Benjamin Renard   Add constants def...
236
237
238
				selectedConstantNode = constantNode;
		});
		
a8c54fb9   Benjamin Renard   Add text object p...
239
240
241
242
		//Texts
		var selectedTextNode = null;
		panelObject.textObjs().each(function (textObject) {
			var textNode = drawingObjectsNode.appendChild(new amdaPlotObj.PlotTextTreeNode({object : textObject}));
fd5552a4   Benjamin Renard   Info for plot ele...
243
			if (textObject == selectedObject)
a8c54fb9   Benjamin Renard   Add text object p...
244
245
246
				selectedTextNode = textNode;
		});
		
dbb7bcbe   Benjamin Renard   Add curves defint...
247
248
249
250
		//Curves
		var selectedCurveNode = null;
		panelObject.curves().each(function (curveObject) {
			var curveNode = drawingObjectsNode.appendChild(new amdaPlotObj.PlotCurveTreeNode({object : curveObject}));
fd5552a4   Benjamin Renard   Info for plot ele...
251
			if (curveObject == selectedObject)
dbb7bcbe   Benjamin Renard   Add curves defint...
252
253
254
255
				selectedCurveNode = curveNode;
		});
		
		
a8c54fb9   Benjamin Renard   Add text object p...
256
		//Refresh & selection
829160b3   Benjamin Renard   Add constants def...
257
258
259
		this.getView().refresh();
		if (selectedConstantNode)
			this.getSelectionModel().select(selectedConstantNode);
a8c54fb9   Benjamin Renard   Add text object p...
260
261
262
		
		if (selectedTextNode)
			this.getSelectionModel().select(selectedTextNode);
dbb7bcbe   Benjamin Renard   Add curves defint...
263
264
265
		
		if (selectedCurveNode)
			this.getSelectionModel().select(selectedCurveNode);
829160b3   Benjamin Renard   Add constants def...
266
267
	},
	
486cc3c7   Benjamin Renard   Add fill elements...
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
	buildFillsNode: function(panelObject, objectsNode, selectedObject) {
		var fillsNode = objectsNode.appendChild(new amdaPlotObj.PlotFillsTreeNode({object : panelObject}));
		
		var selectedFillNode = null;
		panelObject.fills().each(function (fillObject) {
			var fillNode = fillsNode.appendChild(new amdaPlotObj.PlotFillTreeNode({object : fillObject}));
			if (fillObject == selectedObject)
				selectedFillNode = fillNode;
		});
		
		this.getView().refresh();
		if (selectedFillNode)
			this.getSelectionModel().select(selectedFillNode);
	},
	
17433635   Benjamin Renard   Add series and sp...
283
284
	addPanelNode: function(panelObject) {
		var panelNode = this.panelsNode.appendChild(new amdaPlotObj.PlotPanelTreeNode({object : panelObject}));
27b2a53e   Benjamin Renard   Link tab plot to ...
285
		if (!this.tabObject.get('tree-simplified-view'))
94abdb37   Benjamin Renard   Add params legend...
286
		{
17433635   Benjamin Renard   Add series and sp...
287
288
			//Axes node
			this.buildPanelAxesNode(panelObject);
94abdb37   Benjamin Renard   Add params legend...
289
290
291
			//Additional objects
			this.buildPanelAdditionalObjectsNode(panelObject);
		}
17433635   Benjamin Renard   Add series and sp...
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
		//Params node
		this.buildPanelParamsNode(panelObject);
		return panelNode;
	},
	
	movePanel : function(record,targetNode,position)
	{
		var fromIndex = targetNode.parentNode.indexOf(record);
		var toIndex   = targetNode.parentNode.indexOf(targetNode);
		
		var fromRecord = this.tabObject.panels().getAt(fromIndex);
		if (!fromRecord)
			return false;
		
		switch (position)
		{
			case 'before' :
				this.tabObject.panels().data.removeAt(fromIndex);
				var insertIndex = (fromIndex > toIndex) ? toIndex : toIndex - 1;
				this.tabObject.panels().data.insert(insertIndex, fromRecord);
				this.buildPanelsNode();
				this.getSelectionModel().select(this.panelsNode.getChildAt(insertIndex));
				return true;
			case 'after' :
				this.tabObject.panels().data.removeAt(fromIndex);
				var insertIndex = (fromIndex > toIndex) ? toIndex + 1 : toIndex;
				this.tabObject.panels().data.insert(insertIndex, fromRecord);
				this.buildPanelsNode();
				this.getSelectionModel().select(this.panelsNode.getChildAt(insertIndex));
				return true;
				break;
			default :
				return false;
		}
		
		return true;
	},
	
17433635   Benjamin Renard   Add series and sp...
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
	moveParam : function(record,targetNode,position)
	{
		/*var fromIndex = targetNode.parentNode.indexOf(record);
		var toIndex   = targetNode.parentNode.indexOf(targetNode);
		
		var fromRecord = this.tabObject.panels().getAt(fromIndex);
		if (!fromRecord)
			return false;
		
		switch (position)
		{
			case 'before' :
				this.tabObject.panels().data.removeAt(fromIndex);
				var insertIndex = (fromIndex > toIndex) ? toIndex : toIndex - 1;
				this.tabObject.panels().data.insert(insertIndex, fromRecord);
				this.buildPanelsNode();
				this.getSelectionModel().select(this.panelsNode.getChildAt(insertIndex));
				return true;
			case 'after' :
				this.tabObject.panels().data.removeAt(fromIndex);
				var insertIndex = (fromIndex > toIndex) ? toIndex + 1 : toIndex;
				this.tabObject.panels().data.insert(insertIndex, fromRecord);
				this.buildPanelsNode();
				this.getSelectionModel().select(this.panelsNode.getChildAt(insertIndex));
				return true;
				break;
			default :
				return false;
		}*/
		
		console.log('ToDo move param');
		
		return true;
	},
	
a0bf9157   Benjamin Renard   Add tick plot and...
365
366
367
	onNodeSelect: function(tree, record, index, eOpts) {
		if (index == -1)
			return;
437c4dbc   Benjamin Renard   First implementat...
368
		if (this.plotElementPanel != null)
abe09878   Benjamin Renard   Add panels and ax...
369
			this.plotElementPanel.setElement(record.type, record.object, this);
437c4dbc   Benjamin Renard   First implementat...
370
371
	},
	
a0bf9157   Benjamin Renard   Add tick plot and...
372
373
374
375
376
	onNodeDeselect: function(tree, record, index, eOpts) {
		if (this.plotElementPanel != null)
			this.plotElementPanel.resetElement();
	},
	
17433635   Benjamin Renard   Add series and sp...
377
378
379
	onCellClick: function(tree, td, cellIndex, record, tr, rowIndex, e, eOpts) {
		if ((cellIndex === 1) && record.get('removable'))
		{
a0bf9157   Benjamin Renard   Add tick plot and...
380
			this.getSelectionModel().deselectAll();
17433635   Benjamin Renard   Add series and sp...
381
382
383
384
385
386
387
388
			switch (record.get('type'))
			{
			case 'panel' :
				if (this.tabObject.removePanelById(record.object.get('id')))
					this.buildPanelsNode();
				break;
			case 'param' :
				var panelObject = null;
27b2a53e   Benjamin Renard   Link tab plot to ...
389
				if (!this.tabObject.get('tree-simplified-view'))
17433635   Benjamin Renard   Add series and sp...
390
391
392
393
394
395
396
					panelObject = record.parentNode.parentNode.object;
				else
					panelObject = record.parentNode.object;
				//removeParamById
				if (panelObject.removeParamById(record.object.get('id')))
					this.buildPanelsNode();
				break;
339866c4   Benjamin Renard   Add text legend d...
397
398
			case 'text-legend' :
				var panelObject = null;
27b2a53e   Benjamin Renard   Link tab plot to ...
399
				if (!this.tabObject.get('tree-simplified-view'))
339866c4   Benjamin Renard   Add text legend d...
400
401
402
403
404
405
					panelObject = record.parentNode.parentNode.object;
				else
					panelObject = record.parentNode.object;
				if (panelObject.removeTextLegendById(record.object.get('id')))
					this.buildPanelAdditionalObjectsNode(panelObject);
				break;
486cc3c7   Benjamin Renard   Add fill elements...
406
407
			case 'constant' :
				var panelObject = null;
27b2a53e   Benjamin Renard   Link tab plot to ...
408
				if (!this.tabObject.get('tree-simplified-view'))
486cc3c7   Benjamin Renard   Add fill elements...
409
410
411
412
413
414
415
416
					panelObject = record.parentNode.parentNode.object;
				else
					panelObject = record.parentNode.object;
				if (panelObject.removeConstantById(record.object.get('id')))
					this.buildPanelAdditionalObjectsNode(panelObject);
				break;
			case 'text-obj' :
				var panelObject = null;
27b2a53e   Benjamin Renard   Link tab plot to ...
417
				if (!this.tabObject.get('tree-simplified-view'))
486cc3c7   Benjamin Renard   Add fill elements...
418
419
420
421
422
423
424
425
					panelObject = record.parentNode.parentNode.object;
				else
					panelObject = record.parentNode.object;
				if (panelObject.removeTextObjectById(record.object.get('id')))
					this.buildPanelAdditionalObjectsNode(panelObject);
				break;
			case 'curve' :
				var panelObject = null;
27b2a53e   Benjamin Renard   Link tab plot to ...
426
				if (!this.tabObject.get('tree-simplified-view'))
486cc3c7   Benjamin Renard   Add fill elements...
427
428
429
430
431
432
433
434
					panelObject = record.parentNode.parentNode.object;
				else
					panelObject = record.parentNode.object;
				if (panelObject.removeCurveById(record.object.get('id')))
					this.buildPanelAdditionalObjectsNode(panelObject);
				break;
			case 'fill' :
				var panelObject = null;
27b2a53e   Benjamin Renard   Link tab plot to ...
435
				if (!this.tabObject.get('tree-simplified-view'))
486cc3c7   Benjamin Renard   Add fill elements...
436
437
438
439
440
441
442
					panelObject = record.parentNode.parentNode.object;
				else
					panelObject = record.parentNode.object;
				if (panelObject.removeFillById(record.object.get('id')))
					this.buildPanelAdditionalObjectsNode(panelObject);
				break;
 			}
17433635   Benjamin Renard   Add series and sp...
443
444
445
		}
	},
	
437c4dbc   Benjamin Renard   First implementat...
446
447
448
449
450
451
452
	getSelectedNode: function() {
		var selection = this.getSelectionModel().getSelection();
		if ((selection == null) || (selection.length == 0))
			return null;
		return selection[0];
	},
	
dbb7bcbe   Benjamin Renard   Add curves defint...
453
	getSelectedPanelObject: function() {
17433635   Benjamin Renard   Add series and sp...
454
455
		var selectedNode = this.getSelectedNode();
		if (selectedNode == null)
dbb7bcbe   Benjamin Renard   Add curves defint...
456
			return null;
17433635   Benjamin Renard   Add series and sp...
457
458
459
		var crtNode = selectedNode;
		do {
			if (crtNode.get('type') == 'panel')
dbb7bcbe   Benjamin Renard   Add curves defint...
460
				return crtNode.object;
17433635   Benjamin Renard   Add series and sp...
461
462
			crtNode = crtNode.parentNode;
		} while(crtNode != null);
dbb7bcbe   Benjamin Renard   Add curves defint...
463
464
465
466
467
468
469
470
471
		return null;
	},
	
	getSelectedPlotType: function() {
		var crtPanelObject = this.getSelectedPanelObject();
		if (crtPanelObject == null)
			return 'none';
		
		return crtPanelObject.get('panel-plot-type');
17433635   Benjamin Renard   Add series and sp...
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
	},
	
	isValidToDrop : function(record,targetNode,position)
	{
		switch (record.$className)
        {
        	case 'amdaModel.LocalParamNode'   :
    	 	case 'amdaModel.RemoteParamNode'  :
    	 	case 'amdaModel.RemoteSimuParamNode'  :    
    	 		return record.get('isParameter') && ! record.get('disable');
    	 	case 'amdaModel.AliasNode'        :
    	 	case 'amdaModel.DerivedParamNode' :
    	 	case 'amdaModel.MyDataParamNode'  :
    	 		return record.isLeaf(); 
    	 	case 'amdaPlotObj.PlotParamTreeNode' :
    	 		return true;
    	 	case 'amdaPlotObj.PlotPanelTreeNode' :	
    	 		switch (position)
    	 		{
    	 			case 'append' :
    	 				return false;
    	 			case 'before' :
    	 				return (targetNode.$className == 'amdaPlotObj.PlotPanelTreeNode');
    	 			case 'after'  :
    	 				return ((targetNode.$className == 'amdaPlotObj.PlotPanelTreeNode') && targetNode.isLast());
    	 		}
        }
		return false;
	},
	
	dropParamToCreate : function(targetNode, position, paramId, needsArgs, plotOnly)
	{
		var panelObject = null;
		if (targetNode == null)
		{
			//create new panel
			panelObject = this.tabObject.createNewPanel();
a0bf9157   Benjamin Renard   Add tick plot and...
509
510
			//Rebuild params node
			this.buildPanelsNode();
17433635   Benjamin Renard   Add series and sp...
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
		}
		else
		{
			switch (targetNode.$className)
	        {
			case 'amdaPlotObj.PlotParamsTreeNode' :
			case 'amdaPlotObj.PlotPanelTreeNode' :
			case 'amdaPlotObj.PlotAxesTreeNode' :
				panelObject = targetNode.object;
				break;
			case 'amdaPlotObj.PlotTimeAxisTreeNode' :
			case 'amdaPlotObj.PlotEpochAxisTreeNode' :
			case 'amdaPlotObj.PlotXAxisTreeNode' :
			case 'amdaPlotObj.PlotYLeftAxisTreeNode' :
			case 'amdaPlotObj.PlotYRightAxisTreeNode' :
			case 'amdaPlotObj.PlotColorAxisTreeNode' :
			case 'amdaPlotObj.PlotParamTreeNode' :
				panelObject = targetNode.parentNode.object;
				break;
			default:
				//create new panel
				panelObject = this.tabObject.createNewPanel();
a0bf9157   Benjamin Renard   Add tick plot and...
533
534
				//Rebuild params node
				this.buildPanelsNode();
17433635   Benjamin Renard   Add series and sp...
535
536
537
538
539
540
541
	        }
		}

		//Create param object
		var newParamObject = panelObject.createNewParam();
		newParamObject.set('param-id', paramId);
		
a0bf9157   Benjamin Renard   Add tick plot and...
542
		this.buildPanelParamsNode(panelObject, newParamObject.get('id'));		
17433635   Benjamin Renard   Add series and sp...
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
	},
	
	dropRecord : function(record,targetNode,position)
    {
    	var selModel = this.getSelectionModel();
		
    	//select the target node if defined
    	if (targetNode)
    		selModel.select(targetNode);
    	else
    		selModel.deselectAll();
    	
    	switch (record.$className)
    	{
    	 	case 'amdaModel.LocalParamNode'   :	  
    	 	case 'amdaModel.RemoteParamNode'  :
    	 	case 'amdaModel.RemoteSimuParamNode'  :    
    	 		if (!record.get('isParameter') || record.get('disable'))
    	 			return false;
                        
    	 		var needsArgs = false;

                if (record.$className == 'amdaModel.RemoteSimuParamNode') {
                	needsArgs = record.get('needsArgs');
                }
                else if (record.$className == 'amdaModel.LocalParamNode') {
                	needsArgs = record.get('needsArgs') && !record.get('isSpectra');
                }

                if (record.get('alias') != "" )
                	this.dropParamToCreate(targetNode, position, "#"+record.get('alias'), needsArgs);
                else
                	this.dropParamToCreate(targetNode, position, record.get('id'), needsArgs, record.get('notyet'));                 
                return true;
    	 	case 'amdaModel.AliasNode'        :
    	 		if (!record.isLeaf())
    	 			return false;
    	 		this.dropParamToCreate(targetNode, position, "#"+record.get('text'));
    	 		return true;
    	 	case 'amdaModel.DerivedParamNode' :
    	 		if (!record.isLeaf())
				    return false;
    	 		this.dropParamToCreate(targetNode, position, "ws_"+record.get('text'));
			    return true;
			case 'amdaModel.MyDataParamNode' :
				if (!record.isLeaf())
				    return false;
				this.dropParamToCreate(targetNode, position, "wsd_"+record.get('text'));
			    return true;
		 	case 'amdaPlotObj.PlotParamTreeNode' :
			    return this.moveParam(record,targetNode,position);
		 	case 'amdaPlotObj.PlotPanelTreeNode' :
		 		return this.movePanel(record,targetNode,position);
		    default :
			    return false;
    	}
    	return false;
	},
	
	getDragAndDropPluginConfig : function() {
		var me = this;
		
		return {
			ptype:'treeviewdragdrop',
			ddGroup:'explorerTree',
            enableDrag:true,
            enableDrop:true,
            appendOnly : false,
            allowContainerDrops : true,
            containerScroll : true,
            isValidDropPoint : function (node, position, dragZone, e, data) 
            {       
            	if (!node || !data.item) {
            		return false;
            	}           	    
                
                var view = this.view,
                targetNode = view.getRecord(node),
                draggedRecords = data.records,
                dataLength = draggedRecords.length,
                ln = draggedRecords.length,
                i, record;        		
                // No drop position, or dragged records: invalid drop point
                if (!(targetNode && position && dataLength)) {
                    return false;
                }
                             
                // If the targetNode is within the folder we are dragging
                for (i = 0; i < ln; i++) {
                    record = draggedRecords[i];
                    if (record.isNode && record.contains(targetNode)) {
                        return false;
                    }
                }
                
                // Respect the allowDrop field on Tree nodes
                if (position === 'append' && targetNode.get('allowDrop') === false) {
                    return false;
                }
                
                // If the target record is in the dragged dataset, then invalid drop
                if (Ext.Array.contains(draggedRecords, targetNode)) {
                     return false;
                }
                         
                if (dataLength > 1)
                	return false;
                var draggedRecord = draggedRecords[0];
                
                return me.isValidToDrop(draggedRecord,targetNode,position);
            },
            onPlotContainerDrop : function(dd, e, data){
            	if (data.records.length != 1)
            		return false;
            	return me.dropRecord(data.records[0],null,null);
            },
            onPlotNodeDrop : function(n, dd, e, data){
            	if (data.records.length != 1)
            		return false;
            	return me.dropRecord(data.records[0],this.view.getRecord(n),this.getPosition(e,n));
            }, 
            onPlotContainerOver : function(dd, e, data) {
            	if (data.records.length != 1)
            		return false;
            	var draggedRecord = data.records[0];
                return me.isValidToDrop(draggedRecord,null,'append') ? this.dropAllowed : this.dropNotAllowed;
            },
            onViewRender : function(view) {
				var me = this;

      			if (me.enableDrag) {
          			me.dragZone = Ext.create('Ext.tree.ViewDragZone', {
              			view: view,
              			ddGroup: me.dragGroup || me.ddGroup,
              			dragText: me.dragText,
              			repairHighlightColor: me.nodeHighlightColor,
              			repairHighlight: me.nodeHighlightOnRepair
          			});
      			}

      			if (me.enableDrop) {
          			me.dropZone = Ext.create('Ext.tree.ViewDropZone', {
              			view: view,
              			ddGroup: me.dropGroup || me.ddGroup,
              			allowContainerDrops: me.allowContainerDrops,
              			appendOnly: me.appendOnly,
              			allowParentInserts: me.allowParentInserts,
              			expandDelay: me.expandDelay,
              			dropHighlightColor: me.nodeHighlightColor,
              			dropHighlight: me.nodeHighlightOnDrop,
              			isValidDropPoint : me.isValidDropPoint,
              			onContainerDrop : me.onPlotContainerDrop,
              			onNodeDrop      : me.onPlotNodeDrop,
              			onContainerOver : me.onPlotContainerOver
          			});
      			}
			}
        }
	},
	
27b2a53e   Benjamin Renard   Link tab plot to ...
703
704
705
706
	updateLinkedToMultiPlotMode : function() {
		this.plotTabContent.updateLinkedToMultiPlotMode(this.tabObject.get('multi-plot-linked'));
	},
	
437c4dbc   Benjamin Renard   First implementat...
707
708
709
710
711
712
713
714
715
716
717
718
719
	init : function(config) {
		var me = this;
		
		this.plotElementPanel = config.plotElementPanel;
		
		var store = Ext.create('Ext.data.TreeStore', {
			root: {
				expanded: true
		    }
		});
		
		this.plotElementPanel = config.plotElementPanel;
		
27b2a53e   Benjamin Renard   Link tab plot to ...
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
		this.simplifiedViewCombo = Ext.create('Ext.form.field.Checkbox', {
			xtype: 'checkbox',
			boxLabel: 'Simplified View',
			listeners: {
				change: function(combo, newValue, oldValue, eOpts) {
					if (this.tabObject)
			        	this.tabObject.set('tree-simplified-view', newValue);
					if (newValue != oldValue)
						this.buildTree(this.tabObject);
				},
			    scope: this
			}
		});
		
		this.linkToMultiPlotCombo = Ext.create('Ext.form.field.Checkbox', {
			xtype: 'checkbox',
			boxLabel: 'Link to MultiPlot',
			listeners: {
				change: function(combo, newValue, oldValue, eOpts) {
					if (this.tabObject)
					{
			        	this.tabObject.set('multi-plot-linked', newValue);
			        	this.updateLinkedToMultiPlotMode();
					}
				},
			    scope: this
			}
		});
		
437c4dbc   Benjamin Renard   First implementat...
749
750
751
		var myConf = {
				store: store,
				rootVisible: false,
17433635   Benjamin Renard   Add series and sp...
752
753
				hideHeaders: true,
				viewConfig:{
e84ed2cf   Benjamin Renard   Add Interval Tick...
754
755
	                plugins: this.getDragAndDropPluginConfig(),
	                preserveScrollOnRefresh: true
17433635   Benjamin Renard   Add series and sp...
756
	            },
437c4dbc   Benjamin Renard   First implementat...
757
758
				listeners: {
			        select: me.onNodeSelect,
a0bf9157   Benjamin Renard   Add tick plot and...
759
			        deselect: me.onNodeDeselect,
17433635   Benjamin Renard   Add series and sp...
760
			        cellclick: me.onCellClick,
437c4dbc   Benjamin Renard   First implementat...
761
			        scope: me
abe09878   Benjamin Renard   Add panels and ax...
762
763
764
765
766
767
768
769
770
771
772
773
774
			    },
			    columns: [
			              {
			            	  xtype: 'treecolumn',
			                  text: 'Plot Element',
			                  flex: 1,
			                  dataIndex: 'text',
			                  renderer: function (val, meta, rec) {
			                	  var fullVal = val;
			                	  if (rec.getAdditionalText)
			                	    fullVal += rec.getAdditionalText();
			                	  return fullVal;
			                  }
17433635   Benjamin Renard   Add series and sp...
775
776
777
778
779
780
781
782
783
784
785
			              },
			              {
			            	  menuDisabled: true, 
			            	  align: 'center',
			            	  width: 24, 
			            	  renderer: function(v,m,record){
			            		  if (record.get('removable'))
			            			  return'<div class="icon-small-remover" style="width: 16px; height: 16px; vertical-align: middle;"></div>';
			            		  else
			            			  return '';
			            	  }
abe09878   Benjamin Renard   Add panels and ax...
786
787
788
789
790
791
			              }
			    ],
			    tbar: [
			           {
			        	   xtype: 'button',
			        	   text: 'Add panel',
17433635   Benjamin Renard   Add series and sp...
792
			        	   iconCls: 'icon-add',
abe09878   Benjamin Renard   Add panels and ax...
793
			        	   handler: function() {
17433635   Benjamin Renard   Add series and sp...
794
795
			        		   var newPabelNode = this.addPanelNode(this.tabObject.createNewPanel());
			        		   this.getSelectionModel().select(newPabelNode);
abe09878   Benjamin Renard   Add panels and ax...
796
797
			        	   },
			        	   scope: this
17433635   Benjamin Renard   Add series and sp...
798
799
			           },
			           '->',
27b2a53e   Benjamin Renard   Link tab plot to ...
800
801
802
			           this.linkToMultiPlotCombo,
			           ' ',
			           this.simplifiedViewCombo
abe09878   Benjamin Renard   Add panels and ax...
803
			    ]
437c4dbc   Benjamin Renard   First implementat...
804
805
806
807
808
		};
		
		Ext.apply (this , Ext.apply (arguments, myConf));
	}
});