Blame view

js/app/views/PlotComponents/PlotTree.js 20.3 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'
	],
	
17433635   Benjamin Renard   Add series and sp...
18
19
20
	//
	isSimplifiedView: false,
	
437c4dbc   Benjamin Renard   First implementat...
21
22
23
24
	//Link to the Plot Element Panel
    plotElementPanel: null,
	
	//Tab object
abe09878   Benjamin Renard   Add panels and ax...
25
26
27
28
    tabObject: null,
	
	//Panels list node
	panelsNode: null,
437c4dbc   Benjamin Renard   First implementat...
29
30
31
32
33
34
	
	constructor: function(config) {
		this.init(config);	    
		this.callParent(arguments);
	},
	
17433635   Benjamin Renard   Add series and sp...
35
36
37
38
39
	setSimplifiedMode: function(isSimplifiedView) {
		this.isSimplifiedView = isSimplifiedView;
		this.buildTree(this.tabObject);
	},
	
437c4dbc   Benjamin Renard   First implementat...
40
	buildTree: function(tabObject) {
abe09878   Benjamin Renard   Add panels and ax...
41
42
43
44
		if (this.store.getRootNode().hasChildNodes())
			this.store.getRootNode().removeAll();
		
		this.tabObject = tabObject;
437c4dbc   Benjamin Renard   First implementat...
45
		
17433635   Benjamin Renard   Add series and sp...
46
47
48
49
		if (!this.isSimplifiedView)
		{
			//Page Node
			var pageNode = this.store.getRootNode().appendChild(new amdaPlotObj.PlotPageTreeNode({object : tabObject}));
437c4dbc   Benjamin Renard   First implementat...
50
		
17433635   Benjamin Renard   Add series and sp...
51
			//Layout node
003ba315   Benjamin Renard   Add Epoch Plot an...
52
			pageNode.appendChild(new amdaPlotObj.PlotLayoutTreeNode({object : tabObject}));
437c4dbc   Benjamin Renard   First implementat...
53
		
17433635   Benjamin Renard   Add series and sp...
54
55
56
57
58
59
60
61
62
63
64
65
			//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...
66
67
68
		
		var me = this;
		this.tabObject.panels().each(function (panelObject) {
17433635   Benjamin Renard   Add series and sp...
69
			me.addPanelNode(panelObject);
abe09878   Benjamin Renard   Add panels and ax...
70
71
72
		});
	},
	
abe09878   Benjamin Renard   Add panels and ax...
73
74
75
76
77
78
79
80
81
82
83
	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...
84
					axesNode = panelNode.appendChild(new amdaPlotObj.PlotAxesTreeNode({object : panelObject}));
abe09878   Benjamin Renard   Add panels and ax...
85
86
87
				return;
			}
		});
437c4dbc   Benjamin Renard   First implementat...
88
		
abe09878   Benjamin Renard   Add panels and ax...
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
		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...
120
121
	},
	
003ba315   Benjamin Renard   Add Epoch Plot an...
122
123
124
	buildPanelParamsNode: function(panelObject, selectedParamId) {
		selectedParamId = (typeof selectedParamId !== 'undefined') ? selectedParamId : '';
		
17433635   Benjamin Renard   Add series and sp...
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
		var paramsNode = null;
		
		var me = this;
		this.panelsNode.eachChild(function (panelNode) {
			//Retrieve corresponding panel node
			if (panelNode.object == panelObject)
			{
				if (!me.isSimplifiedView)
				{
					//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...
153
		var selectedParamNode = null;
17433635   Benjamin Renard   Add series and sp...
154
		panelObject.params().each(function (paramObject) {
a0bf9157   Benjamin Renard   Add tick plot and...
155
156
157
			var paramNode = paramsNode.appendChild(new amdaPlotObj.PlotParamTreeNode({object : paramObject}));
			if (paramObject.get('id') == selectedParamId)
				selectedParamNode = paramNode;
17433635   Benjamin Renard   Add series and sp...
158
159
		});
		this.getView().refresh();
a0bf9157   Benjamin Renard   Add tick plot and...
160
161
162
		
		if (selectedParamNode)
			this.getSelectionModel().select(selectedParamNode);
17433635   Benjamin Renard   Add series and sp...
163
164
	},
	
339866c4   Benjamin Renard   Add text legend d...
165
166
167
	buildPanelAdditionalObjectsNode: function(panelObject, selectedObjectId) {
		selectedObjectId = (typeof selectedObjectId !== 'undefined') ? selectedObjectId : '';
		
94abdb37   Benjamin Renard   Add params legend...
168
169
170
171
172
173
174
175
176
177
178
179
180
		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...
181
182
183
184
185
186
187
188
				}
				return;
			}
		});
		
		if (objectsNode == null)
			return;
		
339866c4   Benjamin Renard   Add text legend d...
189
190
191
192
193
		//Remove old objects nodes
		objectsNode.removeAll();
		
		//create legends node
		this.buildPanelLegendsNode(panelObject, objectsNode, selectedObjectId);
94abdb37   Benjamin Renard   Add params legend...
194
195
	},
	
