]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.editors.win32/src/org/simantics/editors/win32/ole/DWFDefinition.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.editors.win32 / src / org / simantics / editors / win32 / ole / DWFDefinition.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  * DWF (Design Web Format) file.\r
20  * Embedding works with Autodesk Design Review 2009\r
21  * \r
22  * \r
23  * @author Marko Luukkainen <marko.luukkainen@vtt.fi>\r
24  *\r
25  */\r
26 public class DWFDefinition implements EditorDefinition{\r
27 \r
28         @Override\r
29         public OleController createController(OleFrame frame, OleClientSite site, OleAutomation auto) {\r
30                 return null;\r
31         }\r
32         \r
33         @Override\r
34         public String getProgID() {\r
35                 return null; //ADView.ADViewer\r
36         }\r
37         \r
38         @Override\r
39         public boolean supportSuffix(String suffix) {\r
40                 return suffix.equals("dwf");    \r
41         }\r
42         \r
43         @Override\r
44         public boolean useBrowser() {\r
45                 return false;\r
46         }\r
47         \r
48         @Override\r
49         public boolean useFileInput() {\r
50                 return true;\r
51         }\r
52 }\r