]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.editors.win32/src/org/simantics/editors/win32/ole/EditorDefinition.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.editors.win32 / src / org / simantics / editors / win32 / ole / EditorDefinition.java
1 /*******************************************************************************\r
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management\r
3  * in Industry THTH ry.\r
4  * All rights reserved. This program and the accompanying materials\r
5  * are made available under the terms of the Eclipse Public License v1.0\r
6  * which accompanies this distribution, and is available at\r
7  * http://www.eclipse.org/legal/epl-v10.html\r
8  *\r
9  * Contributors:\r
10  *     VTT Technical Research Centre of Finland - initial API and implementation\r
11  *******************************************************************************/\r
12 package org.simantics.editors.win32.ole;\r
13 \r
14 import org.eclipse.swt.ole.win32.OleAutomation;\r
15 import org.eclipse.swt.ole.win32.OleClientSite;\r
16 import org.eclipse.swt.ole.win32.OleFrame;\r
17 \r
18 /**\r
19  * ControllerFactory for embedding OLE editors into eclipse\r
20  * There are three different methods to integrate editors to eclipse\r
21  * 1. Use browser integration\r
22  * 2. Use OLE's automatic resolver\r
23  * 3. Using progID to get ActiveX control, and managing that control by self supplied code.\r
24  * \r
25  * @author Marko Luukkainen <marko.luukkainen@vtt.fi>\r
26  *\r
27  */\r
28 public interface EditorDefinition {\r
29         \r
30         public boolean supportSuffix(String suffix);\r
31         \r
32         /**\r
33          * Use embedded browser to show the input\r
34          * @return\r
35          */\r
36         public boolean useBrowser();\r
37         \r
38         /**\r
39          * Use OLE's automatic resolver for embedding\r
40          * @return\r
41          */\r
42         public boolean useFileInput();\r
43         \r
44         /**\r
45          * Returns ActiveX component's progID\r
46          * @return\r
47          */\r
48         public String getProgID();\r
49         \r
50         public OleController createController(OleFrame frame, OleClientSite site, OleAutomation auto);\r
51 \r
52 }\r