]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - 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
diff --git a/bundles/org.simantics.editors.win32/src/org/simantics/editors/win32/ole/WMP_Definition.java b/bundles/org.simantics.editors.win32/src/org/simantics/editors/win32/ole/WMP_Definition.java
new file mode 100644 (file)
index 0000000..ebf28ef
--- /dev/null
@@ -0,0 +1,59 @@
+/*******************************************************************************\r
+ * Copyright (c) 2007, 2010 Association for Decentralized Information Management\r
+ * in Industry THTH ry.\r
+ * All rights reserved. This program and the accompanying materials\r
+ * are made available under the terms of the Eclipse Public License v1.0\r
+ * which accompanies this distribution, and is available at\r
+ * http://www.eclipse.org/legal/epl-v10.html\r
+ *\r
+ * Contributors:\r
+ *     VTT Technical Research Centre of Finland - initial API and implementation\r
+ *******************************************************************************/\r
+package org.simantics.editors.win32.ole;\r
+\r
+import org.eclipse.swt.ole.win32.OleAutomation;\r
+import org.eclipse.swt.ole.win32.OleClientSite;\r
+import org.eclipse.swt.ole.win32.OleFrame;\r
+\r
+/**\r
+ * Windows Media Player\r
+ * \r
+ * @author Marko Luukkainen <marko.luukkainen@vtt.fi>\r
+ *\r
+ */\r
+public class WMP_Definition implements EditorDefinition{\r
+       \r
+       static String[] suffix = new String[]{"wav","wma","wmv","asf","mp3","mpg","avi"};\r
+       \r
+       @Override\r
+       public OleController createController(OleFrame frame, OleClientSite site,\r
+                       OleAutomation auto) {\r
+               return new WMPController(frame,site,auto);\r
+       }\r
+       \r
+       @Override\r
+       public String getProgID() {\r
+               return "WMPlayer.OCX";\r
+       }\r
+       \r
+       @Override\r
+       public boolean supportSuffix(String suffix) {\r
+               for (String s: WMP_Definition.suffix) {\r
+                       if (suffix.equals(s))\r
+                               return true;\r
+               }\r
+               return false;\r
+       }\r
+       \r
+       @Override\r
+       public boolean useBrowser() {\r
+               return false;\r
+       }\r
+       \r
+       @Override\r
+       public boolean useFileInput() {\r
+               return false;\r
+       }\r
+       \r
+\r
+}\r