]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.editors.win32/src/org/simantics/editors/win32/ole/WMP_Definition.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.editors.win32 / src / org / simantics / editors / win32 / ole / WMP_Definition.java
1 /*******************************************************************************
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management
3  * in Industry THTH ry.
4  * All rights reserved. This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License v1.0
6  * which accompanies this distribution, and is available at
7  * http://www.eclipse.org/legal/epl-v10.html
8  *
9  * Contributors:
10  *     VTT Technical Research Centre of Finland - initial API and implementation
11  *******************************************************************************/
12 package org.simantics.editors.win32.ole;
13
14 import org.eclipse.swt.ole.win32.OleAutomation;
15 import org.eclipse.swt.ole.win32.OleClientSite;
16 import org.eclipse.swt.ole.win32.OleFrame;
17
18 /**
19  * Windows Media Player
20  * 
21  * @author Marko Luukkainen <marko.luukkainen@vtt.fi>
22  *
23  */
24 public class WMP_Definition implements EditorDefinition{
25         
26         static String[] suffix = new String[]{"wav","wma","wmv","asf","mp3","mpg","avi"};
27         
28         @Override
29         public OleController createController(OleFrame frame, OleClientSite site,
30                         OleAutomation auto) {
31                 return new WMPController(frame,site,auto);
32         }
33         
34         @Override
35         public String getProgID() {
36                 return "WMPlayer.OCX";
37         }
38         
39         @Override
40         public boolean supportSuffix(String suffix) {
41                 for (String s: WMP_Definition.suffix) {
42                         if (suffix.equals(s))
43                                 return true;
44                 }
45                 return false;
46         }
47         
48         @Override
49         public boolean useBrowser() {
50                 return false;
51         }
52         
53         @Override
54         public boolean useFileInput() {
55                 return false;
56         }
57         
58
59 }