339866c4   Benjamin Renard   Add text legend d...
196
	buildPanelLegendsNode: function(panelObject, objectsNode, selectedObjectId) {
94abdb37   Benjamin Renard   Add params legend...
197
198
199
200
		var legendsNode = objectsNode.appendChild(new amdaPlotObj.PlotLegendsTreeNode({object : panelObject}));
		
		legendsNode.appendChild(new amdaPlotObj.PlotSeriesLegendTreeNode({object : panelObject}));
		
339866c4   Benjamin Renard   Add text legend d...
201
202
203
204
205
206
207
208
209
210
211
212
		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}));
			if (legendObject.get('id') == selectedObjectId)
				selectedTextLegendNode = textLegendNode;
		});
		
		this.getView().refresh();
		if (selectedTextLegendNode)
			this.getSelectionModel().select(selectedTextLegendNode);
94abdb37   Benjamin Renard   Add params legend...
213
214
	},
	
17433635   Benjamin Renard   Add series and sp...
215
216
217
	addPanelNode: function(panelObject) {
		var panelNode = this.panelsNode.appendChild(new amdaPlotObj.PlotPanelTreeNode({object : panelObject}));
		if (!this.isSimplifiedView)
94abdb37   Benjamin Renard   Add params legend...
218
		{
17433635   Benjamin Renard   Add series and sp...
219
220
			//Axes node
			this.buildPanelAxesNode(panelObject);
94abdb37   Benjamin Renard   Add params legend...
221
222
223
			//Additional objects
			this.buildPanelAdditionalObjectsNode(panelObject);
		}
17433635   Benjamin Renard   Add series and sp...
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
		//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...
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
	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...
297
298
299
	onNodeSelect: function(tree, record, index, eOpts) {
		if (index == -1)
			return;
437c4dbc   Benjamin Renard   First implementat...
300
		if (this.plotElementPanel != null)
abe09878   Benjamin Renard   Add panels and ax...
301
			this.plotElementPanel.setElement(record.type, record.object, this);
437c4dbc   Benjamin Renard   First implementat...
302
303
	},
	
a0bf9157   Benjamin Renard   Add tick plot and...
304
305
306
307
308
	onNodeDeselect: function(tree, record, index, eOpts) {
		if (this.plotElementPanel != null)
			this.plotElementPanel.resetElement();
	},
	
17433635   Benjamin Renard   Add series and sp...
309
310
311
	onCellClick: function(tree, td, cellIndex, record, tr, rowIndex, e, eOpts) {
		if ((cellIndex === 1) && record.get('removable'))
		{
a0bf9157   Benjamin Renard   Add tick plot and...
312
			this.getSelectionModel().deselectAll();
17433635   Benjamin Renard   Add series and sp...
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
			switch (record.get('type'))
			{
			case 'panel' :
				if (this.tabObject.removePanelById(record.object.get('id')))
					this.buildPanelsNode();
				break;
			case 'param' :
				var panelObject = null;
				if (!this.isSimplifiedView)
					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...
329
330
331
332
333
334
335
336
337
			case 'text-legend' :
				var panelObject = null;
				if (!this.isSimplifiedView)
					panelObject = record.parentNode.parentNode.object;
				else
					panelObject = record.parentNode.object;
				if (panelObject.removeTextLegendById(record.object.get('id')))
					this.buildPanelAdditionalObjectsNode(panelObject);
				break;
17433635   Benjamin Renard   Add series and sp...
338
339
340
341
			}
		}
	},
	
437c4dbc   Benjamin Renard   First implementat...
342
343
344
345
346
347
348
	getSelectedNode: function() {
		var selection = this.getSelectionModel().getSelection();
		if ((selection == null) || (selection.length == 0))
			return null;
		return selection[0];
	},
	
17433635   Benjamin Renard   Add series and sp...
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
	getSelectedPlotType: function() {
		var selectedNode = this.getSelectedNode();
		if (selectedNode == null)
			return 'none';
		var crtNode = selectedNode;
		do {
			if (crtNode.get('type') == 'panel')
				return crtNode.object.get('panel-plot-type');
			crtNode = crtNode.parentNode;
		} while(crtNode != null);
		return 'none';
	},
	
	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...
397
398
			//Rebuild params node
			this.buildPanelsNode();
17433635   Benjamin Renard   Add series and sp...
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
		}
		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...
