]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.editors.win32/src/org/simantics/editors/win32/ole/PreviewDefinition.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.editors.win32 / src / org / simantics / editors / win32 / ole / PreviewDefinition.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  * Embedding for Windows Picture and Fax Preview\r
20  * \r
21  * @author Marko Luukkainen <marko.luukkainen@vtt.fi>\r
22  *\r
23  */\r
24 public class PreviewDefinition implements EditorDefinition{\r
25         \r
26         @Override\r
27         public OleController createController(OleFrame frame, OleClientSite site,\r
28                         OleAutomation auto) {\r
29                 return new PreviewController(frame,site,auto);\r
30         }\r
31         \r
32         @Override\r
33         public String getProgID() {\r
34                 return "Preview.Preview";\r
35         }\r
36         \r
37         @Override\r
38         public boolean supportSuffix(String suffix) {\r
39                 if (suffix.equals("png"))\r
40                         return true;\r
41                 if (suffix.equals("jpg"))\r
42                         return true;\r
43                 if (suffix.equals("bmp"))\r
44                         return true;\r
45                 return false;\r
46         }\r
47         \r
48         @Override\r
49         public boolean useBrowser() {\r
50                 return false;\r
51         }\r
52         \r
53         @Override\r
54         public boolean useFileInput() {\r
55                 return false;\r
56         }\r
57 \r
58 }\r