]> git.donarmstrong.com Git - roundcube.git/blobdiff - program/js/tiny_mce/plugins/emotions/editor_plugin_src.js
Imported Upstream version 0.1~rc2
[roundcube.git] / program / js / tiny_mce / plugins / emotions / editor_plugin_src.js
diff --git a/program/js/tiny_mce/plugins/emotions/editor_plugin_src.js b/program/js/tiny_mce/plugins/emotions/editor_plugin_src.js
new file mode 100644 (file)
index 0000000..c7d60cf
--- /dev/null
@@ -0,0 +1,63 @@
+/**\r
+ * $Id: editor_plugin_src.js 201 2007-02-12 15:56:56Z spocke $\r
+ *\r
+ * @author Moxiecode\r
+ * @copyright Copyright © 2004-2007, Moxiecode Systems AB, All rights reserved.\r
+ */\r
+\r
+/* Import plugin specific language pack */\r
+tinyMCE.importPluginLanguagePack('emotions');\r
+\r
+// Plucin static class\r
+var TinyMCE_EmotionsPlugin = {\r
+       getInfo : function() {\r
+               return {\r
+                       longname : 'Emotions',\r
+                       author : 'Moxiecode Systems AB',\r
+                       authorurl : 'http://tinymce.moxiecode.com',\r
+                       infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/emotions',\r
+                       version : tinyMCE.majorVersion + "." + tinyMCE.minorVersion\r
+               };\r
+       },\r
+\r
+       /**\r
+        * Returns the HTML contents of the emotions control.\r
+        */\r
+       getControlHTML : function(cn) {\r
+               switch (cn) {\r
+                       case "emotions":\r
+                               return tinyMCE.getButtonHTML(cn, 'lang_emotions_desc', '{$pluginurl}/images/emotions.gif', 'mceEmotion');\r
+               }\r
+\r
+               return "";\r
+       },\r
+\r
+       /**\r
+        * Executes the mceEmotion command.\r
+        */\r
+       execCommand : function(editor_id, element, command, user_interface, value) {\r
+               // Handle commands\r
+               switch (command) {\r
+                       case "mceEmotion":\r
+                               var template = new Array();\r
+\r
+                               template['file'] = '../../plugins/emotions/emotions.htm'; // Relative to theme\r
+                               template['width'] = 250;\r
+                               template['height'] = 160;\r
+\r
+                               // Language specific width and height addons\r
+                               template['width'] += tinyMCE.getLang('lang_emotions_delta_width', 0);\r
+                               template['height'] += tinyMCE.getLang('lang_emotions_delta_height', 0);\r
+\r
+                               tinyMCE.openWindow(template, {editor_id : editor_id, inline : "yes"});\r
+\r
+                               return true;\r
+               }\r
+\r
+               // Pass to next handler in chain\r
+               return false;\r
+       }\r
+};\r
+\r
+// Register plugin\r
+tinyMCE.addPlugin('emotions', TinyMCE_EmotionsPlugin);\r