/** * $RCSfile: editor_plugin_src.js,v $ * $Revision: 1.2 $ * $Date: 2005/08/23 20:28:34 $ * * Moxiecode DHTML Windows script. * * @author Moxiecode * @copyright Copyright © 2004, Moxiecode Systems AB, All rights reserved. */ // Patch openWindow, closeWindow TinyMCE functions function TinyMCE_inlinepopups_getInfo() { return { longname : 'Inline Popups', author : 'Moxiecode Systems', authorurl : 'http://tinymce.moxiecode.com', infourl : 'http://tinymce.moxiecode.com/tinymce/docs/plugin_inlinepopups.html', version : tinyMCE.majorVersion + "." + tinyMCE.minorVersion }; }; TinyMCE.prototype.orgOpenWindow = TinyMCE.prototype.openWindow; TinyMCE.prototype.openWindow = function(template, args) { // Does the caller support inline if (args['inline'] != "yes") { mcWindows.selectedWindow = null; args['mce_inside_iframe'] = false; this.orgOpenWindow(template, args); return; } var url, resizable, scrollbars; args['mce_inside_iframe'] = true; tinyMCE.windowArgs = args; if (template['file'].charAt(0) != '/' && template['file'].indexOf('://') == -1) url = tinyMCE.baseURL + "/themes/" + tinyMCE.getParam("theme") + "/" + template['file']; else url = template['file']; if (!(width = parseInt(template['width']))) width = 320; if (!(height = parseInt(template['height']))) height = 200; resizable = (args && args['resizable']) ? args['resizable'] : "no"; scrollbars = (args && args['scrollbars']) ? args['scrollbars'] : "no"; height += 18; // Replace all args as variables in URL for (var name in args) url = tinyMCE.replaceVar(url, name, escape(args[name])); var elm = document.getElementById(this.selectedInstance.editorId + '_parent'); var pos = tinyMCE.getAbsPosition(elm); // Center div in editor area pos.absLeft += Math.round((elm.firstChild.clientWidth / 2) - (width / 2)); pos.absTop += Math.round((elm.firstChild.clientHeight / 2) - (height / 2)); mcWindows.open(url, mcWindows.idCounter++, "modal=yes,width=" + width+ ",height=" + height + ",resizable=" + resizable + ",scrollbars=" + scrollbars + ",statusbar=" + resizable + ",left=" + pos.absLeft + ",top=" + pos.absTop); }; TinyMCE.prototype.orgCloseWindow = TinyMCE.prototype.closeWindow; TinyMCE.prototype.closeWindow = function(win) { if (mcWindows.selectedWindow != null) mcWindows.selectedWindow.close(); else this.orgCloseWindow(win); }; TinyMCE.prototype.setWindowTitle = function(win_ref, title) { for (var n in mcWindows.windows) { var win = mcWindows.windows[n]; if (win_ref.name == win.id + "_iframe") window.frames[win.id + "_iframe"].document.getElementById(win.id + '_title').innerHTML = title; } }; // * * * * * MCWindows classes below // Windows handler function MCWindows() { this.settings = new Array(); this.windows = new Array(); this.isMSIE = (navigator.appName == "Microsoft Internet Explorer"); this.isGecko = navigator.userAgent.indexOf('Gecko') != -1; this.isSafari = navigator.userAgent.indexOf('Safari') != -1; this.isMac = navigator.userAgent.indexOf('Mac') != -1; this.isMSIE5_0 = this.isMSIE && (navigator.userAgent.indexOf('MSIE 5.0') != -1); this.action = "none"; this.selectedWindow = null; this.lastSelectedWindow = null; this.zindex = 100; this.mouseDownScreenX = 0; this.mouseDownScreenY = 0; this.mouseDownLayerX = 0; this.mouseDownLayerY = 0; this.mouseDownWidth = 0; this.mouseDownHeight = 0; this.idCounter = 0; }; MCWindows.prototype.init = function(settings) { this.settings = settings; if (this.isMSIE) this.addEvent(document, "mousemove", mcWindows.eventDispatcher); else this.addEvent(window, "mousemove", mcWindows.eventDispatcher); this.addEvent(document, "mouseup", mcWindows.eventDispatcher); this.doc = document; }; MCWindows.prototype.getParam = function(name, default_value) { var value = null; value = (typeof(this.settings[name]) == "undefined") ? default_value : this.settings[name]; // Fix bool values if (value == "true" || value == "false") return (value == "true"); return value; }; MCWindows.prototype.eventDispatcher = function(e) { e = typeof(e) == "undefined" ? window.event : e; if (mcWindows.selectedWindow == null) return; // Switch focus if (mcWindows.isGecko && e.type == "mousedown") { var elm = e.currentTarget; for (var n in mcWindows.windows) { var win = mcWindows.windows[n]; if (win.headElement == elm || win.resizeElement == elm) { win.focus(); break; } } } switch (e.type) { case "mousemove": mcWindows.selectedWindow.onMouseMove(e); break; case "mouseup": mcWindows.selectedWindow.onMouseUp(e); break; case "mousedown": mcWindows.selectedWindow.onMouseDown(e); break; case "focus": mcWindows.selectedWindow.onFocus(e); break; } }; MCWindows.prototype.addEvent = function(obj, name, handler) { if (this.isMSIE) obj.attachEvent("on" + name, handler); else obj.addEventListener(name, handler, true); }; MCWindows.prototype.cancelEvent = function(e) { if (this.isMSIE) { e.returnValue = false; e.cancelBubble = true; } else e.preventDefault(); }; MCWindows.prototype.parseFeatures = function(opts) { // Cleanup the options opts = opts.toLowerCase(); opts = opts.replace(/;/g, ","); opts = opts.replace(/[^0-9a-z=,]/g, ""); var optionChunks = opts.split(','); var options = new Array(); options['left'] = "10"; options['top'] = "10"; options['width'] = "300"; options['height'] = "300"; options['resizable'] = "yes"; options['minimizable'] = "yes"; options['maximizable'] = "yes"; options['close'] = "yes"; options['movable'] = "yes"; options['statusbar'] = "yes"; options['scrollbars'] = "auto"; options['modal'] = "no"; if (opts == "") return options; for (var i=0; i'; html += ''; html += ''; html += '
'; html += '
'; html += '
'; // html += ' '; // html += ' '; html += '
'; html += '
'; html += '
'; if (features['statusbar'] == "yes") { html += '
'; if (features['resizable'] == "yes") { if (this.isGecko) html += '
'; else html += '
'; } html += '
'; } html += '
'; html += ''; html += ''; // Create iframe this.createFloatingIFrame(id, features['left'], features['top'], features['width'], features['height'], html); }; // Blocks the document events by placing a image over the whole document MCWindows.prototype.setDocumentLock = function(state) { if (state) { var elm = document.getElementById('mcWindowEventBlocker'); if (elm == null) { elm = document.createElement("div"); elm.id = "mcWindowEventBlocker"; elm.style.position = "absolute"; elm.style.left = "0px"; elm.style.top = "0px"; document.body.appendChild(elm); } elm.style.display = "none"; var imgPath = this.getParam("images_path"); var width = document.body.clientWidth; var height = document.body.clientHeight; elm.style.width = width; elm.style.height = height; elm.innerHTML = ''; elm.style.zIndex = mcWindows.zindex-1; elm.style.display = "block"; } else { var elm = document.getElementById('mcWindowEventBlocker'); if (mcWindows.windows.length == 0) elm.parentNode.removeChild(elm); else elm.style.zIndex = mcWindows.zindex-1; } }; // Gets called when wrapper iframe is initialized MCWindows.prototype.onLoad = function(name) { var win = mcWindows.windows[name]; var id = "mcWindow_" + name; var wrapperIframe = window.frames[id + "_iframe"].frames[0]; var wrapperDoc = window.frames[id + "_iframe"].document; var doc = window.frames[id + "_iframe"].document; var winDiv = document.getElementById("mcWindow_" + name + "_div"); var realIframe = window.frames[id + "_iframe"].frames[0]; // Set window data win.id = "mcWindow_" + name; win.winElement = winDiv; win.bodyElement = doc.getElementById(id + '_body'); win.iframeElement = doc.getElementById(id + '_iframe'); win.headElement = doc.getElementById(id + '_head'); win.titleElement = doc.getElementById(id + '_title'); win.resizeElement = doc.getElementById(id + '_resize'); win.containerElement = doc.getElementById(id + '_container'); win.left = win.features['left']; win.top = win.features['top']; win.frame = window.frames[id + '_iframe'].frames[0]; win.wrapperFrame = window.frames[id + '_iframe']; win.wrapperIFrameElement = document.getElementById(id + "_iframe"); // Add event handlers mcWindows.addEvent(win.headElement, "mousedown", mcWindows.eventDispatcher); if (win.resizeElement != null) mcWindows.addEvent(win.resizeElement, "mousedown", mcWindows.eventDispatcher); if (mcWindows.isMSIE) { mcWindows.addEvent(realIframe.document, "mousemove", mcWindows.eventDispatcher); mcWindows.addEvent(realIframe.document, "mouseup", mcWindows.eventDispatcher); } else { mcWindows.addEvent(realIframe, "mousemove", mcWindows.eventDispatcher); mcWindows.addEvent(realIframe, "mouseup", mcWindows.eventDispatcher); mcWindows.addEvent(realIframe, "focus", mcWindows.eventDispatcher); } for (var i=0; i