Skip to main content
summaryrefslogtreecommitdiffstats
blob: 716155eb97520040b39d273c71361c7e9b45239b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
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
120
121
122
123
124
125
126
127
/*****************************************************************************
 * Copyright (c) 2008 CEA LIST.
 *
 *    
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *  Cedric Dumoulin  Cedric.dumoulin@lifl.fr - Initial API and implementation
 *
  *****************************************************************************/
package org.eclipse.papyrus.core.adaptor.gmf;

import org.eclipse.core.commands.operations.IOperationHistory;
import org.eclipse.core.commands.operations.IUndoContext;
import org.eclipse.emf.edit.domain.IEditingDomainProvider;
import org.eclipse.gef.editparts.ZoomManager;
import org.eclipse.gef.ui.palette.PaletteViewer;
import org.eclipse.gef.ui.views.palette.PalettePage;
import org.eclipse.gmf.runtime.common.ui.action.ActionManager;
import org.eclipse.gmf.runtime.diagram.ui.parts.IDiagramEditDomain;
import org.eclipse.gmf.runtime.diagram.ui.parts.IDiagramWorkbenchPart;
import org.eclipse.papyrus.sasheditor.extension.EditorFactoryRegistry;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Display;
import org.eclipse.ui.IEditorPart;
import org.eclipse.ui.internal.util.Util;
import org.eclipse.ui.part.IShowInTargetList;


/**
 * Multidiagram editors for GMF-UML generated diagrams.
 * @author dumoulin
 *
 */
public class GmfUmlMultiDiagramEditor extends GmfMultiDiagramEditor implements IDiagramWorkbenchPart {

	/**
	 * From generated UML diagram.
	 * Used by Utils.
	 */
	public static final String ID = "papyrus.multidiagram.gmf.uml.GmfUmlMultiDiagramEditor"; //$NON-NLS-1$

	/**
	 * Constructor.
	 *
	 */
	public GmfUmlMultiDiagramEditor()
	{
		super();
		System.out.println("Create GmfUmlMultiDiagramEditor");
//		setEditDomain(new DefaultEditDomain(this));
	}
	
	/**
	 * Create an instance of the ModelManagerEditor which will be used to manage the models.
	 * @return
	 */
	 protected ModelManagerEditor createModelManagerEditor()
	{
		return new UMLModelManagerEditor();
	}

		/**
		 * Return the EditorRegistry loading the extension points accepted by this editor.
		 * Should set the namespace.
		 */
		protected EditorFactoryRegistry createEditorRegistry() {
	      return new EditorFactoryRegistry(Activator.ID);
	    }
		

	/** 
	 * Returns the adapter for the specified key.
	 * 
	 * <P><EM>IMPORTANT</EM> certain requests, such as the property sheet, may be made before
	 * or after {@link #createPartControl(Composite)} is called. The order is unspecified by
	 * the Workbench.
	 * @see org.eclipse.core.runtime.IAdaptable#getAdapter(java.lang.Class)
	 */

	public Object getAdapter(Class type) {
		
		// check if we need to retrieve adapter from the current editor.
		if (Display.getCurrent()!=null &&
				(type == IShowInTargetList.class 
				|| PalettePage.class == type
				|| PaletteViewer.class == type
				|| (ActionManager.class == type)
				|| (IDiagramEditDomain.class == type)
	            || (type == ZoomManager.class)
	            || (type == IUndoContext.class)
	            || (type == IOperationHistory.class) ) )
		{
			IEditorPart innerEditor = getActiveEditor();
			// see bug 138823 - prevent some subclasses from causing
			// an infinite loop
			if (innerEditor != null && innerEditor != this) {
				return Util.getAdapter(innerEditor, type);
			}
		}
		// Check if we require the documentProvider
		if(type == IEditingDomainProvider.class) 
		{
			return ((GmfMultiDiagramSharedObjects)getSharedObjects()).getDocumentProvider();
		}
		
//		Object res = loadedEditor.getAdapter(type);
//		if(res!=null)
//			return res;
//		if (type == IContentOutlinePage.class)
//		{
////			showStack();
//			return new TreeOutlinePage(new TreeViewer(), getEditDomain(), getActionRegistry(), getSelectionSynchronizer(), getModel());
//		}
//		if (type == IDiagramOverviewPage.class)
//		{
//			System.err.println("getAdapter(" + type+ ")");
////			showStack();
////			return new DiagramOverviewPage(new TreeViewer(), getEditDomain(), getActionRegistry(), getSelectionSynchronizer(), getModel());
//		}
		return super.getAdapter(type);
	}
	
}

Back to the top