421
422
				//Rebuild params node
				this.buildPanelsNode();
17433635   Benjamin Renard   Add series and sp...
423
424
425
426
427
428
429
	        }
		}

		//Create param object
		var newParamObject = panelObject.createNewParam();
		newParamObject.set('param-id', paramId);
		
a0bf9157   Benjamin Renard   Add tick plot and...
430
		this.buildPanelParamsNode(panelObject, newParamObject.get('id'));		
17433635   Benjamin Renard   Add series and sp...
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
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
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
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
	},
	
	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
          			});
      			}
			}
        }
	},
	
437c4dbc   Benjamin Renard   First implementat...
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
	init : function(config) {
		var me = this;
		
		this.plotElementPanel = config.plotElementPanel;
		
		var store = Ext.create('Ext.data.TreeStore', {
			root: {
				expanded: true
		    }
		});
		
		this.plotElementPanel = config.plotElementPanel;
		
		var myConf = {
				store: store,
				rootVisible: false,
17433635   Benjamin Renard   Add series and sp...
607
608
609
610
				hideHeaders: true,
				viewConfig:{
	                plugins: this.getDragAndDropPluginConfig()
	            },
437c4dbc   Benjamin Renard   First implementat...
611
612
				listeners: {
			        select: me.onNodeSelect,
a0bf9157   Benjamin Renard   Add tick plot and...
613
			        deselect: me.onNodeDeselect,
17433635   Benjamin Renard   Add series and sp...
614
			        cellclick: me.onCellClick,
437c4dbc   Benjamin Renard   First implementat...
615
			        scope: me
abe09878   Benjamin Renard   Add panels and ax...
616
617
618
619
620
621
622
623
624
625
626
627
628
			    },
			    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...
629
630
631
632
633
634
635
636
637
638
639
			              },
			              {
			            	  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...
640
641
642
643
644
645
			              }
			    ],
			    tbar: [
			           {
			        	   xtype: 'button',
			        	   text: 'Add panel',
17433635   Benjamin Renard   Add series and sp...
646
			        	   iconCls: 'icon-add',
abe09878   Benjamin Renard   Add panels and ax...
647
			        	   handler: function() {
17433635   Benjamin Renard   Add series and sp...
648
649
			        		   var newPabelNode = this.addPanelNode(this.tabObject.createNewPanel());
			        		   this.getSelectionModel().select(newPabelNode);
abe09878   Benjamin Renard   Add panels and ax...
650
651
			        	   },
			        	   scope: this
17433635   Benjamin Renard   Add series and sp...
652
653
654
655
656
657
658
659
660
661
662
			           },
			           '->',
			           {
			        	   xtype: 'checkbox',
			        	   boxLabel: 'Simplified View',
			               listeners: {
			            	   change: function(combo, newValue, oldValue, eOpts) {
			            		   this.setSimplifiedMode(newValue);
			            	   },
			            	   scope: this
			               }
abe09878   Benjamin Renard   Add panels and ax...
663
664
			           }
			    ]
437c4dbc   Benjamin Renard   First implementat...
665
666
667
668
669
		};
		
		Ext.apply (this , Ext.apply (arguments, myConf));
	}
});