]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.editors.win32/src/org/simantics/editors/win32/ole/WMP_Definition.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.editors.win32 / src / org / simantics / editors / win32 / ole / WMP_Definition.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  * Windows Media Player\r
20  * \r
21  * @author Marko Luukkainen <marko.luukkainen@vtt.fi>\r
22  *\r
23  */\r
24 public class WMP_Definition implements EditorDefinition{\r
25         \r
26         static String[] suffix = new String[]{"wav","wma","wmv","asf","mp3","mpg","avi"};\r
27         \r
28         @Override\r
29         public OleController createController(OleFrame frame, OleClientSite site,\r
30                         OleAutomation auto) {\r
31                 return new WMPController(frame,site,auto);\r
32         }\r
33         \r
34         @Override\r
35         public String getProgID() {\r
36                 return "WMPlayer.OCX";\r
37         }\r
38         \r
39         @Override\r
40         public boolean supportSuffix(String suffix) {\r
41                 for (String s: WMP_Definition.suffix) {\r
42                         if (suffix.equals(s))\r
43                                 return true;\r
44                 }\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
59 }\r