]> git.donarmstrong.com Git - roundcube.git/blobdiff - program/js/tiny_mce/plugins/emotions/editor_plugin_src.js
Imported Upstream version 0.2~alpha
[roundcube.git] / program / js / tiny_mce / plugins / emotions / editor_plugin_src.js
index c7d60cf3f5c03b6c94af352d3004fb7bcf8c0a24..df0d370aeab690245bf03bb35623dd7b180720d0 100644 (file)
@@ -1,63 +1,40 @@
 /**\r
- * $Id: editor_plugin_src.js 201 2007-02-12 15:56:56Z spocke $\r
+ * $Id: editor_plugin_src.js 520 2008-01-07 16:30:32Z spocke $\r
  *\r
  * @author Moxiecode\r
- * @copyright Copyright © 2004-2007, Moxiecode Systems AB, All rights reserved.\r
+ * @copyright Copyright © 2004-2008, 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
+(function() {\r
+       tinymce.create('tinymce.plugins.EmotionsPlugin', {\r
+               init : function(ed, url) {\r
+                       // Register commands\r
+                       ed.addCommand('mceEmotion', function() {\r
+                               ed.windowManager.open({\r
+                                       file : url + '/emotions.htm',\r
+                                       width : 250 + parseInt(ed.getLang('emotions.delta_width', 0)),\r
+                                       height : 160 + parseInt(ed.getLang('emotions.delta_height', 0)),\r
+                                       inline : 1\r
+                               }, {\r
+                                       plugin_url : url\r
+                               });\r
+                       });\r
+\r
+                       // Register buttons\r
+                       ed.addButton('emotions', {title : 'emotions.emotions_desc', cmd : 'mceEmotion'});\r
+               },\r
+\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
-               // Pass to next handler in chain\r
-               return false;\r
-       }\r
-};\r
-\r
-// Register plugin\r
-tinyMCE.addPlugin('emotions', TinyMCE_EmotionsPlugin);\r
+       // Register plugin\r
+       tinymce.PluginManager.add('emotions', tinymce.plugins.EmotionsPlugin);\r
+})();
\ No newline at end of file