]> code.citadel.org Git - citadel.git/blobdiff - webcit/tiny_mce/plugins/emotions/editor_plugin_src.js
* Removed the Kevin Roth rich text editor and replaced it with TinyMCE.
[citadel.git] / webcit / tiny_mce / plugins / emotions / editor_plugin_src.js
diff --git a/webcit/tiny_mce/plugins/emotions/editor_plugin_src.js b/webcit/tiny_mce/plugins/emotions/editor_plugin_src.js
new file mode 100644 (file)
index 0000000..afa01b2
--- /dev/null
@@ -0,0 +1,50 @@
+/* Import plugin specific language pack */
+tinyMCE.importPluginLanguagePack('emotions', 'en,sv,zh_cn,cs,fa,fr_ca,fr,de,pl,pt_br,nl');
+
+function TinyMCE_emotions_getInfo() {
+       return {
+               longname : 'Emotions',
+               author : 'Moxiecode Systems',
+               authorurl : 'http://tinymce.moxiecode.com',
+               infourl : 'http://tinymce.moxiecode.com/tinymce/docs/plugin_emotions.html',
+               version : tinyMCE.majorVersion + "." + tinyMCE.minorVersion
+       };
+};
+
+/**
+ * Returns the HTML contents of the emotions control.
+ */
+function TinyMCE_emotions_getControlHTML(control_name) {
+       switch (control_name) {
+               case "emotions":
+                       return '<a href="javascript:tinyMCE.execInstanceCommand(\'{$editor_id}\',\'mceEmotion\');" onmousedown="return false;"><img id="{$editor_id}_emotions" src="{$pluginurl}/images/emotions.gif" title="{$lang_emotions_desc}" width="20" height="20" class="mceButtonNormal" onmouseover="tinyMCE.switchClass(this,\'mceButtonOver\');" onmouseout="tinyMCE.restoreClass(this);" onmousedown="tinyMCE.restoreAndSwitchClass(this,\'mceButtonDown\');" /></a>';
+       }
+
+       return "";
+}
+
+/**
+ * Executes the mceEmotion command.
+ */
+function TinyMCE_emotions_execCommand(editor_id, element, command, user_interface, value) {
+       // Handle commands
+       switch (command) {
+               case "mceEmotion":
+                       var template = new Array();
+
+                       template['file'] = '../../plugins/emotions/emotions.htm'; // Relative to theme
+                       template['width'] = 160;
+                       template['height'] = 160;
+
+                       // Language specific width and height addons
+                       template['width'] += tinyMCE.getLang('lang_emotions_delta_width', 0);
+                       template['height'] += tinyMCE.getLang('lang_emotions_delta_height', 0);
+
+                       tinyMCE.openWindow(template, {editor_id : editor_id, inline : "yes"});
+
+                       return true;
+       }
+
+       // Pass to next handler in chain
+       return false;
+}