2001-09-26 02:53:13 +04:00
|
|
|
/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: NPL 1.1/GPL 2.0/LGPL 2.1
|
2000-05-10 09:30:13 +04:00
|
|
|
*
|
2001-09-26 02:53:13 +04:00
|
|
|
* The contents of this file are subject to the Netscape Public License
|
|
|
|
* Version 1.1 (the "License"); you may not use this file except in
|
|
|
|
* compliance with the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/NPL/
|
2000-05-10 09:30:13 +04:00
|
|
|
*
|
2001-09-26 02:53:13 +04:00
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
2000-05-10 09:30:13 +04:00
|
|
|
*
|
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
2001-09-26 02:53:13 +04:00
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998-1999
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
2000-05-10 09:30:13 +04:00
|
|
|
*
|
2001-03-22 03:59:29 +03:00
|
|
|
* Contributor(s):
|
2001-09-27 04:02:49 +04:00
|
|
|
* Sammy Ford (sford@swbell.net)
|
2000-05-10 09:30:13 +04:00
|
|
|
* Dan Haddix (dan6992@hotmail.com)
|
|
|
|
* John Ratke (jratke@owc.net)
|
2000-06-28 18:58:36 +04:00
|
|
|
* Ryan Cassin (rcassin@supernova.org)
|
2002-01-09 16:51:37 +03:00
|
|
|
* Daniel Glazman (glazman@netscape.com)
|
2001-09-26 02:53:13 +04:00
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the NPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the NPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
2000-05-10 09:30:13 +04:00
|
|
|
|
|
|
|
/* Main Composer window UI control */
|
|
|
|
|
2002-07-10 00:24:37 +04:00
|
|
|
var gEditor;
|
|
|
|
var editorShell; // XXX THIS NEEDS TO DIE
|
2000-05-10 09:30:13 +04:00
|
|
|
var documentModified;
|
|
|
|
var prefAuthorString = "";
|
|
|
|
var NormalMode = 1;
|
|
|
|
var PreviewMode = 2;
|
|
|
|
// These must match enums in nsIEditorShell.idl:
|
|
|
|
var DisplayModePreview = 0;
|
|
|
|
var DisplayModeNormal = 1;
|
|
|
|
var DisplayModeAllTags = 2;
|
|
|
|
var DisplayModeSource = 3;
|
|
|
|
var PreviousNonSourceDisplayMode = 1;
|
2000-05-15 07:05:56 +04:00
|
|
|
var gEditorDisplayMode = 1; // Normal Editor mode
|
2000-05-10 09:30:13 +04:00
|
|
|
var WebCompose = false; // Set true for Web Composer, leave false for Messenger Composer
|
|
|
|
var docWasModified = false; // Check if clean document, if clean then unload when user "Opens"
|
2000-05-12 18:46:25 +04:00
|
|
|
var gContentWindow = 0;
|
|
|
|
var gSourceContentWindow = 0;
|
2001-05-17 03:44:56 +04:00
|
|
|
var gHTMLSourceChanged = false;
|
2000-05-12 18:46:25 +04:00
|
|
|
var gContentWindowDeck;
|
|
|
|
var gFormatToolbar;
|
2000-08-10 07:43:09 +04:00
|
|
|
var gFormatToolbarHidden = false;
|
2000-07-12 03:41:22 +04:00
|
|
|
var gFormatToolbarCollapsed;
|
2000-05-15 07:05:56 +04:00
|
|
|
var gEditModeBar;
|
2000-05-10 09:30:13 +04:00
|
|
|
var gNormalModeButton;
|
|
|
|
var gTagModeButton;
|
|
|
|
var gSourceModeButton;
|
|
|
|
var gPreviewModeButton;
|
2000-05-12 06:37:40 +04:00
|
|
|
var gIsHTMLEditor = false;
|
2000-09-06 03:21:22 +04:00
|
|
|
var gColorObj = new Object();
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
var gDefaultTextColor = "";
|
|
|
|
var gDefaultBackgroundColor = "";
|
2002-01-09 16:51:37 +03:00
|
|
|
var gCSSPrefListener;
|
2001-11-30 03:06:33 +03:00
|
|
|
var gPrefs;
|
2000-09-06 03:21:22 +04:00
|
|
|
|
2000-05-10 09:30:13 +04:00
|
|
|
// These must be kept in synch with the XUL <options> lists
|
|
|
|
var gFontSizeNames = new Array("xx-small","x-small","small","medium","large","x-large","xx-large");
|
|
|
|
|
|
|
|
const nsIFilePicker = Components.interfaces.nsIFilePicker;
|
|
|
|
|
2002-01-09 16:51:37 +03:00
|
|
|
function nsButtonPrefListener()
|
|
|
|
{
|
|
|
|
try {
|
|
|
|
var pbi = pref.QueryInterface(Components.interfaces.nsIPrefBranchInternal);
|
|
|
|
pbi.addObserver(this.domain, this, false);
|
|
|
|
} catch(ex) {
|
|
|
|
dump("Failed to observe prefs: " + ex + "\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// implements nsIObserver
|
|
|
|
nsButtonPrefListener.prototype =
|
|
|
|
{
|
|
|
|
domain: "editor.use_css",
|
|
|
|
observe: function(subject, topic, prefName)
|
|
|
|
{
|
|
|
|
// verify that we're changing a button pref
|
|
|
|
if (topic != "nsPref:changed") return;
|
|
|
|
if (prefName.substr(0, this.domain.length) != this.domain) return;
|
|
|
|
|
|
|
|
var button = document.getElementById("cmd_highlight");
|
|
|
|
var mixedObj = new Object();
|
|
|
|
if (button) {
|
|
|
|
var prefs = GetPrefs();
|
|
|
|
var useCSS = prefs.getBoolPref(prefName);
|
2002-07-13 02:28:30 +04:00
|
|
|
if (useCSS && gEditor && gIsHTMLEditor) {
|
2002-01-09 16:51:37 +03:00
|
|
|
button.removeAttribute("disabled");
|
2002-07-13 02:28:30 +04:00
|
|
|
var state = gEditor.getHighlightColorState(mixedObj);
|
2002-01-09 16:51:37 +03:00
|
|
|
button.setAttribute("state", state);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
button.setAttribute("disabled", "true");
|
|
|
|
button.setAttribute("state", "transparent");
|
|
|
|
}
|
2002-07-13 02:28:30 +04:00
|
|
|
|
|
|
|
if (gEditor && gIsHTMLEditor)
|
|
|
|
gEditor.isCSSEnabled = useCSS;
|
2002-01-09 16:51:37 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function AfterHighlightColorChange()
|
|
|
|
{
|
2002-07-13 02:28:30 +04:00
|
|
|
if (!gIsHTMLEditor) return;
|
|
|
|
|
2002-01-09 16:51:37 +03:00
|
|
|
var button = document.getElementById("cmd_highlight");
|
|
|
|
if (button) {
|
2002-07-13 02:28:30 +04:00
|
|
|
var mixedObj = new Object();
|
|
|
|
var state = gEditor.getHighlightColorState(mixedObj);
|
2002-01-09 16:51:37 +03:00
|
|
|
button.setAttribute("state", state);
|
|
|
|
onHighlightColorChange();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-05-10 09:30:13 +04:00
|
|
|
function EditorOnLoad()
|
|
|
|
{
|
|
|
|
// See if argument was passed.
|
|
|
|
if ( window.arguments && window.arguments[0] ) {
|
2001-03-22 03:59:29 +03:00
|
|
|
// Opened via window.openDialog with URL as argument.
|
2000-05-10 09:30:13 +04:00
|
|
|
// Put argument where EditorStartup expects it.
|
2002-03-07 03:05:09 +03:00
|
|
|
document.getElementById( "args" ).setAttribute( "value", window.arguments[0] );
|
2000-05-10 09:30:13 +04:00
|
|
|
}
|
2001-03-22 03:59:29 +03:00
|
|
|
|
2001-08-15 12:40:18 +04:00
|
|
|
// get default character set if provided
|
|
|
|
if ("arguments" in window && window.arguments.length > 1 && window.arguments[1]) {
|
|
|
|
if (window.arguments[1].indexOf("charset=") != -1) {
|
|
|
|
var arrayArgComponents = window.arguments[1].split("=");
|
|
|
|
if (arrayArgComponents) {
|
|
|
|
// Put argument where EditorStartup expects it.
|
|
|
|
document.getElementById( "args" ).setAttribute("charset", arrayArgComponents[1]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-05-10 09:30:13 +04:00
|
|
|
WebCompose = true;
|
2000-06-15 09:31:32 +04:00
|
|
|
window.tryToClose = EditorCanClose;
|
|
|
|
|
2000-05-10 09:30:13 +04:00
|
|
|
// Continue with normal startup.
|
|
|
|
EditorStartup('html', document.getElementById("content-frame"));
|
|
|
|
}
|
2001-03-22 03:59:29 +03:00
|
|
|
|
2000-05-10 09:30:13 +04:00
|
|
|
function TextEditorOnLoad()
|
|
|
|
{
|
|
|
|
// See if argument was passed.
|
|
|
|
if ( window.arguments && window.arguments[0] ) {
|
2001-03-22 03:59:29 +03:00
|
|
|
// Opened via window.openDialog with URL as argument.
|
2000-05-10 09:30:13 +04:00
|
|
|
// Put argument where EditorStartup expects it.
|
2002-03-07 03:05:09 +03:00
|
|
|
document.getElementById( "args" ).setAttribute( "value", window.arguments[0] );
|
2000-05-10 09:30:13 +04:00
|
|
|
}
|
|
|
|
// Continue with normal startup.
|
|
|
|
EditorStartup('text', document.getElementById("content-frame"));
|
|
|
|
}
|
|
|
|
|
2002-02-08 02:44:32 +03:00
|
|
|
// This should be called by all editor users when they close their window
|
|
|
|
// or other similar "done with editor" actions, like recycling a Mail Composer window.
|
|
|
|
function EditorCleanup()
|
|
|
|
{
|
|
|
|
SwitchInsertCharToAnotherEditorOrClose();
|
|
|
|
}
|
|
|
|
|
2000-05-10 09:30:13 +04:00
|
|
|
function PageIsEmptyAndUntouched()
|
|
|
|
{
|
2002-07-10 00:24:37 +04:00
|
|
|
return (gEditor != null) && gEditor.documentIsEmpty &&
|
2001-09-11 01:50:12 +04:00
|
|
|
!docWasModified && !gHTMLSourceChanged;
|
2000-05-10 09:30:13 +04:00
|
|
|
}
|
|
|
|
|
2001-05-23 04:23:03 +04:00
|
|
|
function IsInHTMLSourceMode()
|
|
|
|
{
|
|
|
|
return (gEditorDisplayMode == DisplayModeSource);
|
|
|
|
}
|
|
|
|
|
2001-05-18 10:42:37 +04:00
|
|
|
// are we editing HTML (i.e. neither in HTML source mode, nor editing a text file)
|
|
|
|
function IsEditingRenderedHTML()
|
|
|
|
{
|
2002-07-13 02:28:30 +04:00
|
|
|
return gIsHTMLEditor && !IsInHTMLSourceMode();
|
2001-05-18 10:42:37 +04:00
|
|
|
}
|
|
|
|
|
2001-05-23 04:23:03 +04:00
|
|
|
|
2001-08-15 12:32:55 +04:00
|
|
|
var DocumentReloadListener =
|
|
|
|
{
|
|
|
|
NotifyDocumentCreated: function() {},
|
|
|
|
NotifyDocumentWillBeDestroyed: function() {},
|
|
|
|
|
|
|
|
NotifyDocumentStateChanged:function( isNowDirty )
|
|
|
|
{
|
2002-07-10 00:24:37 +04:00
|
|
|
var charset = gEditor.documentCharacterSet;
|
2001-08-15 12:32:55 +04:00
|
|
|
|
|
|
|
// unregister the listener to prevent multiple callbacks
|
|
|
|
editorShell.UnregisterDocumentStateListener( DocumentReloadListener );
|
|
|
|
|
|
|
|
// update the META charset with the current presentation charset
|
2002-07-10 00:24:37 +04:00
|
|
|
gEditor.documentCharacterSet = charset;
|
2001-08-15 12:32:55 +04:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2002-04-16 17:30:40 +04:00
|
|
|
function addEditorClickEventListener()
|
|
|
|
{
|
|
|
|
try {
|
|
|
|
var bodyelement = GetBodyElement();
|
|
|
|
if (bodyelement)
|
|
|
|
bodyelement.addEventListener("click", EditorClick, false);
|
|
|
|
} catch (e) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
var MessageComposeDocumentStateListener =
|
|
|
|
{
|
|
|
|
NotifyDocumentCreated: function()
|
|
|
|
{
|
2002-07-13 02:28:30 +04:00
|
|
|
gEditor = editorShell.editor;
|
|
|
|
|
|
|
|
// do all of our QI'ing here so we don't need to do it elsewhere
|
|
|
|
DoAllQueryInterfaceOnEditor();
|
|
|
|
|
2002-04-16 17:30:40 +04:00
|
|
|
addEditorClickEventListener();
|
|
|
|
},
|
|
|
|
|
|
|
|
NotifyDocumentWillBeDestroyed: function()
|
|
|
|
{
|
2002-06-03 22:04:33 +04:00
|
|
|
// note that the editorshell seems to be gone at this point
|
|
|
|
// so we don't have a way to remove the click listener.
|
|
|
|
// hopefully it is being cleaned up with all listeners
|
2002-04-16 17:30:40 +04:00
|
|
|
},
|
|
|
|
|
|
|
|
NotifyDocumentStateChanged:function()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
function isPlaintextEditor()
|
|
|
|
{
|
|
|
|
var editorflags;
|
|
|
|
try {
|
2002-07-10 00:24:37 +04:00
|
|
|
editorflags = gEditor.flags;
|
2002-04-16 17:30:40 +04:00
|
|
|
} catch(e) {}
|
|
|
|
|
|
|
|
return (editorflags & Components.interfaces.nsIPlaintextEditor.eEditorPlaintextMask);
|
|
|
|
}
|
2001-08-15 12:32:55 +04:00
|
|
|
|
2002-07-13 02:28:30 +04:00
|
|
|
function DoAllQueryInterfaceOnEditor()
|
|
|
|
{
|
|
|
|
// do QI here so the interfaces will be accessible on gEditor
|
|
|
|
try {
|
|
|
|
gEditor.QueryInterface(Components.interfaces.nsIHTMLEditor);
|
|
|
|
} catch(e) {}
|
|
|
|
try {
|
|
|
|
gEditor.QueryInterface(Components.interfaces.nsIPlaintextEditor);
|
|
|
|
} catch(e) {}
|
|
|
|
try {
|
|
|
|
gEditor.QueryInterface(Components.interfaces.nsITableEditor);
|
|
|
|
} catch(e) {}
|
|
|
|
}
|
|
|
|
|
2000-05-10 09:30:13 +04:00
|
|
|
// This is called when the real editor document is created,
|
|
|
|
// before it's loaded.
|
|
|
|
var DocumentStateListener =
|
|
|
|
{
|
2001-03-22 03:59:29 +03:00
|
|
|
NotifyDocumentCreated: function()
|
2000-05-10 09:30:13 +04:00
|
|
|
{
|
2002-07-10 00:24:37 +04:00
|
|
|
gEditor = editorShell.editor;
|
|
|
|
|
2002-07-13 02:28:30 +04:00
|
|
|
// do all of our QI'ing here so we don't need to do it elsewhere
|
|
|
|
DoAllQueryInterfaceOnEditor();
|
|
|
|
|
2001-03-29 01:16:44 +04:00
|
|
|
// Call EditorSetDefaultPrefsAndDoctype first so it gets the default author before initing toolbars
|
|
|
|
EditorSetDefaultPrefsAndDoctype();
|
2000-05-10 09:30:13 +04:00
|
|
|
EditorInitToolbars();
|
2000-09-14 18:45:16 +04:00
|
|
|
BuildRecentMenu(true); // Build the recent files menu and save to prefs
|
|
|
|
|
2001-05-09 09:23:37 +04:00
|
|
|
// Just for convenience
|
|
|
|
gContentWindow = window._content;
|
|
|
|
gContentWindow.focus();
|
2000-06-28 18:58:36 +04:00
|
|
|
|
2000-07-12 03:41:22 +04:00
|
|
|
// udpate menu items now that we have an editor to play with
|
2001-05-09 09:23:37 +04:00
|
|
|
// Note: This must be AFTER gContentWindow.focus();
|
2000-05-10 09:30:13 +04:00
|
|
|
window.updateCommands("create");
|
2001-01-18 03:59:18 +03:00
|
|
|
|
|
|
|
if (!("InsertCharWindow" in window))
|
|
|
|
window.InsertCharWindow = null;
|
2002-03-07 03:05:09 +03:00
|
|
|
|
|
|
|
// We must wait until document is created to get proper Url
|
|
|
|
// (Windows may load with local file paths)
|
|
|
|
SetSaveAndPublishUI(GetDocumentUrl());
|
2002-04-16 17:30:40 +04:00
|
|
|
|
|
|
|
// Add mouse click watcher if right type of editor
|
|
|
|
if (!isPlaintextEditor())
|
|
|
|
addEditorClickEventListener();
|
2000-05-10 09:30:13 +04:00
|
|
|
},
|
2001-03-22 03:59:29 +03:00
|
|
|
|
2002-06-03 22:04:33 +04:00
|
|
|
// note that the editorshell seems to be gone at this point
|
|
|
|
// so we don't have a way to remove the click listener.
|
|
|
|
// hopefully it is being cleaned up with all listeners
|
2000-05-10 09:30:13 +04:00
|
|
|
NotifyDocumentWillBeDestroyed: function() {},
|
2002-04-16 17:30:40 +04:00
|
|
|
|
2000-05-10 09:30:13 +04:00
|
|
|
NotifyDocumentStateChanged:function( isNowDirty )
|
|
|
|
{
|
|
|
|
/* Notify our dirty detector so this window won't be closed if
|
|
|
|
another document is opened */
|
|
|
|
if (isNowDirty)
|
|
|
|
docWasModified = true;
|
2001-03-22 03:59:29 +03:00
|
|
|
|
2000-05-27 05:51:31 +04:00
|
|
|
// hack! Should not need this updateCommands, but there is some controller
|
|
|
|
// bug that this works around. ??
|
2000-06-09 03:29:43 +04:00
|
|
|
// comment out the following line because it cause 41573 IME problem on Mac
|
2001-05-09 09:23:37 +04:00
|
|
|
//gContentWindow.focus();
|
2000-05-10 09:30:13 +04:00
|
|
|
window.updateCommands("create");
|
2000-05-27 05:51:31 +04:00
|
|
|
window.updateCommands("save");
|
2000-05-10 09:30:13 +04:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
function EditorStartup(editorType, editorElement)
|
|
|
|
{
|
2000-05-12 06:37:40 +04:00
|
|
|
gIsHTMLEditor = (editorType == "html");
|
|
|
|
if (gIsHTMLEditor)
|
|
|
|
{
|
2000-05-15 07:05:56 +04:00
|
|
|
gSourceContentWindow = document.getElementById("content-source");
|
|
|
|
|
|
|
|
gEditModeBar = document.getElementById("EditModeToolbar");
|
2000-05-12 06:37:40 +04:00
|
|
|
gNormalModeButton = document.getElementById("NormalModeButton");
|
|
|
|
gTagModeButton = document.getElementById("TagModeButton");
|
|
|
|
gSourceModeButton = document.getElementById("SourceModeButton");
|
|
|
|
gPreviewModeButton = document.getElementById("PreviewModeButton");
|
|
|
|
|
2000-09-20 02:46:47 +04:00
|
|
|
// mark first tab as selected
|
2001-04-18 10:59:04 +04:00
|
|
|
document.getElementById("EditModeTabs").selectedTab = gNormalModeButton;
|
2000-09-20 02:46:47 +04:00
|
|
|
|
2000-05-12 06:37:40 +04:00
|
|
|
// XUL elements we use when switching from normal editor to edit source
|
2000-05-12 18:46:25 +04:00
|
|
|
gContentWindowDeck = document.getElementById("ContentWindowDeck");
|
|
|
|
gFormatToolbar = document.getElementById("FormatToolbar");
|
2000-05-12 06:37:40 +04:00
|
|
|
}
|
2000-05-10 09:30:13 +04:00
|
|
|
|
|
|
|
// store the editor shell in the window, so that child windows can get to it.
|
2000-06-16 10:01:19 +04:00
|
|
|
editorShell = editorElement.editorShell; // this pattern exposes a JS/XBL bug that causes leaks
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
editorShell.editorType = editorType;
|
2000-05-10 09:30:13 +04:00
|
|
|
|
|
|
|
editorShell.webShellWindow = window;
|
2000-06-22 04:48:45 +04:00
|
|
|
editorShell.contentWindow = window._content;
|
2000-05-10 09:30:13 +04:00
|
|
|
|
2002-07-10 00:24:37 +04:00
|
|
|
// add a listener to be called when document is really done loading.
|
|
|
|
// We don't have an editor yet, so we can't call
|
|
|
|
// gEditor.AddDocumentStateListener. Where can we hang it?
|
|
|
|
editorShell.RegisterDocumentStateListener( DocumentStateListener );
|
|
|
|
|
2000-08-24 04:28:20 +04:00
|
|
|
// set up our global prefs object
|
|
|
|
GetPrefsService();
|
2001-03-22 03:59:29 +03:00
|
|
|
|
|
|
|
// Startup also used by other editor users, such as Message Composer
|
2000-08-10 07:43:09 +04:00
|
|
|
EditorSharedStartup();
|
|
|
|
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
// Commands specific to the Composer Application window,
|
2001-05-18 10:42:37 +04:00
|
|
|
// (i.e., not embedded editors)
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
// such as file-related commands, HTML Source editing, Edit Modes...
|
|
|
|
SetupComposerWindowCommands();
|
2000-05-15 07:05:56 +04:00
|
|
|
|
2002-01-09 16:51:37 +03:00
|
|
|
gCSSPrefListener = new nsButtonPrefListener();
|
|
|
|
|
2000-05-10 09:30:13 +04:00
|
|
|
// Get url for editor content and load it.
|
|
|
|
// the editor gets instantiated by the editor shell when the URL has finished loading.
|
|
|
|
var url = document.getElementById("args").getAttribute("value");
|
2001-08-15 12:40:18 +04:00
|
|
|
var charset = document.getElementById("args").getAttribute("charset");
|
2002-07-10 00:24:37 +04:00
|
|
|
// XXX We can't call gEditor.documentCharacterSet = charset
|
|
|
|
// XXX because gEditor isn't set until after the document loads.
|
2001-08-15 12:40:18 +04:00
|
|
|
if (charset) editorShell.SetDocumentCharacterSet(charset);
|
2002-02-20 05:17:46 +03:00
|
|
|
|
2002-07-10 00:24:37 +04:00
|
|
|
// We need the docshell to do a loadurl!
|
|
|
|
// editorshell gets it from the window in PrepareDocumentForEditing.
|
2000-05-10 09:30:13 +04:00
|
|
|
editorShell.LoadUrl(url);
|
|
|
|
}
|
|
|
|
|
2002-01-18 23:52:23 +03:00
|
|
|
// This is also called by Message Composer
|
2000-05-15 07:05:56 +04:00
|
|
|
function EditorSharedStartup()
|
|
|
|
{
|
2001-05-09 09:23:37 +04:00
|
|
|
// Just for convenience
|
|
|
|
gContentWindow = window._content;
|
|
|
|
|
2001-03-09 04:47:18 +03:00
|
|
|
// set up JS-implemented commands for Text or HTML editing
|
|
|
|
switch (editorShell.editorType)
|
|
|
|
{
|
2001-03-29 01:16:44 +04:00
|
|
|
case "html":
|
|
|
|
case "htmlmail":
|
2002-07-13 02:28:30 +04:00
|
|
|
gIsHTMLEditor = true;
|
|
|
|
|
2001-03-29 01:16:44 +04:00
|
|
|
SetupHTMLEditorCommands();
|
2001-05-18 10:42:37 +04:00
|
|
|
editorShell.contentsMIMEType = "text/html";
|
2002-04-16 17:30:40 +04:00
|
|
|
if (editorShell.editorType == "htmlmail")
|
|
|
|
editorShell.RegisterDocumentStateListener( MessageComposeDocumentStateListener );
|
|
|
|
else
|
|
|
|
// add a listener to be called when document is really done loading
|
|
|
|
editorShell.RegisterDocumentStateListener( DocumentStateListener );
|
2001-03-29 01:16:44 +04:00
|
|
|
break;
|
2002-04-16 17:30:40 +04:00
|
|
|
|
2001-03-29 01:16:44 +04:00
|
|
|
case "text":
|
2002-04-16 17:30:40 +04:00
|
|
|
// add listener when document is done loading (for toolbar setup)
|
|
|
|
editorShell.RegisterDocumentStateListener( DocumentStateListener );
|
|
|
|
// continue below
|
|
|
|
|
2001-03-29 01:16:44 +04:00
|
|
|
case "textmail":
|
|
|
|
SetupTextEditorCommands();
|
2001-05-18 10:42:37 +04:00
|
|
|
editorShell.contentsMIMEType = "text/plain";
|
2001-03-29 01:16:44 +04:00
|
|
|
break;
|
2002-04-16 17:30:40 +04:00
|
|
|
|
2001-03-29 01:16:44 +04:00
|
|
|
default:
|
2002-07-10 00:24:37 +04:00
|
|
|
dump("INVALID EDITOR TYPE: " + editorShell.editorType + "\n");
|
2001-03-29 01:16:44 +04:00
|
|
|
SetupTextEditorCommands();
|
2001-05-18 10:42:37 +04:00
|
|
|
editorShell.contentsMIMEType = "text/plain";
|
2001-03-29 01:16:44 +04:00
|
|
|
break;
|
2001-03-09 04:47:18 +03:00
|
|
|
}
|
2001-11-15 18:28:24 +03:00
|
|
|
var isMac = (GetOS() == gMac);
|
2000-05-15 07:05:56 +04:00
|
|
|
|
2000-07-01 04:37:38 +04:00
|
|
|
// Set platform-specific hints for how to select cells
|
|
|
|
// Mac uses "Cmd", all others use "Ctrl"
|
2001-11-15 18:28:24 +03:00
|
|
|
var tableKey = GetString(isMac ? "XulKeyMac" : "TableSelectKey");
|
2000-07-15 01:58:50 +04:00
|
|
|
var dragStr = tableKey+GetString("Drag");
|
|
|
|
var clickStr = tableKey+GetString("Click");
|
2000-07-01 04:37:38 +04:00
|
|
|
|
2001-11-15 18:28:24 +03:00
|
|
|
var delStr = GetString(isMac ? "Clear" : "Del");
|
2000-07-01 04:37:38 +04:00
|
|
|
|
2000-07-15 01:58:50 +04:00
|
|
|
SafeSetAttribute("menu_SelectCell", "acceltext", clickStr);
|
|
|
|
SafeSetAttribute("menu_SelectRow", "acceltext", dragStr);
|
|
|
|
SafeSetAttribute("menu_SelectColumn", "acceltext", dragStr);
|
|
|
|
SafeSetAttribute("menu_SelectAllCells", "acceltext", dragStr);
|
2000-07-01 04:37:38 +04:00
|
|
|
// And add "Del" or "Clear"
|
2000-07-15 01:58:50 +04:00
|
|
|
SafeSetAttribute("menu_DeleteCellContents", "acceltext", delStr);
|
2000-07-01 04:37:38 +04:00
|
|
|
|
2001-08-10 07:47:37 +04:00
|
|
|
// Set text for indent, outdent keybinding
|
2000-08-10 07:43:09 +04:00
|
|
|
|
2000-05-15 07:05:56 +04:00
|
|
|
// hide UI that we don't have components for
|
2000-07-12 03:41:22 +04:00
|
|
|
RemoveInapplicableUIElements();
|
2000-08-24 04:28:20 +04:00
|
|
|
|
2001-11-30 03:06:33 +03:00
|
|
|
gPrefs = GetPrefs();
|
2001-03-22 03:59:29 +03:00
|
|
|
|
2000-09-06 03:21:22 +04:00
|
|
|
// Use browser colors as initial values for editor's default colors
|
|
|
|
var BrowserColors = GetDefaultBrowserColors();
|
|
|
|
if (BrowserColors)
|
2000-08-24 04:28:20 +04:00
|
|
|
{
|
2000-09-06 03:21:22 +04:00
|
|
|
gDefaultTextColor = BrowserColors.TextColor;
|
|
|
|
gDefaultBackgroundColor = BrowserColors.BackgroundColor;
|
|
|
|
}
|
2001-03-24 03:58:52 +03:00
|
|
|
|
|
|
|
// For new window, no default last-picked colors
|
|
|
|
gColorObj.LastTextColor = "";
|
|
|
|
gColorObj.LastBackgroundColor = "";
|
2002-01-09 16:51:37 +03:00
|
|
|
gColorObj.LastHighlightColor = "";
|
2000-09-06 03:21:22 +04:00
|
|
|
}
|
2000-08-24 04:28:20 +04:00
|
|
|
|
2002-01-18 23:52:23 +03:00
|
|
|
// This method is only called by Message composer when recycling a compose window
|
|
|
|
function EditorResetFontAndColorAttributes()
|
|
|
|
{
|
|
|
|
document.getElementById("cmd_fontFace").setAttribute("state", "");
|
2002-07-10 00:24:37 +04:00
|
|
|
EditorRemoveTextProperty("font", "color");
|
|
|
|
EditorRemoveTextProperty("font", "bgcolor");
|
|
|
|
EditorRemoveTextProperty("font", "size");
|
|
|
|
EditorRemoveTextProperty("small", "");
|
|
|
|
EditorRemoveTextProperty("big", "");
|
2002-01-18 23:52:23 +03:00
|
|
|
var bodyelement = GetBodyElement();
|
|
|
|
if (bodyelement)
|
|
|
|
{
|
|
|
|
bodyelement.removeAttribute("text");
|
|
|
|
bodyelement.removeAttribute("bgcolor");
|
|
|
|
bodyelement.removeAttribute("link");
|
|
|
|
bodyelement.removeAttribute("alink");
|
|
|
|
bodyelement.removeAttribute("vlink");
|
|
|
|
bodyelement.removeAttribute("background");
|
|
|
|
}
|
|
|
|
gColorObj.LastTextColor = "";
|
|
|
|
gColorObj.LastBackgroundColor = "";
|
|
|
|
gColorObj.LastHighlightColor = "";
|
|
|
|
document.getElementById("cmd_fontColor").setAttribute("state", "");
|
|
|
|
document.getElementById("cmd_backgroundColor").setAttribute("state", "");
|
|
|
|
UpdateDefaultColors();
|
|
|
|
}
|
|
|
|
|
2000-05-10 09:30:13 +04:00
|
|
|
function _EditorNotImplemented()
|
|
|
|
{
|
|
|
|
dump("Function not implemented\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
function EditorShutdown()
|
|
|
|
{
|
2002-07-10 00:24:37 +04:00
|
|
|
// nothing to do. Shutdown is called by the nsEditorBoxObject
|
2000-05-10 09:30:13 +04:00
|
|
|
}
|
|
|
|
|
2000-07-15 01:58:50 +04:00
|
|
|
function SafeSetAttribute(nodeID, attributeName, attributeValue)
|
|
|
|
{
|
|
|
|
var theNode = document.getElementById(nodeID);
|
|
|
|
if (theNode)
|
|
|
|
theNode.setAttribute(attributeName, attributeValue);
|
|
|
|
}
|
|
|
|
|
2000-08-30 06:44:18 +04:00
|
|
|
function DocumentHasBeenSaved()
|
2000-08-01 18:17:48 +04:00
|
|
|
{
|
2000-09-02 03:04:03 +04:00
|
|
|
var fileurl = "";
|
2000-08-30 06:44:18 +04:00
|
|
|
try {
|
2002-02-15 09:07:40 +03:00
|
|
|
fileurl = GetDocumentUrl();
|
2000-08-30 06:44:18 +04:00
|
|
|
} catch (e) {
|
|
|
|
return false;
|
2000-08-01 18:17:48 +04:00
|
|
|
}
|
2000-08-30 06:44:18 +04:00
|
|
|
|
2002-02-15 09:07:40 +03:00
|
|
|
if (!fileurl || IsUrlAboutBlank(fileurl))
|
2000-08-30 06:44:18 +04:00
|
|
|
return false;
|
|
|
|
|
|
|
|
// We have a file URL already
|
|
|
|
return true;
|
2000-08-01 18:17:48 +04:00
|
|
|
}
|
|
|
|
|
Composer Publishing fixes: Add support to not upload images (b=134001,r=akkana, sr=kin), Don't save site data if not successfully published (b=132604, r=akkana, sr=kin), improve error handling (b=126258, r=andreww, sr=dveditz), Make 'CheckAndSaveDocument' do publishing for remote url (b=126450, r=brade, sr=kin), Save command should publish if remote file (b=132634, r=brade,sr=kin), Fix FTP publishing (b=133823, r=brade, sr=kin) all are: a=asa, adt1.0.0+
2002-04-04 19:14:32 +04:00
|
|
|
function CheckAndSaveDocument(command, allowDontSave)
|
2000-08-08 01:12:18 +04:00
|
|
|
{
|
2002-07-10 00:24:37 +04:00
|
|
|
var document;
|
Composer Publishing fixes: Add support to not upload images (b=134001,r=akkana, sr=kin), Don't save site data if not successfully published (b=132604, r=akkana, sr=kin), improve error handling (b=126258, r=andreww, sr=dveditz), Make 'CheckAndSaveDocument' do publishing for remote url (b=126450, r=brade, sr=kin), Save command should publish if remote file (b=132634, r=brade,sr=kin), Fix FTP publishing (b=133823, r=brade, sr=kin) all are: a=asa, adt1.0.0+
2002-04-04 19:14:32 +04:00
|
|
|
try {
|
2002-07-10 00:24:37 +04:00
|
|
|
// if we don't have an editor or an document, bail
|
|
|
|
if (!gEditor)
|
|
|
|
return true;
|
|
|
|
document = gEditor.document;
|
|
|
|
if (!document)
|
Composer Publishing fixes: Add support to not upload images (b=134001,r=akkana, sr=kin), Don't save site data if not successfully published (b=132604, r=akkana, sr=kin), improve error handling (b=126258, r=andreww, sr=dveditz), Make 'CheckAndSaveDocument' do publishing for remote url (b=126450, r=brade, sr=kin), Save command should publish if remote file (b=132634, r=brade,sr=kin), Fix FTP publishing (b=133823, r=brade, sr=kin) all are: a=asa, adt1.0.0+
2002-04-04 19:14:32 +04:00
|
|
|
return true;
|
|
|
|
} catch (e) { return true; }
|
2002-03-27 05:04:43 +03:00
|
|
|
|
2002-07-10 00:24:37 +04:00
|
|
|
if (!gEditor.documentModified && !gHTMLSourceChanged)
|
2000-08-08 01:12:18 +04:00
|
|
|
return true;
|
2001-03-22 03:59:29 +03:00
|
|
|
|
2001-03-28 11:09:16 +04:00
|
|
|
// call window.focus, since we need to pop up a dialog
|
|
|
|
// and therefore need to be visible (to prevent user confusion)
|
|
|
|
window.focus();
|
|
|
|
|
Composer Publishing fixes: Add support to not upload images (b=134001,r=akkana, sr=kin), Don't save site data if not successfully published (b=132604, r=akkana, sr=kin), improve error handling (b=126258, r=andreww, sr=dveditz), Make 'CheckAndSaveDocument' do publishing for remote url (b=126450, r=brade, sr=kin), Save command should publish if remote file (b=132634, r=brade,sr=kin), Fix FTP publishing (b=133823, r=brade, sr=kin) all are: a=asa, adt1.0.0+
2002-04-04 19:14:32 +04:00
|
|
|
var scheme = GetScheme(GetDocumentUrl());
|
|
|
|
var doPublish = (scheme && scheme != "file");
|
|
|
|
|
|
|
|
var strID;
|
|
|
|
switch (command)
|
|
|
|
{
|
|
|
|
case "cmd_close":
|
|
|
|
strID = "BeforeClosing";
|
|
|
|
break;
|
|
|
|
case "cmd_preview":
|
|
|
|
strID = "BeforePreview";
|
|
|
|
break;
|
|
|
|
case "cmd_editSendPage":
|
|
|
|
strID = "SendPageReason";
|
|
|
|
break;
|
|
|
|
case "cmd_validate":
|
|
|
|
strID = "BeforeValidate";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
var reasonToSave = strID ? GetString(strID) : "";
|
|
|
|
|
2002-07-10 00:24:37 +04:00
|
|
|
var title = document.title;
|
2000-08-31 16:44:56 +04:00
|
|
|
if (!title)
|
2000-09-06 03:21:22 +04:00
|
|
|
title = GetString("untitled");
|
2001-03-22 03:59:29 +03:00
|
|
|
|
Composer Publishing fixes: Add support to not upload images (b=134001,r=akkana, sr=kin), Don't save site data if not successfully published (b=132604, r=akkana, sr=kin), improve error handling (b=126258, r=andreww, sr=dveditz), Make 'CheckAndSaveDocument' do publishing for remote url (b=126450, r=brade, sr=kin), Save command should publish if remote file (b=132634, r=brade,sr=kin), Fix FTP publishing (b=133823, r=brade, sr=kin) all are: a=asa, adt1.0.0+
2002-04-04 19:14:32 +04:00
|
|
|
var dialogTitle = GetString(doPublish ? "PublishPage" : "SaveDocument");
|
2001-11-20 12:43:34 +03:00
|
|
|
var dialogMsg = GetString("SaveFilePrompt");
|
2000-08-08 01:12:18 +04:00
|
|
|
dialogMsg = (dialogMsg.replace(/%title%/,title)).replace(/%reason%/,reasonToSave);
|
2001-03-22 03:59:29 +03:00
|
|
|
|
2002-07-13 02:28:30 +04:00
|
|
|
var promptService = GetPromptService();
|
|
|
|
if (!promptService)
|
|
|
|
return false;
|
2001-05-18 10:42:37 +04:00
|
|
|
|
2000-08-08 01:12:18 +04:00
|
|
|
var result = {value:0};
|
Composer Publishing fixes: Add support to not upload images (b=134001,r=akkana, sr=kin), Don't save site data if not successfully published (b=132604, r=akkana, sr=kin), improve error handling (b=126258, r=andreww, sr=dveditz), Make 'CheckAndSaveDocument' do publishing for remote url (b=126450, r=brade, sr=kin), Save command should publish if remote file (b=132634, r=brade,sr=kin), Fix FTP publishing (b=133823, r=brade, sr=kin) all are: a=asa, adt1.0.0+
2002-04-04 19:14:32 +04:00
|
|
|
var promptFlags = promptService.BUTTON_TITLE_CANCEL * promptService.BUTTON_POS_1;
|
|
|
|
var button1Title = null;
|
|
|
|
var button3Title = null;
|
|
|
|
|
|
|
|
if (doPublish)
|
|
|
|
{
|
|
|
|
promptFlags += promptService.BUTTON_TITLE_IS_STRING * promptService.BUTTON_POS_0;
|
|
|
|
button1Title = GetString("Publish");
|
|
|
|
button3Title = GetString("DontPublish");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
promptFlags += promptService.BUTTON_TITLE_SAVE * promptService.BUTTON_POS_0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If allowing "Don't..." button, add that
|
|
|
|
if (allowDontSave)
|
|
|
|
promptFlags += doPublish ?
|
|
|
|
(promptService.BUTTON_TITLE_IS_STRING * promptService.BUTTON_POS_2)
|
|
|
|
: (promptService.BUTTON_TITLE_DONT_SAVE * promptService.BUTTON_POS_2);
|
2002-04-05 22:15:13 +04:00
|
|
|
|
|
|
|
result = promptService.confirmEx(window, dialogTitle, dialogMsg, promptFlags,
|
|
|
|
button1Title, null, button3Title, null, {value:0});
|
2002-04-05 12:13:27 +04:00
|
|
|
|
2002-04-05 22:15:13 +04:00
|
|
|
if (result == 0)
|
2001-07-07 00:03:41 +04:00
|
|
|
{
|
|
|
|
// Save, but first finish HTML source mode
|
|
|
|
if (gHTMLSourceChanged)
|
|
|
|
FinishHTMLSource();
|
|
|
|
|
Composer Publishing fixes: Add support to not upload images (b=134001,r=akkana, sr=kin), Don't save site data if not successfully published (b=132604, r=akkana, sr=kin), improve error handling (b=126258, r=andreww, sr=dveditz), Make 'CheckAndSaveDocument' do publishing for remote url (b=126450, r=brade, sr=kin), Save command should publish if remote file (b=132634, r=brade,sr=kin), Fix FTP publishing (b=133823, r=brade, sr=kin) all are: a=asa, adt1.0.0+
2002-04-04 19:14:32 +04:00
|
|
|
if (doPublish)
|
|
|
|
{
|
|
|
|
// We save the command the user wanted to do in a global
|
|
|
|
// and return as if user canceled because publishing is asynchronous
|
|
|
|
// This command will be fired when publishing finishes
|
|
|
|
gCommandAfterPublishing = command;
|
|
|
|
goDoCommand("cmd_publish");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Save to local disk
|
2002-07-10 00:24:37 +04:00
|
|
|
var contentsMIMEType;
|
2002-07-13 02:28:30 +04:00
|
|
|
if (gIsHTMLEditor)
|
2002-07-10 00:24:37 +04:00
|
|
|
contentsMIMEType = "text/html";
|
|
|
|
else
|
|
|
|
contentsMIMEType = "text/plain";
|
|
|
|
var success = SaveDocument(false, false, contentsMIMEType);
|
2001-07-07 00:03:41 +04:00
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
2002-04-05 22:15:13 +04:00
|
|
|
if (result == 2) // "Don't Save"
|
2001-07-07 00:03:41 +04:00
|
|
|
return true;
|
2000-09-06 03:21:22 +04:00
|
|
|
|
2002-04-05 22:15:13 +04:00
|
|
|
// Default or result == 1 (Cancel)
|
2000-09-06 03:21:22 +04:00
|
|
|
return false;
|
2000-08-08 01:12:18 +04:00
|
|
|
}
|
|
|
|
|
2000-05-10 09:30:13 +04:00
|
|
|
// --------------------------- File menu ---------------------------
|
|
|
|
|
|
|
|
|
|
|
|
// used by openLocation. see openLocation.js for additional notes.
|
|
|
|
function delayedOpenWindow(chrome, flags, url)
|
|
|
|
{
|
2002-03-27 05:04:43 +03:00
|
|
|
dump("setting timeout\n");
|
2001-01-17 02:12:22 +03:00
|
|
|
setTimeout("window.openDialog('"+chrome+"','_blank','"+flags+"','"+url+"')", 10);
|
2000-05-10 09:30:13 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
function EditorNewPlaintext()
|
|
|
|
{
|
|
|
|
window.openDialog( "chrome://editor/content/TextEditorAppShell.xul",
|
|
|
|
"_blank",
|
|
|
|
"chrome,dialog=no,all",
|
|
|
|
"about:blank");
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check for changes to document and allow saving before closing
|
|
|
|
// This is hooked up to the OS's window close widget (e.g., "X" for Windows)
|
|
|
|
function EditorCanClose()
|
|
|
|
{
|
|
|
|
// Returns FALSE only if user cancels save action
|
2000-07-12 03:41:22 +04:00
|
|
|
|
2000-08-30 06:44:18 +04:00
|
|
|
// "true" means allow "Don't Save" button
|
Composer Publishing fixes: Add support to not upload images (b=134001,r=akkana, sr=kin), Don't save site data if not successfully published (b=132604, r=akkana, sr=kin), improve error handling (b=126258, r=andreww, sr=dveditz), Make 'CheckAndSaveDocument' do publishing for remote url (b=126450, r=brade, sr=kin), Save command should publish if remote file (b=132634, r=brade,sr=kin), Fix FTP publishing (b=133823, r=brade, sr=kin) all are: a=asa, adt1.0.0+
2002-04-04 19:14:32 +04:00
|
|
|
var canClose = CheckAndSaveDocument("cmd_close", true);
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
|
|
|
|
// This is our only hook into closing via the "X" in the caption
|
|
|
|
// or "Quit" (or other paths?)
|
|
|
|
// so we must shift association to another
|
|
|
|
// editor or close any non-modal windows now
|
2001-01-18 03:59:18 +03:00
|
|
|
if (canClose && "InsertCharWindow" in window && window.InsertCharWindow)
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
SwitchInsertCharToAnotherEditorOrClose();
|
|
|
|
|
|
|
|
return canClose;
|
2000-05-10 09:30:13 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// --------------------------- View menu ---------------------------
|
|
|
|
|
|
|
|
function EditorSetDocumentCharacterSet(aCharset)
|
|
|
|
{
|
2002-07-10 00:24:37 +04:00
|
|
|
if (gEditor)
|
2000-05-17 04:11:05 +04:00
|
|
|
{
|
2002-07-10 00:24:37 +04:00
|
|
|
gEditor.documentCharacterSet = aCharset;
|
2002-02-15 09:07:40 +03:00
|
|
|
var docUrl = GetDocumentUrl();
|
|
|
|
if( !IsUrlAboutBlank(docUrl))
|
2000-07-21 03:22:57 +04:00
|
|
|
{
|
2001-08-15 12:32:55 +04:00
|
|
|
// reloading the document will reverse any changes to the META charset,
|
|
|
|
// we need to put them back in, which is achieved by a dedicated listener
|
2002-07-10 00:24:37 +04:00
|
|
|
gEditor.AddDocumentStateListener( DocumentReloadListener );
|
2002-02-15 09:07:40 +03:00
|
|
|
editorShell.LoadUrl(docUrl);
|
2000-07-21 03:22:57 +04:00
|
|
|
}
|
2000-05-17 04:11:05 +04:00
|
|
|
}
|
2000-05-10 09:30:13 +04:00
|
|
|
}
|
|
|
|
|
2000-07-17 05:12:10 +04:00
|
|
|
// ------------------------------------------------------------------
|
|
|
|
function updateCharsetPopupMenu(menuPopup)
|
|
|
|
{
|
2002-07-10 00:24:37 +04:00
|
|
|
if (gEditor.documentModified && !gEditor.documentIsEmpty)
|
2000-07-17 05:12:10 +04:00
|
|
|
{
|
|
|
|
for (var i = 0; i < menuPopup.childNodes.length; i++)
|
|
|
|
{
|
|
|
|
var menuItem = menuPopup.childNodes[i];
|
2001-11-15 18:28:24 +03:00
|
|
|
menuItem.setAttribute('disabled', 'true');
|
2000-07-17 05:12:10 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2000-05-10 09:30:13 +04:00
|
|
|
|
|
|
|
// --------------------------- Text style ---------------------------
|
|
|
|
|
2002-07-10 00:24:37 +04:00
|
|
|
var gAtomService;
|
|
|
|
function GetAtomService()
|
|
|
|
{
|
|
|
|
gAtomService = Components.classes["@mozilla.org/atom-service;1"].getService(Components.interfaces.nsIAtomService);
|
|
|
|
}
|
|
|
|
|
2002-07-13 02:28:30 +04:00
|
|
|
function EditorGetTextProperty(property, attribute, value, firstHas, anyHas, allHas)
|
2002-07-10 00:24:37 +04:00
|
|
|
{
|
2002-07-13 02:28:30 +04:00
|
|
|
if (!gIsHTMLEditor) return;
|
|
|
|
try {
|
|
|
|
if (!gAtomService) GetAtomService();
|
|
|
|
var propAtom = gAtomService.getAtom(property);
|
|
|
|
gEditor.getInlineProperty(propAtom, attribute, value,
|
2002-07-10 00:24:37 +04:00
|
|
|
firstHas, anyHas, allHas);
|
2002-07-13 02:28:30 +04:00
|
|
|
}
|
|
|
|
catch(e) {}
|
2002-07-10 00:24:37 +04:00
|
|
|
}
|
|
|
|
|
2000-05-10 09:30:13 +04:00
|
|
|
function EditorSetTextProperty(property, attribute, value)
|
|
|
|
{
|
2002-07-13 02:28:30 +04:00
|
|
|
if (!gIsHTMLEditor) return;
|
|
|
|
try {
|
|
|
|
if (!gAtomService) GetAtomService();
|
|
|
|
var propAtom = gAtomService.getAtom(property);
|
|
|
|
gEditor.setInlineProperty(propAtom, attribute, value);
|
|
|
|
gContentWindow.focus();
|
|
|
|
}
|
|
|
|
catch(e) {}
|
2002-07-10 00:24:37 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
function EditorRemoveTextProperty(property, attribute)
|
|
|
|
{
|
2002-07-13 02:28:30 +04:00
|
|
|
if (!gIsHTMLEditor) return;
|
|
|
|
try {
|
|
|
|
if (!gAtomService) GetAtomService();
|
|
|
|
var propAtom = gAtomService.getAtom(property);
|
|
|
|
gEditor.removeInlineProperty(propAtom, attribute);
|
|
|
|
gContentWindow.focus();
|
|
|
|
}
|
|
|
|
catch(e) {}
|
2000-05-10 09:30:13 +04:00
|
|
|
}
|
|
|
|
|
fixes:
14753, 29843, 39864, 40141,
40139, 36679, 39542, 34729,
34855, 37216, 39292, 26447
r=sfraser,cmanske,fm; a=beppe
2000-05-25 03:00:24 +04:00
|
|
|
function onParagraphFormatChange(paraMenuList, commandID)
|
2000-05-10 09:30:13 +04:00
|
|
|
{
|
2001-03-29 01:16:44 +04:00
|
|
|
if (!paraMenuList)
|
|
|
|
return;
|
|
|
|
|
fixes:
14753, 29843, 39864, 40141,
40139, 36679, 39542, 34729,
34855, 37216, 39292, 26447
r=sfraser,cmanske,fm; a=beppe
2000-05-25 03:00:24 +04:00
|
|
|
var commandNode = document.getElementById(commandID);
|
2000-05-10 09:30:13 +04:00
|
|
|
var state = commandNode.getAttribute("state");
|
|
|
|
|
fixes:
14753, 29843, 39864, 40141,
40139, 36679, 39542, 34729,
34855, 37216, 39292, 26447
r=sfraser,cmanske,fm; a=beppe
2000-05-25 03:00:24 +04:00
|
|
|
// force match with "normal"
|
|
|
|
if (state == "body")
|
|
|
|
state = "";
|
2001-03-22 03:59:29 +03:00
|
|
|
|
fixes:
14753, 29843, 39864, 40141,
40139, 36679, 39542, 34729,
34855, 37216, 39292, 26447
r=sfraser,cmanske,fm; a=beppe
2000-05-25 03:00:24 +04:00
|
|
|
if (state == "mixed")
|
|
|
|
{
|
|
|
|
//Selection is the "mixed" ( > 1 style) state
|
|
|
|
paraMenuList.selectedItem = null;
|
2001-03-22 03:59:29 +03:00
|
|
|
paraMenuList.setAttribute("label",GetString('Mixed'));
|
fixes:
14753, 29843, 39864, 40141,
40139, 36679, 39542, 34729,
34855, 37216, 39292, 26447
r=sfraser,cmanske,fm; a=beppe
2000-05-25 03:00:24 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
var menuPopup = document.getElementById("ParagraphPopup");
|
|
|
|
var menuItems = menuPopup.childNodes;
|
2000-09-06 03:21:22 +04:00
|
|
|
for (var i=0; i < menuItems.length; i++)
|
fixes:
14753, 29843, 39864, 40141,
40139, 36679, 39542, 34729,
34855, 37216, 39292, 26447
r=sfraser,cmanske,fm; a=beppe
2000-05-25 03:00:24 +04:00
|
|
|
{
|
|
|
|
var menuItem = menuItems.item(i);
|
2001-04-05 01:52:25 +04:00
|
|
|
if ("value" in menuItem && menuItem.value == state)
|
fixes:
14753, 29843, 39864, 40141,
40139, 36679, 39542, 34729,
34855, 37216, 39292, 26447
r=sfraser,cmanske,fm; a=beppe
2000-05-25 03:00:24 +04:00
|
|
|
{
|
|
|
|
paraMenuList.selectedItem = menuItem;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2000-05-10 09:30:13 +04:00
|
|
|
}
|
|
|
|
|
2000-08-12 04:47:05 +04:00
|
|
|
function doStatefulCommand(commandID, newState)
|
2000-05-10 09:30:13 +04:00
|
|
|
{
|
|
|
|
var commandNode = document.getElementById(commandID);
|
2000-08-12 04:47:05 +04:00
|
|
|
if (commandNode)
|
|
|
|
commandNode.setAttribute("state", newState);
|
2001-05-09 09:23:37 +04:00
|
|
|
gContentWindow.focus(); // needed for command dispatch to work
|
2000-05-10 09:30:13 +04:00
|
|
|
goDoCommand(commandID);
|
|
|
|
}
|
|
|
|
|
fixes:
14753, 29843, 39864, 40141,
40139, 36679, 39542, 34729,
34855, 37216, 39292, 26447
r=sfraser,cmanske,fm; a=beppe
2000-05-25 03:00:24 +04:00
|
|
|
function onFontFaceChange(fontFaceMenuList, commandID)
|
2000-05-10 09:30:13 +04:00
|
|
|
{
|
fixes:
14753, 29843, 39864, 40141,
40139, 36679, 39542, 34729,
34855, 37216, 39292, 26447
r=sfraser,cmanske,fm; a=beppe
2000-05-25 03:00:24 +04:00
|
|
|
var commandNode = document.getElementById(commandID);
|
|
|
|
var state = commandNode.getAttribute("state");
|
|
|
|
|
|
|
|
if (state == "mixed")
|
|
|
|
{
|
|
|
|
//Selection is the "mixed" ( > 1 style) state
|
|
|
|
fontFaceMenuList.selectedItem = null;
|
2001-03-22 03:59:29 +03:00
|
|
|
fontFaceMenuList.setAttribute("label",GetString('Mixed'));
|
fixes:
14753, 29843, 39864, 40141,
40139, 36679, 39542, 34729,
34855, 37216, 39292, 26447
r=sfraser,cmanske,fm; a=beppe
2000-05-25 03:00:24 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
var menuPopup = document.getElementById("FontFacePopup");
|
|
|
|
var menuItems = menuPopup.childNodes;
|
2000-09-06 03:21:22 +04:00
|
|
|
for (var i=0; i < menuItems.length; i++)
|
2000-05-10 09:30:13 +04:00
|
|
|
{
|
fixes:
14753, 29843, 39864, 40141,
40139, 36679, 39542, 34729,
34855, 37216, 39292, 26447
r=sfraser,cmanske,fm; a=beppe
2000-05-25 03:00:24 +04:00
|
|
|
var menuItem = menuItems.item(i);
|
2001-04-05 01:52:25 +04:00
|
|
|
if (menuItem.getAttribute("label") && ("value" in menuItem && menuItem.value.toLowerCase() == state.toLowerCase()))
|
2000-05-10 09:30:13 +04:00
|
|
|
{
|
fixes:
14753, 29843, 39864, 40141,
40139, 36679, 39542, 34729,
34855, 37216, 39292, 26447
r=sfraser,cmanske,fm; a=beppe
2000-05-25 03:00:24 +04:00
|
|
|
fontFaceMenuList.selectedItem = menuItem;
|
|
|
|
break;
|
2000-05-10 09:30:13 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function EditorSelectFontSize()
|
|
|
|
{
|
|
|
|
var select = document.getElementById("FontSizeSelect");
|
|
|
|
if (select)
|
2001-03-22 03:59:29 +03:00
|
|
|
{
|
2000-05-10 09:30:13 +04:00
|
|
|
if (select.selectedIndex == -1)
|
|
|
|
return;
|
|
|
|
|
|
|
|
EditorSetFontSize(gFontSizeNames[select.selectedIndex]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
fixes:
14753, 29843, 39864, 40141,
40139, 36679, 39542, 34729,
34855, 37216, 39292, 26447
r=sfraser,cmanske,fm; a=beppe
2000-05-25 03:00:24 +04:00
|
|
|
function onFontSizeChange(fontSizeMenulist, commandID)
|
2000-05-10 09:30:13 +04:00
|
|
|
{
|
fixes:
14753, 29843, 39864, 40141,
40139, 36679, 39542, 34729,
34855, 37216, 39292, 26447
r=sfraser,cmanske,fm; a=beppe
2000-05-25 03:00:24 +04:00
|
|
|
// If we don't match anything, set to "0 (normal)"
|
|
|
|
var newIndex = 2;
|
2001-03-22 03:59:29 +03:00
|
|
|
var size = fontSizeMenulist.getAttribute("size");
|
fixes:
14753, 29843, 39864, 40141,
40139, 36679, 39542, 34729,
34855, 37216, 39292, 26447
r=sfraser,cmanske,fm; a=beppe
2000-05-25 03:00:24 +04:00
|
|
|
if ( size == "mixed")
|
|
|
|
{
|
|
|
|
// No single type selected
|
|
|
|
newIndex = -1;
|
|
|
|
}
|
2001-03-22 03:59:29 +03:00
|
|
|
else
|
fixes:
14753, 29843, 39864, 40141,
40139, 36679, 39542, 34729,
34855, 37216, 39292, 26447
r=sfraser,cmanske,fm; a=beppe
2000-05-25 03:00:24 +04:00
|
|
|
{
|
2000-09-06 03:21:22 +04:00
|
|
|
for (var i = 0; i < gFontSizeNames.length; i++)
|
2000-05-10 09:30:13 +04:00
|
|
|
{
|
fixes:
14753, 29843, 39864, 40141,
40139, 36679, 39542, 34729,
34855, 37216, 39292, 26447
r=sfraser,cmanske,fm; a=beppe
2000-05-25 03:00:24 +04:00
|
|
|
if( gFontSizeNames[i] == size )
|
2000-05-10 09:30:13 +04:00
|
|
|
{
|
fixes:
14753, 29843, 39864, 40141,
40139, 36679, 39542, 34729,
34855, 37216, 39292, 26447
r=sfraser,cmanske,fm; a=beppe
2000-05-25 03:00:24 +04:00
|
|
|
newIndex = i;
|
|
|
|
break;
|
2000-05-10 09:30:13 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
fixes:
14753, 29843, 39864, 40141,
40139, 36679, 39542, 34729,
34855, 37216, 39292, 26447
r=sfraser,cmanske,fm; a=beppe
2000-05-25 03:00:24 +04:00
|
|
|
if (fontSizeMenulist.selectedIndex != newIndex)
|
|
|
|
fontSizeMenulist.selectedIndex = newIndex;
|
2000-05-10 09:30:13 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
function EditorSetFontSize(size)
|
|
|
|
{
|
2001-03-22 03:59:29 +03:00
|
|
|
if( size == "0" || size == "normal" ||
|
2000-05-10 09:30:13 +04:00
|
|
|
size == "medium" )
|
|
|
|
{
|
2002-07-10 00:24:37 +04:00
|
|
|
EditorRemoveTextProperty("font", "size");
|
2001-03-22 03:59:29 +03:00
|
|
|
// Also remove big and small,
|
2000-10-09 18:55:04 +04:00
|
|
|
// else it will seem like size isn't changing correctly
|
2002-07-10 00:24:37 +04:00
|
|
|
EditorRemoveTextProperty("small", "");
|
|
|
|
EditorRemoveTextProperty("big", "");
|
2000-05-10 09:30:13 +04:00
|
|
|
} else {
|
|
|
|
// Temp: convert from new CSS size strings to old HTML size strings
|
|
|
|
switch (size)
|
|
|
|
{
|
|
|
|
case "xx-small":
|
|
|
|
case "x-small":
|
|
|
|
size = "-2";
|
|
|
|
break;
|
|
|
|
case "small":
|
|
|
|
size = "-1";
|
|
|
|
break;
|
|
|
|
case "large":
|
|
|
|
size = "+1";
|
|
|
|
break;
|
|
|
|
case "x-large":
|
|
|
|
size = "+2";
|
|
|
|
break;
|
|
|
|
case "xx-large":
|
|
|
|
size = "+3";
|
|
|
|
break;
|
|
|
|
}
|
2002-07-10 00:24:37 +04:00
|
|
|
EditorSetTextProperty("font", "size", size);
|
2000-05-10 09:30:13 +04:00
|
|
|
}
|
2000-05-12 18:46:25 +04:00
|
|
|
gContentWindow.focus();
|
2000-05-10 09:30:13 +04:00
|
|
|
}
|
|
|
|
|
2000-10-09 18:55:04 +04:00
|
|
|
function initFontFaceMenu(menuPopup)
|
|
|
|
{
|
|
|
|
if (menuPopup)
|
|
|
|
{
|
|
|
|
var children = menuPopup.childNodes;
|
|
|
|
if (!children) return;
|
|
|
|
|
2002-07-13 02:28:30 +04:00
|
|
|
var firstHas = new Object();
|
|
|
|
var anyHas = new Object();
|
|
|
|
var allHas = new Object();
|
2000-10-09 18:55:04 +04:00
|
|
|
allHas.value = false;
|
|
|
|
|
|
|
|
// we need to set or clear the checkmark for each menu item since the selection
|
|
|
|
// may be in a new location from where it was when the menu was previously opened
|
|
|
|
|
|
|
|
// Fixed width (second menu item) is special case: old TT ("teletype") attribute
|
2002-07-10 00:24:37 +04:00
|
|
|
EditorGetTextProperty("tt", "", "", firstHas, anyHas, allHas);
|
2000-10-09 18:55:04 +04:00
|
|
|
children[1].setAttribute("checked", allHas.value);
|
|
|
|
var fontWasFound = anyHas.value;
|
|
|
|
|
|
|
|
// Skip over default, TT, and separator
|
2001-02-27 01:02:07 +03:00
|
|
|
for (var i = 3; i < children.length; i++)
|
2000-10-09 18:55:04 +04:00
|
|
|
{
|
|
|
|
var menuItem = children[i];
|
2001-03-22 03:59:29 +03:00
|
|
|
var faceType = menuItem.getAttribute("value");
|
2001-02-27 01:02:07 +03:00
|
|
|
|
2000-10-09 18:55:04 +04:00
|
|
|
if (faceType)
|
|
|
|
{
|
2002-07-10 00:24:37 +04:00
|
|
|
EditorGetTextProperty("font", "face", faceType, firstHas, anyHas, allHas);
|
2000-10-09 18:55:04 +04:00
|
|
|
|
|
|
|
// Check the item only if all of selection has the face...
|
|
|
|
menuItem.setAttribute("checked", allHas.value);
|
|
|
|
// ...but remember if ANY part of the selection has it
|
|
|
|
fontWasFound |= anyHas.value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Check the default item if no other item was checked
|
|
|
|
// note that no item is checked in the case of "mixed" selection
|
|
|
|
children[0].setAttribute("checked", !fontWasFound);
|
2001-03-22 03:59:29 +03:00
|
|
|
}
|
2000-10-09 18:55:04 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
function initFontSizeMenu(menuPopup)
|
|
|
|
{
|
|
|
|
if (menuPopup)
|
|
|
|
{
|
|
|
|
var children = menuPopup.childNodes;
|
|
|
|
if (!children) return;
|
|
|
|
|
2002-07-13 02:28:30 +04:00
|
|
|
var firstHas = new Object();
|
|
|
|
var anyHas = new Object();
|
|
|
|
var allHas = new Object();
|
2000-10-09 18:55:04 +04:00
|
|
|
allHas.value = false;
|
|
|
|
|
|
|
|
var sizeWasFound = false;
|
|
|
|
|
|
|
|
// we need to set or clear the checkmark for each menu item since the selection
|
|
|
|
// may be in a new location from where it was when the menu was previously opened
|
|
|
|
|
|
|
|
// First 2 items add <small> and <big> tags
|
|
|
|
// While it would be better to show the number of levels,
|
|
|
|
// at least this tells user if either of them are set
|
|
|
|
var menuItem = children[0];
|
|
|
|
if (menuItem)
|
|
|
|
{
|
2002-07-10 00:24:37 +04:00
|
|
|
EditorGetTextProperty("small", "", "", firstHas, anyHas, allHas);
|
2000-10-09 18:55:04 +04:00
|
|
|
menuItem.setAttribute("checked", allHas.value);
|
|
|
|
sizeWasFound = anyHas.value;
|
|
|
|
}
|
|
|
|
|
|
|
|
menuItem = children[1];
|
|
|
|
if (menuItem)
|
|
|
|
{
|
2002-07-10 00:24:37 +04:00
|
|
|
EditorGetTextProperty("big", "", "", firstHas, anyHas, allHas);
|
2000-10-09 18:55:04 +04:00
|
|
|
menuItem.setAttribute("checked", allHas.value);
|
|
|
|
sizeWasFound |= anyHas.value;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Fixed size items start after menu separator
|
|
|
|
var menuIndex = 3;
|
|
|
|
// Index of the medium (default) item
|
|
|
|
var mediumIndex = 5;
|
|
|
|
|
|
|
|
// Scan through all supported "font size" attribute values
|
|
|
|
for (var i = -2; i <= 3; i++)
|
|
|
|
{
|
|
|
|
menuItem = children[menuIndex];
|
2001-03-22 03:59:29 +03:00
|
|
|
|
2000-10-09 18:55:04 +04:00
|
|
|
// Skip over medium since it'll be set below.
|
2001-03-22 03:59:29 +03:00
|
|
|
// If font size=0 is actually set, we'll toggle it off below if
|
2000-10-09 18:55:04 +04:00
|
|
|
// we enter this loop in this case.
|
|
|
|
if (menuItem && (i != 0))
|
|
|
|
{
|
|
|
|
var sizeString = (i <= 0) ? String(i) : ("+" + String(i));
|
2002-07-10 00:24:37 +04:00
|
|
|
EditorGetTextProperty("font", "size", sizeString, firstHas, anyHas, allHas);
|
2000-10-09 18:55:04 +04:00
|
|
|
// Check the item only if all of selection has the size...
|
|
|
|
menuItem.setAttribute("checked", allHas.value);
|
|
|
|
// ...but remember if ANY of of selection had size set
|
|
|
|
sizeWasFound |= anyHas.value;
|
2001-03-22 03:59:29 +03:00
|
|
|
}
|
2000-10-09 18:55:04 +04:00
|
|
|
menuIndex++;
|
|
|
|
}
|
2001-03-22 03:59:29 +03:00
|
|
|
|
2000-10-09 18:55:04 +04:00
|
|
|
// if no size was found, then check default (medium)
|
|
|
|
// note that no item is checked in the case of "mixed" selection
|
|
|
|
children[mediumIndex].setAttribute("checked", !sizeWasFound);
|
2001-03-22 03:59:29 +03:00
|
|
|
}
|
2000-10-09 18:55:04 +04:00
|
|
|
}
|
|
|
|
|
2002-01-09 16:51:37 +03:00
|
|
|
function onHighlightColorChange()
|
|
|
|
{
|
|
|
|
var commandNode = document.getElementById("cmd_highlight");
|
|
|
|
if (commandNode)
|
|
|
|
{
|
|
|
|
var color = commandNode.getAttribute("state");
|
|
|
|
var button = document.getElementById("HighlightColorButton");
|
|
|
|
if (button)
|
|
|
|
{
|
|
|
|
// No color set - get color set on page or other defaults
|
|
|
|
if (!color)
|
|
|
|
color = "transparent" ;
|
|
|
|
|
|
|
|
button.setAttribute("style", "background-color:"+color+" !important");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
function onFontColorChange()
|
2000-05-10 09:30:13 +04:00
|
|
|
{
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
var commandNode = document.getElementById("cmd_fontColor");
|
2000-08-31 16:44:56 +04:00
|
|
|
if (commandNode)
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
{
|
2000-08-31 16:44:56 +04:00
|
|
|
var color = commandNode.getAttribute("state");
|
|
|
|
var button = document.getElementById("TextColorButton");
|
|
|
|
if (button)
|
|
|
|
{
|
|
|
|
// No color set - get color set on page or other defaults
|
|
|
|
if (!color)
|
|
|
|
color = gDefaultTextColor;
|
2000-05-10 09:30:13 +04:00
|
|
|
|
2001-03-22 03:59:29 +03:00
|
|
|
button.setAttribute("style", "background-color:"+color);
|
2000-08-31 16:44:56 +04:00
|
|
|
}
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
}
|
2000-05-10 09:30:13 +04:00
|
|
|
}
|
|
|
|
|
2000-08-31 16:44:56 +04:00
|
|
|
function onBackgroundColorChange()
|
2000-05-10 09:30:13 +04:00
|
|
|
{
|
2000-08-31 16:44:56 +04:00
|
|
|
var commandNode = document.getElementById("cmd_backgroundColor");
|
|
|
|
if (commandNode)
|
2000-05-10 09:30:13 +04:00
|
|
|
{
|
2000-08-31 16:44:56 +04:00
|
|
|
var color = commandNode.getAttribute("state");
|
|
|
|
var button = document.getElementById("BackgroundColorButton");
|
|
|
|
if (button)
|
|
|
|
{
|
|
|
|
if (!color)
|
|
|
|
color = gDefaultBackgroundColor;
|
2000-09-06 03:21:22 +04:00
|
|
|
|
2001-03-22 03:59:29 +03:00
|
|
|
button.setAttribute("style", "background-color:"+color);
|
2000-08-31 16:44:56 +04:00
|
|
|
}
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
}
|
2000-05-10 09:30:13 +04:00
|
|
|
}
|
|
|
|
|
2002-01-05 23:40:05 +03:00
|
|
|
// Call this when user changes text and/or background colors of the page
|
|
|
|
function UpdateDefaultColors()
|
|
|
|
{
|
|
|
|
var BrowserColors = GetDefaultBrowserColors();
|
|
|
|
var bodyelement = GetBodyElement();
|
|
|
|
var defTextColor = gDefaultTextColor;
|
|
|
|
var defBackColor = gDefaultBackgroundColor;
|
|
|
|
|
|
|
|
if (bodyelement)
|
|
|
|
{
|
|
|
|
var color = bodyelement.getAttribute("text");
|
|
|
|
if (color)
|
|
|
|
gDefaultTextColor = color;
|
|
|
|
else if (BrowserColors)
|
|
|
|
gDefaultTextColor = BrowserColors.TextColor;
|
|
|
|
|
|
|
|
color = bodyelement.getAttribute("bgcolor");
|
|
|
|
if (color)
|
|
|
|
gDefaultBackgroundColor = color;
|
|
|
|
else if (BrowserColors)
|
|
|
|
gDefaultBackgroundColor = BrowserColors.BackgroundColor;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Trigger update on toolbar
|
|
|
|
if (defTextColor != gDefaultTextColor)
|
|
|
|
{
|
|
|
|
goUpdateCommand("cmd_fontColor");
|
|
|
|
onFontColorChange();
|
|
|
|
}
|
|
|
|
if (defBackColor != gDefaultBackgroundColor)
|
|
|
|
{
|
|
|
|
goUpdateCommand("cmd_backgroundColor");
|
|
|
|
onBackgroundColorChange();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
function GetBackgroundElementWithColor()
|
2000-05-10 09:30:13 +04:00
|
|
|
{
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
gColorObj.Type = "";
|
|
|
|
gColorObj.PageColor = "";
|
|
|
|
gColorObj.TableColor = "";
|
|
|
|
gColorObj.CellColor = "";
|
|
|
|
gColorObj.BackgroundColor = "";
|
2000-05-10 09:30:13 +04:00
|
|
|
|
2002-07-13 02:28:30 +04:00
|
|
|
var tagNameObj = new Object();
|
|
|
|
var numSelected;
|
2002-07-10 00:24:37 +04:00
|
|
|
var element;
|
2002-07-13 02:28:30 +04:00
|
|
|
try {
|
|
|
|
var elt = new Object();
|
|
|
|
numSelected = gEditor.getSelectedOrParentTableElement(elt, tagNameObj);
|
|
|
|
element = elt.value;
|
|
|
|
}
|
|
|
|
catch(e) {}
|
|
|
|
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
if (element && tagNameObj && tagNameObj.value)
|
|
|
|
{
|
2002-01-09 16:51:37 +03:00
|
|
|
gColorObj.BackgroundColor = GetHTMLOrCSSStyleValue(element, "bgcolor", "background-color");
|
|
|
|
gColorObj.BackgroundColor = ConvertRGBColorIntoHEXColor(gColorObj.BackgroundColor);
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
if (tagNameObj.value.toLowerCase() == "td")
|
|
|
|
{
|
|
|
|
gColorObj.Type = "Cell";
|
|
|
|
gColorObj.CellColor = gColorObj.BackgroundColor;
|
2001-03-22 03:59:29 +03:00
|
|
|
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
// Get any color that might be on parent table
|
|
|
|
var table = GetParentTable(element);
|
2002-01-09 16:51:37 +03:00
|
|
|
gColorObj.TableColor = GetHTMLOrCSSStyleValue(table, "bgcolor", "background-color");
|
|
|
|
gColorObj.TableColor = ConvertRGBColorIntoHEXColor(gColorObj.TableColor);
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gColorObj.Type = "Table";
|
|
|
|
gColorObj.TableColor = gColorObj.BackgroundColor;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2002-01-09 16:51:37 +03:00
|
|
|
var prefs = GetPrefs();
|
|
|
|
var IsCSSPrefChecked = prefs.getBoolPref("editor.use_css");
|
2002-07-13 02:28:30 +04:00
|
|
|
if (IsCSSPrefChecked && gIsHTMLEditor)
|
2002-01-09 16:51:37 +03:00
|
|
|
{
|
2002-07-10 00:24:37 +04:00
|
|
|
var selection = gEditor.selection;
|
2002-01-09 16:51:37 +03:00
|
|
|
if (selection)
|
|
|
|
{
|
|
|
|
element = selection.focusNode;
|
2002-07-13 02:28:30 +04:00
|
|
|
while (!gEditor.NodeIsBlock(element))
|
2002-01-09 16:51:37 +03:00
|
|
|
element = element.parentNode;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
element = GetBodyElement();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
element = GetBodyElement();
|
|
|
|
}
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
if (element)
|
|
|
|
{
|
|
|
|
gColorObj.Type = "Page";
|
2002-01-09 16:51:37 +03:00
|
|
|
gColorObj.BackgroundColor = GetHTMLOrCSSStyleValue(element, "bgcolor", "background-color");
|
|
|
|
if (gColorObj.BackgroundColor == "")
|
|
|
|
{
|
|
|
|
gColorObj.BackgroundColor = "transparent";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gColorObj.BackgroundColor = ConvertRGBColorIntoHEXColor(gColorObj.BackgroundColor);
|
|
|
|
}
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
gColorObj.PageColor = gColorObj.BackgroundColor;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return element;
|
2000-05-10 09:30:13 +04:00
|
|
|
}
|
|
|
|
|
2001-02-07 10:52:02 +03:00
|
|
|
function SetSmiley(smileyText)
|
|
|
|
{
|
2002-07-13 02:28:30 +04:00
|
|
|
try {
|
|
|
|
gEditor.InsertText(smileyText);
|
|
|
|
gContentWindow.focus();
|
|
|
|
}
|
|
|
|
catch(e) {}
|
2001-02-07 10:52:02 +03:00
|
|
|
}
|
|
|
|
|
2001-03-24 03:58:52 +03:00
|
|
|
function EditorSelectColor(colorType, mouseEvent)
|
2000-05-10 09:30:13 +04:00
|
|
|
{
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
if (!gColorObj)
|
2001-03-24 03:58:52 +03:00
|
|
|
return;
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
|
2001-03-24 03:58:52 +03:00
|
|
|
// Shift + mouse click automatically applies last color, if available
|
|
|
|
var useLastColor = mouseEvent ? ( mouseEvent.button == 0 && mouseEvent.shiftKey ) : false;
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
var element;
|
|
|
|
var table;
|
|
|
|
var currentColor = "";
|
2000-09-06 03:21:22 +04:00
|
|
|
var commandNode;
|
2001-03-22 03:59:29 +03:00
|
|
|
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
if (!colorType)
|
|
|
|
colorType = "";
|
|
|
|
|
|
|
|
if (colorType == "Text")
|
2000-05-10 09:30:13 +04:00
|
|
|
{
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
gColorObj.Type = colorType;
|
2000-05-10 09:30:13 +04:00
|
|
|
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
// Get color from command node state
|
2000-09-06 03:21:22 +04:00
|
|
|
commandNode = document.getElementById("cmd_fontColor");
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
currentColor = commandNode.getAttribute("state");
|
|
|
|
gColorObj.TextColor = currentColor;
|
2001-03-24 03:58:52 +03:00
|
|
|
|
|
|
|
if (useLastColor && gColorObj.LastTextColor )
|
|
|
|
gColorObj.TextColor = gColorObj.LastTextColor;
|
|
|
|
else
|
|
|
|
useLastColor = false;
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
}
|
2002-01-09 16:51:37 +03:00
|
|
|
else if (colorType == "Highlight")
|
|
|
|
{
|
|
|
|
gColorObj.Type = colorType;
|
|
|
|
|
|
|
|
// Get color from command node state
|
|
|
|
commandNode = document.getElementById("cmd_highlight");
|
|
|
|
currentColor = commandNode.getAttribute("state");
|
|
|
|
gColorObj.HighlightColor = currentColor;
|
|
|
|
|
|
|
|
if (useLastColor && gColorObj.LastHighlightColor )
|
|
|
|
gColorObj.HighlightColor = gColorObj.LastHighlightColor;
|
|
|
|
else
|
|
|
|
useLastColor = false;
|
|
|
|
}
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
else
|
|
|
|
{
|
|
|
|
element = GetBackgroundElementWithColor();
|
|
|
|
if (!element)
|
|
|
|
return;
|
2000-05-10 09:30:13 +04:00
|
|
|
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
// Get the table if we found a cell
|
|
|
|
if (gColorObj.Type == "Table")
|
|
|
|
table = element;
|
|
|
|
else if (gColorObj.Type == "Cell")
|
|
|
|
table = GetParentTable(element);
|
2000-05-10 09:30:13 +04:00
|
|
|
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
// Save to avoid resetting if not necessary
|
|
|
|
currentColor = gColorObj.BackgroundColor;
|
2000-05-10 09:30:13 +04:00
|
|
|
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
if (colorType == "TableOrCell" || colorType == "Cell")
|
|
|
|
{
|
|
|
|
if (gColorObj.Type == "Cell")
|
|
|
|
gColorObj.Type = colorType;
|
|
|
|
else if (gColorObj.Type != "Table")
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else if (colorType == "Table" && gColorObj.Type == "Page")
|
|
|
|
return;
|
2001-03-22 03:59:29 +03:00
|
|
|
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
if (colorType == "" && gColorObj.Type == "Cell")
|
|
|
|
{
|
|
|
|
// Using empty string for requested type means
|
|
|
|
// we can let user select cell or table
|
|
|
|
gColorObj.Type = "TableOrCell";
|
|
|
|
}
|
2001-03-29 01:16:44 +04:00
|
|
|
|
|
|
|
if (useLastColor && gColorObj.LastBackgroundColor )
|
|
|
|
gColorObj.BackgroundColor = gColorObj.LastBackgroundColor;
|
|
|
|
else
|
|
|
|
useLastColor = false;
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
}
|
|
|
|
// Save the type we are really requesting
|
|
|
|
colorType = gColorObj.Type;
|
2000-05-10 09:30:13 +04:00
|
|
|
|
2001-03-29 01:16:44 +04:00
|
|
|
if (!useLastColor)
|
|
|
|
{
|
|
|
|
// Avoid the JS warning
|
|
|
|
gColorObj.NoDefault = false;
|
2001-01-04 04:30:17 +03:00
|
|
|
|
2001-03-29 01:16:44 +04:00
|
|
|
// Launch the ColorPicker dialog
|
|
|
|
// TODO: Figure out how to position this under the color buttons on the toolbar
|
|
|
|
window.openDialog("chrome://editor/content/EdColorPicker.xul", "_blank", "chrome,close,titlebar,modal", "", gColorObj);
|
2000-08-30 06:44:18 +04:00
|
|
|
|
2001-03-29 01:16:44 +04:00
|
|
|
// User canceled the dialog
|
|
|
|
if (gColorObj.Cancel)
|
|
|
|
return;
|
|
|
|
}
|
2000-08-30 06:44:18 +04:00
|
|
|
|
2002-01-09 16:51:37 +03:00
|
|
|
if (gColorObj.Type == "Text")
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
{
|
|
|
|
if (currentColor != gColorObj.TextColor)
|
2001-03-29 01:16:44 +04:00
|
|
|
{
|
2001-07-11 03:57:04 +04:00
|
|
|
if (gColorObj.TextColor)
|
2002-07-10 00:24:37 +04:00
|
|
|
EditorSetTextProperty("font", "color", gColorObj.TextColor);
|
2001-07-11 03:57:04 +04:00
|
|
|
else
|
2002-07-10 00:24:37 +04:00
|
|
|
EditorRemoveTextProperty("font", "color");
|
2001-03-29 01:16:44 +04:00
|
|
|
}
|
2000-08-31 16:44:56 +04:00
|
|
|
// Update the command state (this will trigger color button update)
|
|
|
|
goUpdateCommand("cmd_fontColor");
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
}
|
2002-01-09 16:51:37 +03:00
|
|
|
else if (gColorObj.Type == "Highlight")
|
|
|
|
{
|
|
|
|
if (currentColor != gColorObj.HighlightColor)
|
|
|
|
{
|
|
|
|
if (gColorObj.HighlightColor)
|
2002-07-10 00:24:37 +04:00
|
|
|
EditorSetTextProperty("font", "bgcolor", gColorObj.HighlightColor);
|
2002-01-09 16:51:37 +03:00
|
|
|
else
|
2002-07-10 00:24:37 +04:00
|
|
|
EditorRemoveTextProperty("font", "bgcolor");
|
2002-01-09 16:51:37 +03:00
|
|
|
}
|
|
|
|
// Update the command state (this will trigger color button update)
|
|
|
|
goUpdateCommand("cmd_highlight");
|
|
|
|
}
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
else if (element)
|
|
|
|
{
|
2002-03-15 18:33:29 +03:00
|
|
|
if (gColorObj.Type == "Table")
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
{
|
|
|
|
// Set background on a table
|
|
|
|
// Note that we shouldn't trust "currentColor" because of "TableOrCell" behavior
|
|
|
|
if (table)
|
|
|
|
{
|
|
|
|
var bgcolor = table.getAttribute("bgcolor");
|
|
|
|
if (bgcolor != gColorObj.BackgroundColor)
|
|
|
|
{
|
2000-08-31 16:44:56 +04:00
|
|
|
if (gColorObj.BackgroundColor)
|
2002-07-10 00:24:37 +04:00
|
|
|
gEditor.setAttributeOrEquivalent(table, "bgcolor", gColorObj.BackgroundColor);
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
else
|
2002-07-10 00:24:37 +04:00
|
|
|
gEditor.removeAttributeOrEquivalent(table, "bgcolor");
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
}
|
|
|
|
}
|
2001-03-22 03:59:29 +03:00
|
|
|
}
|
2002-07-13 02:28:30 +04:00
|
|
|
else if (currentColor != gColorObj.BackgroundColor && gIsHTMLEditor)
|
2001-08-10 07:47:37 +04:00
|
|
|
{
|
2002-07-13 02:28:30 +04:00
|
|
|
gEditor.beginTransaction();
|
|
|
|
try
|
2001-08-10 07:47:37 +04:00
|
|
|
{
|
2002-07-13 02:28:30 +04:00
|
|
|
gEditor.setBackgroundColor(gColorObj.BackgroundColor);
|
|
|
|
|
|
|
|
if (gColorObj.Type == "Page" && gColorObj.BackgroundColor)
|
2001-08-10 07:47:37 +04:00
|
|
|
{
|
2002-07-13 02:28:30 +04:00
|
|
|
// Set all page colors not explicitly set,
|
|
|
|
// else you can end up with unreadable pages
|
|
|
|
// because viewer's default colors may not be same as page author's
|
|
|
|
var bodyelement = GetBodyElement();
|
|
|
|
if (bodyelement)
|
2002-03-15 18:33:29 +03:00
|
|
|
{
|
2002-07-13 02:28:30 +04:00
|
|
|
var defColors = GetDefaultBrowserColors();
|
|
|
|
if (defColors)
|
|
|
|
{
|
|
|
|
if (!bodyelement.getAttribute("text"))
|
|
|
|
gEditor.setAttributeOrEquivalent(bodyelement, "text", defColors.TextColor);
|
|
|
|
|
|
|
|
// The following attributes have no individual CSS declaration counterparts
|
|
|
|
// Getting rid of them in favor of CSS implies CSS rules management
|
|
|
|
if (!bodyelement.getAttribute("link"))
|
|
|
|
gEditor.setAttribute(bodyelement, "link", defColors.LinkColor);
|
|
|
|
|
|
|
|
if (!bodyelement.getAttribute("alink"))
|
|
|
|
gEditor.setAttribute(bodyelement, "alink", defColors.LinkColor);
|
|
|
|
|
|
|
|
if (!bodyelement.getAttribute("vlink"))
|
|
|
|
gEditor.setAttribute(bodyelement, "vlink", defColors.VisitedLinkColor);
|
|
|
|
}
|
2001-08-10 07:47:37 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2002-07-13 02:28:30 +04:00
|
|
|
catch(e) {}
|
|
|
|
|
|
|
|
gEditor.endTransaction();
|
2001-08-10 07:47:37 +04:00
|
|
|
}
|
2001-03-22 03:59:29 +03:00
|
|
|
|
2000-08-31 16:44:56 +04:00
|
|
|
goUpdateCommand("cmd_backgroundColor");
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
}
|
2001-05-09 09:23:37 +04:00
|
|
|
gContentWindow.focus();
|
2000-05-10 09:30:13 +04:00
|
|
|
}
|
|
|
|
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
function GetParentTable(element)
|
2000-05-10 09:30:13 +04:00
|
|
|
{
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
var node = element;
|
|
|
|
while (node)
|
|
|
|
{
|
2001-05-09 09:23:37 +04:00
|
|
|
if (node.nodeName.toLowerCase() == "table")
|
|
|
|
return node;
|
|
|
|
|
|
|
|
node = node.parentNode;
|
|
|
|
}
|
|
|
|
return node;
|
|
|
|
}
|
|
|
|
|
|
|
|
function GetParentTableCell(element)
|
|
|
|
{
|
|
|
|
var node = element;
|
|
|
|
while (node)
|
|
|
|
{
|
|
|
|
if (node.nodeName.toLowerCase() == "td" || node.nodeName.toLowerCase() == "th")
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
return node;
|
2000-05-10 09:30:13 +04:00
|
|
|
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
node = node.parentNode;
|
|
|
|
}
|
|
|
|
return node;
|
2000-05-10 09:30:13 +04:00
|
|
|
}
|
|
|
|
|
2002-03-17 23:39:16 +03:00
|
|
|
function EditorDblClick(event)
|
|
|
|
{
|
2002-03-26 23:52:06 +03:00
|
|
|
if (event.target)
|
|
|
|
{
|
|
|
|
// Only bring up properties if clicked on an element or selected link
|
|
|
|
var element;
|
|
|
|
try {
|
|
|
|
element = event.target.QueryInterface(Components.interfaces.nsIDOMElement);
|
|
|
|
} catch (e) {}
|
|
|
|
|
|
|
|
// We use "href" instead of "a" to not be fooled by named anchor
|
|
|
|
if (!element)
|
2002-07-13 02:28:30 +04:00
|
|
|
element = gEditor.getSelectedElement("href");
|
2002-03-26 23:52:06 +03:00
|
|
|
|
|
|
|
if (element)
|
|
|
|
{
|
|
|
|
goDoCommand("cmd_objectProperties");
|
|
|
|
event.preventDefault();
|
|
|
|
}
|
|
|
|
}
|
2002-03-17 23:39:16 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
function EditorClick(event)
|
|
|
|
{
|
2002-04-16 17:30:40 +04:00
|
|
|
if (!event)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (event.detail == 2)
|
|
|
|
{
|
|
|
|
EditorDblClick(event);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2002-03-17 23:39:16 +03:00
|
|
|
// In Show All Tags Mode,
|
|
|
|
// single click selects entire element,
|
|
|
|
// except for body and table elements
|
2002-07-13 02:28:30 +04:00
|
|
|
if (event.target && gIsHTMLEditor && gEditorDisplayMode == DisplayModeAllTags)
|
2002-03-17 23:39:16 +03:00
|
|
|
{
|
2002-07-13 02:28:30 +04:00
|
|
|
try
|
|
|
|
{
|
2002-03-17 23:39:16 +03:00
|
|
|
var element = event.target.QueryInterface( Components.interfaces.nsIDOMElement);
|
2002-07-13 02:28:30 +04:00
|
|
|
var name = element.localName.toLowerCase();
|
|
|
|
if (name != "body" && name != "table" &&
|
|
|
|
name != "td" && name != "th" && name != "caption" && name != "tr")
|
|
|
|
{
|
|
|
|
gEditor.selectElement(event.target);
|
|
|
|
event.preventDefault();
|
2002-03-17 23:39:16 +03:00
|
|
|
}
|
|
|
|
} catch (e) {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-03-22 03:59:29 +03:00
|
|
|
/*TODO: We need an oncreate hook to do enabling/disabling for the
|
|
|
|
Format menu. There should be code like this for the
|
2000-09-06 03:21:22 +04:00
|
|
|
object-specific "Properties" item
|
2000-05-10 09:30:13 +04:00
|
|
|
*/
|
|
|
|
// For property dialogs, we want the selected element,
|
2000-09-06 03:21:22 +04:00
|
|
|
// but will accept a parent link, list, or table cell if inside one
|
|
|
|
function GetObjectForProperties()
|
2000-05-10 09:30:13 +04:00
|
|
|
{
|
2002-07-13 02:28:30 +04:00
|
|
|
if (!gIsHTMLEditor) return null;
|
|
|
|
|
|
|
|
var element = gEditor.getSelectedElement("");
|
2000-09-07 09:39:27 +04:00
|
|
|
if (element)
|
|
|
|
return element;
|
2000-05-10 09:30:13 +04:00
|
|
|
|
2001-03-22 03:59:29 +03:00
|
|
|
// Find nearest parent of selection anchor node
|
2000-09-07 09:39:27 +04:00
|
|
|
// that is a link, list, table cell, or table
|
|
|
|
|
2002-07-10 00:24:37 +04:00
|
|
|
var anchorNode = gEditor.selection.anchorNode;
|
2000-09-07 09:39:27 +04:00
|
|
|
if (!anchorNode) return null;
|
|
|
|
var node;
|
|
|
|
if (anchorNode.firstChild)
|
|
|
|
{
|
|
|
|
// Start at actual selected node
|
2002-07-10 00:24:37 +04:00
|
|
|
var offset = gEditor.selection.anchorOffset;
|
2000-09-12 04:17:56 +04:00
|
|
|
// Note: If collapsed, offset points to element AFTER caret,
|
|
|
|
// thus node may be null
|
|
|
|
node = anchorNode.childNodes.item(offset);
|
2000-09-07 09:39:27 +04:00
|
|
|
}
|
2000-09-12 04:17:56 +04:00
|
|
|
if (!node)
|
2000-09-07 09:39:27 +04:00
|
|
|
node = anchorNode;
|
|
|
|
|
|
|
|
while (node)
|
|
|
|
{
|
2000-09-22 09:13:34 +04:00
|
|
|
if (node.nodeName)
|
2000-09-07 09:39:27 +04:00
|
|
|
{
|
2000-09-22 09:13:34 +04:00
|
|
|
var nodeName = node.nodeName.toLowerCase();
|
2000-09-07 09:39:27 +04:00
|
|
|
|
|
|
|
// Done when we hit the body
|
2000-09-22 09:13:34 +04:00
|
|
|
if (nodeName == "body") break;
|
2000-09-07 09:39:27 +04:00
|
|
|
|
2000-09-22 09:13:34 +04:00
|
|
|
if ((nodeName == "a" && node.href) ||
|
|
|
|
nodeName == "ol" || nodeName == "ul" || nodeName == "dl" ||
|
|
|
|
nodeName == "td" || nodeName == "th" ||
|
|
|
|
nodeName == "table")
|
2000-09-07 09:39:27 +04:00
|
|
|
{
|
|
|
|
return node;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
node = node.parentNode;
|
|
|
|
}
|
|
|
|
return null;
|
2000-05-10 09:30:13 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
function SetEditMode(mode)
|
|
|
|
{
|
2002-07-13 02:28:30 +04:00
|
|
|
if (!gIsHTMLEditor) return;
|
|
|
|
|
|
|
|
var bodyNode = gEditor.document.getElementsByTagName("body").item(0);
|
|
|
|
if (!bodyNode)
|
2000-05-10 09:30:13 +04:00
|
|
|
{
|
2002-07-13 02:28:30 +04:00
|
|
|
dump("SetEditMode: We don't have a body node!\n");
|
|
|
|
return;
|
|
|
|
}
|
2000-05-10 09:30:13 +04:00
|
|
|
|
2002-07-13 02:28:30 +04:00
|
|
|
// Switch the UI mode before inserting contents
|
|
|
|
// so user can't type in source window while new window is being filled
|
|
|
|
var previousMode = gEditorDisplayMode;
|
|
|
|
if (!SetDisplayMode(mode))
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (mode == DisplayModeSource)
|
|
|
|
{
|
|
|
|
// Display the DOCTYPE as a non-editable string above edit area
|
|
|
|
var domdoc;
|
|
|
|
try { domdoc = gEditor.document; } catch (e) { dump( e + "\n");}
|
|
|
|
if (domdoc)
|
2000-05-10 09:30:13 +04:00
|
|
|
{
|
2002-07-13 02:28:30 +04:00
|
|
|
var doctypeNode = document.getElementById("doctype-text");
|
|
|
|
var dt = domdoc.doctype;
|
|
|
|
if (doctypeNode)
|
2001-02-27 01:02:07 +03:00
|
|
|
{
|
2002-07-13 02:28:30 +04:00
|
|
|
if (dt)
|
2001-02-27 01:02:07 +03:00
|
|
|
{
|
2002-07-13 02:28:30 +04:00
|
|
|
doctypeNode.removeAttribute("collapsed");
|
|
|
|
var doctypeText = "<!DOCTYPE " + domdoc.doctype.name;
|
|
|
|
if (dt.publicId)
|
|
|
|
doctypeText += " PUBLIC \"" + domdoc.doctype.publicId;
|
|
|
|
if (dt.systemId)
|
|
|
|
doctypeText += " "+"\"" + dt.systemId;
|
|
|
|
doctypeText += "\">"
|
|
|
|
doctypeNode.setAttribute("value", doctypeText);
|
2001-02-27 01:02:07 +03:00
|
|
|
}
|
2002-07-13 02:28:30 +04:00
|
|
|
else
|
|
|
|
doctypeNode.setAttribute("collapsed", "true");
|
2001-02-27 01:02:07 +03:00
|
|
|
}
|
2002-07-13 02:28:30 +04:00
|
|
|
}
|
|
|
|
// Get the entire document's source string
|
2000-08-31 02:49:08 +04:00
|
|
|
|
2002-07-13 02:28:30 +04:00
|
|
|
var flags = 256; // OutputEncodeEntities;
|
2001-08-10 07:47:37 +04:00
|
|
|
|
2002-07-13 02:28:30 +04:00
|
|
|
try {
|
|
|
|
var prettyPrint = gPrefs.getBoolPref("editor.prettyprint");
|
|
|
|
if (prettyPrint)
|
|
|
|
flags |= 2; // OutputFormatted
|
2001-08-10 07:47:37 +04:00
|
|
|
|
2002-07-13 02:28:30 +04:00
|
|
|
} catch (e) {}
|
2000-08-31 02:49:08 +04:00
|
|
|
|
2002-07-13 02:28:30 +04:00
|
|
|
var source = gEditor.outputToString("text/html", flags);
|
|
|
|
var start = source.search(/<html/i);
|
|
|
|
if (start == -1) start = 0;
|
|
|
|
gSourceContentWindow.value = source.slice(start);
|
|
|
|
gSourceContentWindow.focus();
|
2001-05-17 03:44:56 +04:00
|
|
|
|
2002-07-13 02:28:30 +04:00
|
|
|
// Add input handler so we know if user made any changes
|
|
|
|
gSourceContentWindow.addEventListener("input", oninputHTMLSource, false);
|
|
|
|
gHTMLSourceChanged = false;
|
|
|
|
}
|
|
|
|
else if (previousMode == DisplayModeSource)
|
|
|
|
{
|
|
|
|
// Only rebuild document if a change was made in source window
|
|
|
|
if (gHTMLSourceChanged)
|
2000-05-12 06:37:40 +04:00
|
|
|
{
|
2002-07-13 02:28:30 +04:00
|
|
|
gEditor.beginTransaction();
|
|
|
|
try {
|
|
|
|
// We are comming from edit source mode,
|
|
|
|
// so transfer that back into the document
|
|
|
|
source = gSourceContentWindow.value;
|
|
|
|
editorShell.RebuildDocumentFromSource(source);
|
|
|
|
|
|
|
|
// Get the text for the <title> from the newly-parsed document
|
|
|
|
// (must do this for proper conversion of "escaped" characters)
|
|
|
|
var title = "";
|
|
|
|
var titlenodelist = gEditor.document.getElementsByTagName("title");
|
|
|
|
if (titlenodelist)
|
|
|
|
{
|
|
|
|
var titleNode = titlenodelist.item(0);
|
|
|
|
if (titleNode && titleNode.firstChild && titleNode.firstChild.data)
|
|
|
|
title = titleNode.firstChild.data;
|
|
|
|
}
|
|
|
|
if (gEditor.document.title != title)
|
|
|
|
{
|
|
|
|
gEditor.document.title = title;
|
|
|
|
ResetWindowTitleWithFilename();
|
2001-05-17 03:44:56 +04:00
|
|
|
}
|
|
|
|
|
2002-07-13 02:28:30 +04:00
|
|
|
// reset selection to top of doc (wish we could preserve it!)
|
|
|
|
if (bodyNode)
|
|
|
|
gEditor.selection.collapse(bodyNode, 0);
|
2001-01-04 03:34:37 +03:00
|
|
|
|
2002-07-13 02:28:30 +04:00
|
|
|
} catch (ex) {
|
|
|
|
dump(ex);
|
|
|
|
}
|
|
|
|
gEditor.endTransaction();
|
2000-08-10 07:43:09 +04:00
|
|
|
|
2002-07-13 02:28:30 +04:00
|
|
|
} else {
|
|
|
|
// We don't need to call this again, so remove handler
|
|
|
|
gSourceContentWindow.removeEventListener("input", oninputHTMLSource, false);
|
2000-05-10 09:30:13 +04:00
|
|
|
}
|
2002-07-13 02:28:30 +04:00
|
|
|
gHTMLSourceChanged = false;
|
|
|
|
|
|
|
|
// Clear out the string buffers
|
|
|
|
gSourceContentWindow.value = null;
|
|
|
|
|
|
|
|
gContentWindow.focus();
|
2000-05-10 09:30:13 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-05-17 03:44:56 +04:00
|
|
|
function oninputHTMLSource()
|
|
|
|
{
|
|
|
|
gHTMLSourceChanged = true;
|
|
|
|
|
2002-05-01 03:30:29 +04:00
|
|
|
// Trigger update of "Save" and "Publish" buttons
|
2001-05-17 03:44:56 +04:00
|
|
|
goUpdateCommand("cmd_save");
|
2002-05-01 03:30:29 +04:00
|
|
|
goUpdateCommand("cmd_publish");
|
2001-05-17 03:44:56 +04:00
|
|
|
|
|
|
|
// We don't need to call this again, so remove handler
|
2001-10-26 22:43:25 +04:00
|
|
|
gSourceContentWindow.removeEventListener("input", oninputHTMLSource, false);
|
2001-05-17 03:44:56 +04:00
|
|
|
}
|
|
|
|
|
2001-04-05 01:52:25 +04:00
|
|
|
function ResetWindowTitleWithFilename()
|
|
|
|
{
|
2002-07-10 00:24:37 +04:00
|
|
|
// Calling this resets the "Title [filename]" that we show on window caption.
|
|
|
|
// The editorShell method calls the editor method,
|
|
|
|
// then calls UpdateWindowTitleAndRecentMenu().
|
|
|
|
editorShell.SetDocumentTitle(gEditor.document.title);
|
2001-04-05 01:52:25 +04:00
|
|
|
}
|
|
|
|
|
2000-07-12 03:41:22 +04:00
|
|
|
function CancelHTMLSource()
|
2000-05-10 09:30:13 +04:00
|
|
|
{
|
2000-07-12 03:41:22 +04:00
|
|
|
// Don't convert source text back into the DOM document
|
|
|
|
gSourceContentWindow.value = "";
|
2001-05-17 03:44:56 +04:00
|
|
|
gHTMLSourceChanged = false;
|
2000-05-10 09:30:13 +04:00
|
|
|
SetDisplayMode(PreviousNonSourceDisplayMode);
|
|
|
|
}
|
|
|
|
|
2000-07-12 03:41:22 +04:00
|
|
|
function FinishHTMLSource()
|
|
|
|
{
|
|
|
|
// Switch edit modes -- converts source back into DOM document
|
|
|
|
SetEditMode(PreviousNonSourceDisplayMode);
|
|
|
|
}
|
|
|
|
|
|
|
|
function CollapseItem(id, collapse)
|
|
|
|
{
|
|
|
|
var item = document.getElementById(id);
|
|
|
|
if (item)
|
|
|
|
{
|
2001-03-22 03:59:29 +03:00
|
|
|
if(collapse != (item.getAttribute("collapsed") == "true"))
|
|
|
|
item.setAttribute("collapsed", collapse ? "true" : "");
|
2000-07-12 03:41:22 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-05-10 09:30:13 +04:00
|
|
|
function SetDisplayMode(mode)
|
|
|
|
{
|
2002-07-13 02:28:30 +04:00
|
|
|
if (!gIsHTMLEditor) return false;
|
2000-05-10 09:30:13 +04:00
|
|
|
|
2002-07-13 02:28:30 +04:00
|
|
|
// Already in requested mode:
|
|
|
|
// return false to indicate we didn't switch
|
|
|
|
if (mode == gEditorDisplayMode)
|
|
|
|
return false;
|
2000-05-10 09:30:13 +04:00
|
|
|
|
2002-07-13 02:28:30 +04:00
|
|
|
gEditorDisplayMode = mode;
|
2001-03-22 03:59:29 +03:00
|
|
|
|
2002-07-13 02:28:30 +04:00
|
|
|
// Save the last non-source mode so we can cancel source editing easily
|
|
|
|
if (mode != DisplayModeSource)
|
|
|
|
PreviousNonSourceDisplayMode = mode;
|
2000-05-10 09:30:13 +04:00
|
|
|
|
2002-07-13 02:28:30 +04:00
|
|
|
// Editorshell does the style sheet loading/unloading
|
|
|
|
editorShell.SetDisplayMode(mode);
|
2000-05-10 09:30:13 +04:00
|
|
|
|
2002-07-13 02:28:30 +04:00
|
|
|
// Set the UI states
|
|
|
|
var selectedTab = null;
|
|
|
|
if (mode == DisplayModePreview) selectedTab = gPreviewModeButton;
|
|
|
|
if (mode == DisplayModeNormal) selectedTab = gNormalModeButton;
|
|
|
|
if (mode == DisplayModeAllTags) selectedTab = gTagModeButton;
|
|
|
|
if (mode == DisplayModeSource) selectedTab = gSourceModeButton;
|
|
|
|
if (selectedTab)
|
|
|
|
document.getElementById("EditModeTabs").selectedItem = selectedTab;
|
2000-05-10 09:30:13 +04:00
|
|
|
|
2002-07-13 02:28:30 +04:00
|
|
|
if (mode == DisplayModeSource)
|
|
|
|
{
|
|
|
|
// Switch to the sourceWindow (second in the deck)
|
|
|
|
gContentWindowDeck.setAttribute("selectedIndex","1");
|
2000-05-10 09:30:13 +04:00
|
|
|
|
2002-07-13 02:28:30 +04:00
|
|
|
//Hide the formatting toolbar if not already hidden
|
|
|
|
gFormatToolbarHidden = gFormatToolbar.getAttribute("hidden");
|
|
|
|
if (gFormatToolbarHidden != "true")
|
2000-05-12 06:37:40 +04:00
|
|
|
{
|
2002-07-13 02:28:30 +04:00
|
|
|
gFormatToolbar.setAttribute("hidden", "true");
|
|
|
|
}
|
2000-05-10 09:30:13 +04:00
|
|
|
|
2002-07-13 02:28:30 +04:00
|
|
|
gSourceContentWindow.focus();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Switch to the normal editor (first in the deck)
|
|
|
|
gContentWindowDeck.setAttribute("selectedIndex","0");
|
2000-05-10 09:30:13 +04:00
|
|
|
|
2002-07-13 02:28:30 +04:00
|
|
|
// Restore menus and toolbars
|
|
|
|
if (gFormatToolbarHidden != "true")
|
|
|
|
{
|
|
|
|
gFormatToolbar.setAttribute("hidden", gFormatToolbarHidden);
|
2000-05-12 06:37:40 +04:00
|
|
|
}
|
2000-08-30 06:44:18 +04:00
|
|
|
|
2002-07-13 02:28:30 +04:00
|
|
|
gContentWindow.focus();
|
|
|
|
}
|
2001-05-18 23:59:17 +04:00
|
|
|
|
2002-07-13 02:28:30 +04:00
|
|
|
// update commands to disable or re-enable stuff
|
|
|
|
window.updateCommands("mode_switch");
|
2000-08-30 06:44:18 +04:00
|
|
|
|
2002-07-13 02:28:30 +04:00
|
|
|
// We must set check on menu item since toolbar may have been used
|
|
|
|
document.getElementById("viewPreviewMode").setAttribute("checked","false");
|
|
|
|
document.getElementById("viewNormalMode").setAttribute("checked","false");
|
|
|
|
document.getElementById("viewAllTagsMode").setAttribute("checked","false");
|
|
|
|
document.getElementById("viewSourceMode").setAttribute("checked","false");
|
2001-03-22 03:59:29 +03:00
|
|
|
|
2002-07-13 02:28:30 +04:00
|
|
|
var menuID;
|
|
|
|
switch(mode)
|
|
|
|
{
|
|
|
|
case DisplayModePreview:
|
|
|
|
menuID = "viewPreviewMode";
|
|
|
|
break;
|
|
|
|
case DisplayModeNormal:
|
|
|
|
menuID = "viewNormalMode";
|
|
|
|
break;
|
|
|
|
case DisplayModeAllTags:
|
|
|
|
menuID = "viewAllTagsMode";
|
|
|
|
break;
|
|
|
|
case DisplayModeSource:
|
|
|
|
menuID = "viewSourceMode";
|
|
|
|
break;
|
2000-05-10 09:30:13 +04:00
|
|
|
}
|
2002-07-13 02:28:30 +04:00
|
|
|
if (menuID)
|
|
|
|
document.getElementById(menuID).setAttribute("checked","true");
|
|
|
|
|
|
|
|
return true;
|
2000-05-10 09:30:13 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
function EditorToggleParagraphMarks()
|
|
|
|
{
|
|
|
|
var menuItem = document.getElementById("viewParagraphMarks");
|
|
|
|
if (menuItem)
|
|
|
|
{
|
2000-06-09 05:04:34 +04:00
|
|
|
// Note that the 'type="checbox"' mechanism automatically
|
|
|
|
// toggles the "checked" state before the oncommand is called,
|
|
|
|
// so if "checked" is true now, it was just switched to that mode
|
2000-05-10 09:30:13 +04:00
|
|
|
var checked = menuItem.getAttribute("checked");
|
|
|
|
try {
|
2000-06-09 05:04:34 +04:00
|
|
|
editorShell.DisplayParagraphMarks(checked == "true");
|
2000-05-10 09:30:13 +04:00
|
|
|
}
|
2000-08-24 04:28:20 +04:00
|
|
|
catch(e) { return; }
|
2000-05-10 09:30:13 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-05-09 09:23:37 +04:00
|
|
|
function InitPasteAsMenu()
|
2000-05-10 09:30:13 +04:00
|
|
|
{
|
2001-05-09 09:23:37 +04:00
|
|
|
var menuItem = document.getElementById("menu_pasteTable")
|
|
|
|
if(menuItem)
|
|
|
|
{
|
|
|
|
menuItem.IsInTable
|
|
|
|
menuItem.setAttribute("label", GetString(IsInTable() ? "NestedTable" : "Table"));
|
|
|
|
// menuItem.setAttribute("accesskey",GetString("ObjectPropertiesAccessKey"));
|
|
|
|
}
|
|
|
|
// TODO: Do enabling based on what is in the clipboard
|
2000-05-10 09:30:13 +04:00
|
|
|
}
|
|
|
|
|
2000-09-14 18:45:16 +04:00
|
|
|
function BuildRecentMenu(savePrefs)
|
2000-06-28 18:58:36 +04:00
|
|
|
{
|
|
|
|
// Can't do anything if no prefs
|
|
|
|
if (!gPrefs) return;
|
|
|
|
|
2000-09-14 18:45:16 +04:00
|
|
|
var popup = document.getElementById("menupopup_RecentFiles");
|
2002-07-10 00:24:37 +04:00
|
|
|
if (!popup || !gEditor || !gEditor.document)
|
2000-06-28 18:58:36 +04:00
|
|
|
return;
|
|
|
|
|
|
|
|
// Delete existing menu
|
|
|
|
while (popup.firstChild)
|
|
|
|
popup.removeChild(popup.firstChild);
|
|
|
|
|
2000-09-14 18:45:16 +04:00
|
|
|
// Current page is the "0" item in the list we save in prefs,
|
|
|
|
// but we don't include it in the menu.
|
2002-07-10 00:24:37 +04:00
|
|
|
var curTitle = gEditor.document.title;
|
Composer Publishing fixes: Add support to not upload images (b=134001,r=akkana, sr=kin), Don't save site data if not successfully published (b=132604, r=akkana, sr=kin), improve error handling (b=126258, r=andreww, sr=dveditz), Make 'CheckAndSaveDocument' do publishing for remote url (b=126450, r=brade, sr=kin), Save command should publish if remote file (b=132634, r=brade,sr=kin), Fix FTP publishing (b=133823, r=brade, sr=kin) all are: a=asa, adt1.0.0+
2002-04-04 19:14:32 +04:00
|
|
|
var curUrl = StripPassword(GetDocumentUrl());
|
2001-03-22 03:59:29 +03:00
|
|
|
var historyCount = 10;
|
2001-10-27 09:39:25 +04:00
|
|
|
try { historyCount = gPrefs.getIntPref("editor.history.url_maximum"); } catch(e) {}
|
2000-09-14 18:45:16 +04:00
|
|
|
var titleArray = new Array(historyCount);
|
|
|
|
var urlArray = new Array(historyCount);
|
|
|
|
var menuIndex = 1;
|
|
|
|
var arrayIndex = 0;
|
|
|
|
var i;
|
2001-02-27 01:02:07 +03:00
|
|
|
var disableMenu = true;
|
2000-06-28 18:58:36 +04:00
|
|
|
|
2001-11-15 18:28:24 +03:00
|
|
|
if(!IsUrlAboutBlank(curUrl))
|
2000-09-14 18:45:16 +04:00
|
|
|
{
|
|
|
|
// Always put latest-opened URL at start of array
|
|
|
|
titleArray[0] = curTitle;
|
|
|
|
urlArray[0] = curUrl;
|
|
|
|
arrayIndex = 1;
|
|
|
|
}
|
|
|
|
for (i = 0; i < historyCount; i++)
|
2000-05-10 09:30:13 +04:00
|
|
|
{
|
2002-01-05 23:25:53 +03:00
|
|
|
var title = GetUnicharPref("editor.history_title_"+i);
|
|
|
|
var url = GetUnicharPref("editor.history_url_"+i);
|
2000-06-28 18:58:36 +04:00
|
|
|
|
2001-10-03 03:47:47 +04:00
|
|
|
// Continue if URL pref is missing because
|
|
|
|
// a URL not found during loading may have been removed
|
Composer Publishing fixes: Add support to not upload images (b=134001,r=akkana, sr=kin), Don't save site data if not successfully published (b=132604, r=akkana, sr=kin), improve error handling (b=126258, r=andreww, sr=dveditz), Make 'CheckAndSaveDocument' do publishing for remote url (b=126450, r=brade, sr=kin), Save command should publish if remote file (b=132634, r=brade,sr=kin), Fix FTP publishing (b=133823, r=brade, sr=kin) all are: a=asa, adt1.0.0+
2002-04-04 19:14:32 +04:00
|
|
|
// Also skip "data:" URL
|
|
|
|
if (!url || GetScheme(url) == "data")
|
2001-10-03 03:47:47 +04:00
|
|
|
continue;
|
2001-03-22 03:59:29 +03:00
|
|
|
|
Composer Publishing fixes: Add support to not upload images (b=134001,r=akkana, sr=kin), Don't save site data if not successfully published (b=132604, r=akkana, sr=kin), improve error handling (b=126258, r=andreww, sr=dveditz), Make 'CheckAndSaveDocument' do publishing for remote url (b=126450, r=brade, sr=kin), Save command should publish if remote file (b=132634, r=brade,sr=kin), Fix FTP publishing (b=133823, r=brade, sr=kin) all are: a=asa, adt1.0.0+
2002-04-04 19:14:32 +04:00
|
|
|
// Never show password in menu!
|
|
|
|
url = StripPassword(url);
|
|
|
|
|
|
|
|
// Skip over current URL
|
|
|
|
if (url != curUrl)
|
2000-09-14 18:45:16 +04:00
|
|
|
{
|
Composer Publishing fixes: Add support to not upload images (b=134001,r=akkana, sr=kin), Don't save site data if not successfully published (b=132604, r=akkana, sr=kin), improve error handling (b=126258, r=andreww, sr=dveditz), Make 'CheckAndSaveDocument' do publishing for remote url (b=126450, r=brade, sr=kin), Save command should publish if remote file (b=132634, r=brade,sr=kin), Fix FTP publishing (b=133823, r=brade, sr=kin) all are: a=asa, adt1.0.0+
2002-04-04 19:14:32 +04:00
|
|
|
|
2000-09-14 18:45:16 +04:00
|
|
|
// Build the menu
|
|
|
|
AppendRecentMenuitem(popup, title, url, menuIndex);
|
|
|
|
menuIndex++;
|
2001-02-27 01:02:07 +03:00
|
|
|
disableMenu = false;
|
2000-09-14 18:45:16 +04:00
|
|
|
|
|
|
|
// Save in array for prefs
|
|
|
|
if (savePrefs && arrayIndex < historyCount)
|
2001-03-22 03:59:29 +03:00
|
|
|
{
|
2000-09-14 18:45:16 +04:00
|
|
|
titleArray[arrayIndex] = title;
|
|
|
|
urlArray[arrayIndex] = url;
|
|
|
|
arrayIndex++;
|
2001-03-22 03:59:29 +03:00
|
|
|
}
|
2000-09-14 18:45:16 +04:00
|
|
|
}
|
|
|
|
}
|
2000-07-01 06:16:04 +04:00
|
|
|
|
2000-09-14 18:45:16 +04:00
|
|
|
// Now resave the list back to prefs in the new order
|
|
|
|
if (savePrefs)
|
|
|
|
{
|
|
|
|
savePrefs = false;
|
|
|
|
for (i = 0; i < historyCount; i++)
|
2000-07-01 06:16:04 +04:00
|
|
|
{
|
2000-09-14 18:45:16 +04:00
|
|
|
if (!urlArray[i])
|
|
|
|
break;
|
2002-01-05 23:25:53 +03:00
|
|
|
SetUnicharPref("editor.history_title_"+i, titleArray[i]);
|
|
|
|
SetUnicharPref("editor.history_url_"+i, urlArray[i]);
|
2000-09-14 18:45:16 +04:00
|
|
|
savePrefs = true;
|
2000-07-01 06:16:04 +04:00
|
|
|
}
|
2000-06-28 18:58:36 +04:00
|
|
|
}
|
2000-09-14 18:45:16 +04:00
|
|
|
// Force saving to file so next file opened finds these values
|
2001-10-27 09:39:25 +04:00
|
|
|
if (savePrefs) {
|
|
|
|
var prefsService = Components.classes["@mozilla.org/preferences-service;1"]
|
|
|
|
.getService(Components.interfaces.nsIPrefService);
|
|
|
|
prefsService.savePrefFile(null);
|
|
|
|
}
|
2001-02-27 01:02:07 +03:00
|
|
|
|
|
|
|
// Disable menu item if no entries
|
2002-05-18 01:50:04 +04:00
|
|
|
SetElementEnabledById("menu_RecentFiles", !disableMenu);
|
2000-06-28 18:58:36 +04:00
|
|
|
}
|
|
|
|
|
2000-09-14 18:45:16 +04:00
|
|
|
function AppendRecentMenuitem(menupopup, title, url, menuIndex)
|
2000-06-28 18:58:36 +04:00
|
|
|
{
|
|
|
|
if (menupopup)
|
|
|
|
{
|
2002-02-20 05:17:46 +03:00
|
|
|
var menuItem = document.createElementNS(XUL_NS, "menuitem");
|
2000-06-28 18:58:36 +04:00
|
|
|
if (menuItem)
|
|
|
|
{
|
2000-09-14 18:45:16 +04:00
|
|
|
var accessKey;
|
|
|
|
if (menuIndex <= 9)
|
|
|
|
accessKey = String(menuIndex);
|
|
|
|
else if (menuIndex == 10)
|
|
|
|
accessKey = "0";
|
|
|
|
else
|
|
|
|
accessKey = " ";
|
|
|
|
|
|
|
|
var itemString = accessKey+" ";
|
2001-02-27 01:02:07 +03:00
|
|
|
|
|
|
|
// Show "title [url]" or just the URL
|
2000-09-14 18:45:16 +04:00
|
|
|
if (title)
|
2001-02-27 01:02:07 +03:00
|
|
|
{
|
|
|
|
itemString += title;
|
|
|
|
itemString += " [";
|
|
|
|
}
|
|
|
|
itemString += url;
|
|
|
|
if (title)
|
|
|
|
itemString += "]";
|
2000-06-28 18:58:36 +04:00
|
|
|
|
2001-03-22 03:59:29 +03:00
|
|
|
menuItem.setAttribute("label", itemString);
|
|
|
|
menuItem.setAttribute("value", url);
|
2000-09-14 18:45:16 +04:00
|
|
|
if (accessKey != " ")
|
2001-03-22 03:59:29 +03:00
|
|
|
menuItem.setAttribute("accesskey", accessKey);
|
2002-03-27 05:04:43 +03:00
|
|
|
menuItem.setAttribute("oncommand", "editPage(getAttribute('value'), window, false)");
|
2000-06-28 18:58:36 +04:00
|
|
|
menupopup.appendChild(menuItem);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2000-05-10 09:30:13 +04:00
|
|
|
|
Composer Publishing fixes: Add support to not upload images (b=134001,r=akkana, sr=kin), Don't save site data if not successfully published (b=132604, r=akkana, sr=kin), improve error handling (b=126258, r=andreww, sr=dveditz), Make 'CheckAndSaveDocument' do publishing for remote url (b=126450, r=brade, sr=kin), Save command should publish if remote file (b=132634, r=brade,sr=kin), Fix FTP publishing (b=133823, r=brade, sr=kin) all are: a=asa, adt1.0.0+
2002-04-04 19:14:32 +04:00
|
|
|
function EditorInitFileMenu()
|
|
|
|
{
|
|
|
|
// Disable "Save" menuitem when editing remote url. User should use "Save As"
|
|
|
|
var scheme = GetScheme(GetDocumentUrl());
|
|
|
|
if (scheme && scheme != "file")
|
|
|
|
SetElementEnabledById("saveMenuitem", false);
|
|
|
|
}
|
|
|
|
|
2000-05-10 09:30:13 +04:00
|
|
|
function EditorInitFormatMenu()
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
{
|
2001-05-18 10:42:37 +04:00
|
|
|
try {
|
|
|
|
InitObjectPropertiesMenuitem("objectProperties");
|
2002-04-11 17:33:30 +04:00
|
|
|
InitRemoveStylesMenuitems("removeStylesMenuitem", "removeLinksMenuitem", "removeNamedAnchorsMenuitem");
|
2001-05-18 10:42:37 +04:00
|
|
|
} catch(ex) {}
|
2000-09-07 09:39:27 +04:00
|
|
|
// Set alignment check
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
function InitObjectPropertiesMenuitem(id)
|
2000-05-10 09:30:13 +04:00
|
|
|
{
|
2000-05-25 07:35:33 +04:00
|
|
|
// Set strings and enable for the [Object] Properties item
|
|
|
|
// Note that we directly do the enabling instead of
|
|
|
|
// using goSetCommandEnabled since we already have the menuitem
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
var menuItem = document.getElementById(id);
|
2000-09-06 03:21:22 +04:00
|
|
|
if (!menuItem) return null;
|
|
|
|
|
2001-05-18 10:42:37 +04:00
|
|
|
var element;
|
2001-09-29 08:40:38 +04:00
|
|
|
var menuStr = GetString("AdvancedProperties");
|
2000-09-06 03:21:22 +04:00
|
|
|
var name;
|
|
|
|
|
2001-05-18 10:42:37 +04:00
|
|
|
if (IsEditingRenderedHTML())
|
|
|
|
element = GetObjectForProperties();
|
|
|
|
|
2000-09-06 03:21:22 +04:00
|
|
|
if (element && element.nodeName)
|
2000-05-10 09:30:13 +04:00
|
|
|
{
|
2000-09-06 03:21:22 +04:00
|
|
|
var objStr = "";
|
|
|
|
menuItem.setAttribute("disabled", "");
|
|
|
|
name = element.nodeName.toLowerCase();
|
|
|
|
switch (name)
|
2000-05-10 09:30:13 +04:00
|
|
|
{
|
2000-09-06 03:21:22 +04:00
|
|
|
case "img":
|
2002-03-14 10:34:44 +03:00
|
|
|
// Check if img is enclosed in link
|
|
|
|
// (use "href" to not be fooled by named anchor)
|
2002-07-13 02:28:30 +04:00
|
|
|
try
|
|
|
|
{
|
|
|
|
if (gEditor.getElementOrParentByTagName("href", element))
|
|
|
|
objStr = GetString("ImageAndLink");
|
|
|
|
} catch(e) {}
|
|
|
|
|
|
|
|
if (objStr == "")
|
2002-03-14 10:31:33 +03:00
|
|
|
objStr = GetString("Image");
|
2000-09-06 03:21:22 +04:00
|
|
|
break;
|
|
|
|
case "hr":
|
|
|
|
objStr = GetString("HLine");
|
|
|
|
break;
|
|
|
|
case "table":
|
|
|
|
objStr = GetString("Table");
|
|
|
|
break;
|
|
|
|
case "th":
|
|
|
|
name = "td";
|
|
|
|
case "td":
|
|
|
|
objStr = GetString("TableCell");
|
|
|
|
break;
|
|
|
|
case "ol":
|
|
|
|
case "ul":
|
|
|
|
case "dl":
|
|
|
|
objStr = GetString("List");
|
|
|
|
break;
|
2001-08-18 04:10:37 +04:00
|
|
|
case "li":
|
|
|
|
objStr = GetString("ListItem");
|
|
|
|
break;
|
2002-01-15 18:49:46 +03:00
|
|
|
case "form":
|
|
|
|
objStr = GetString("Form");
|
|
|
|
break;
|
|
|
|
case "input":
|
|
|
|
var type = element.getAttribute("type");
|
|
|
|
if (type && type.toLowerCase() == "image")
|
|
|
|
objStr = GetString("InputImage");
|
|
|
|
else
|
|
|
|
objStr = GetString("InputTag");
|
|
|
|
break;
|
|
|
|
case "textarea":
|
|
|
|
objStr = GetString("TextArea");
|
|
|
|
break;
|
|
|
|
case "select":
|
|
|
|
objStr = GetString("Select");
|
|
|
|
break;
|
|
|
|
case "button":
|
|
|
|
objStr = GetString("Button");
|
|
|
|
break;
|
|
|
|
case "label":
|
|
|
|
objStr = GetString("Label");
|
|
|
|
break;
|
|
|
|
case "fieldset":
|
|
|
|
objStr = GetString("FieldSet");
|
|
|
|
break;
|
2000-09-06 03:21:22 +04:00
|
|
|
case "a":
|
|
|
|
if (element.name)
|
|
|
|
{
|
|
|
|
objStr = GetString("NamedAnchor");
|
|
|
|
name = "anchor";
|
|
|
|
}
|
|
|
|
else if(element.href)
|
|
|
|
{
|
|
|
|
objStr = GetString("Link");
|
|
|
|
name = "href";
|
|
|
|
}
|
|
|
|
break;
|
2000-05-10 09:30:13 +04:00
|
|
|
}
|
2001-09-29 08:40:38 +04:00
|
|
|
if (objStr)
|
|
|
|
menuStr = GetString("ObjectProperties").replace(/%obj%/,objStr);
|
2000-09-06 03:21:22 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// We show generic "Properties" string, but disable menu item
|
|
|
|
menuItem.setAttribute("disabled","true");
|
2000-05-10 09:30:13 +04:00
|
|
|
}
|
2001-03-22 03:59:29 +03:00
|
|
|
menuItem.setAttribute("label", menuStr);
|
2000-09-06 03:21:22 +04:00
|
|
|
menuItem.setAttribute("accesskey",GetString("ObjectPropertiesAccessKey"));
|
|
|
|
return name;
|
2000-05-10 09:30:13 +04:00
|
|
|
}
|
|
|
|
|
2000-06-16 18:22:12 +04:00
|
|
|
function InitParagraphMenu()
|
2000-06-06 00:26:26 +04:00
|
|
|
{
|
2000-06-16 18:22:12 +04:00
|
|
|
var mixedObj = new Object();
|
2002-07-13 02:28:30 +04:00
|
|
|
var state;
|
|
|
|
try {
|
|
|
|
state = gEditor.getParagraphState(mixedObj);
|
|
|
|
}
|
|
|
|
catch(e) {}
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
var IDSuffix;
|
2000-06-16 18:22:12 +04:00
|
|
|
|
|
|
|
// PROBLEM: When we get blockquote, it masks other styles contained by it
|
2001-03-22 03:59:29 +03:00
|
|
|
// We need a separate method to get blockquote state
|
2000-06-16 18:22:12 +04:00
|
|
|
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
// We use "x" as uninitialized paragraph state
|
2000-08-31 16:44:56 +04:00
|
|
|
if (!state || state == "x")
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
IDSuffix = "bodyText" // No paragraph container
|
|
|
|
else
|
2000-06-16 18:22:12 +04:00
|
|
|
IDSuffix = state;
|
2001-03-22 03:59:29 +03:00
|
|
|
|
2000-09-06 03:21:22 +04:00
|
|
|
// Set "radio" check on one item, but...
|
|
|
|
var menuItem = document.getElementById("menu_"+IDSuffix);
|
|
|
|
menuItem.setAttribute("checked", "true");
|
|
|
|
|
|
|
|
// ..."bodyText" is returned if mixed selection, so remove checkmark
|
|
|
|
if (mixedObj.value)
|
|
|
|
menuItem.setAttribute("checked", "false");
|
2000-06-16 18:22:12 +04:00
|
|
|
}
|
|
|
|
|
2002-07-13 02:28:30 +04:00
|
|
|
function GetListStateString()
|
2000-06-16 18:22:12 +04:00
|
|
|
{
|
|
|
|
var mixedObj = new Object();
|
2002-07-13 02:28:30 +04:00
|
|
|
var hasOL = new Object();
|
|
|
|
var hasUL = new Object();
|
|
|
|
var hasDL = new Object();
|
|
|
|
gEditor.getListState(mixedObj, hasOL, hasUL, hasDL);
|
2000-06-16 18:22:12 +04:00
|
|
|
|
2002-07-13 02:28:30 +04:00
|
|
|
if (mixedObj.value)
|
|
|
|
return "mixed";
|
|
|
|
if (hasOL.value)
|
|
|
|
return "ol";
|
|
|
|
if (hasUL.value)
|
|
|
|
return "ul";
|
|
|
|
|
|
|
|
if (hasDL.value)
|
|
|
|
{
|
|
|
|
var hasLI = new Object();
|
|
|
|
var hasDT = new Object();
|
|
|
|
var hasDD = new Object();
|
|
|
|
gEditor.getListItemState(mixedObj, hasLI, hasDT, hasDD);
|
|
|
|
if (mixedObj.value)
|
|
|
|
return "mixed";
|
|
|
|
if (hasLI.value)
|
|
|
|
return "li";
|
|
|
|
if (hasDT.value)
|
|
|
|
return "dt";
|
|
|
|
if (hasDD.value)
|
|
|
|
return "dd";
|
2000-06-06 00:26:26 +04:00
|
|
|
}
|
2002-07-13 02:28:30 +04:00
|
|
|
|
|
|
|
// return "noList" if we aren't in a list at all
|
|
|
|
return "noList";
|
|
|
|
}
|
|
|
|
|
|
|
|
function InitListMenu()
|
|
|
|
{
|
|
|
|
if (!gIsHTMLEditor) return;
|
|
|
|
|
|
|
|
var IDSuffix = GetListStateString();
|
|
|
|
|
2001-10-03 03:47:47 +04:00
|
|
|
// Set enable state for the "None" menuitem
|
2002-07-13 02:28:30 +04:00
|
|
|
goSetCommandEnabled("cmd_removeList", IDSuffix != "noList");
|
2001-10-03 03:47:47 +04:00
|
|
|
|
2000-09-06 03:21:22 +04:00
|
|
|
// Set "radio" check on one item, but...
|
2002-07-13 02:28:30 +04:00
|
|
|
// we won't find a match if it's "mixed"
|
2000-09-06 03:21:22 +04:00
|
|
|
var menuItem = document.getElementById("menu_"+IDSuffix);
|
2002-07-13 02:28:30 +04:00
|
|
|
if (menuItem)
|
|
|
|
menuItem.setAttribute("checked", "true");
|
|
|
|
}
|
2001-10-03 03:47:47 +04:00
|
|
|
|
2002-07-13 02:28:30 +04:00
|
|
|
function GetAlignmentString()
|
|
|
|
{
|
|
|
|
var mixedObj = new Object();
|
|
|
|
var alignObj = new Object();
|
|
|
|
gEditor.getAlignment(mixedObj, alignObj);
|
2000-06-16 18:22:12 +04:00
|
|
|
|
2000-09-06 03:21:22 +04:00
|
|
|
if (mixedObj.value)
|
2002-07-13 02:28:30 +04:00
|
|
|
return "mixed";
|
|
|
|
if (alignObj.value == nsIHTMLEditor.eLeft)
|
|
|
|
return "left";
|
|
|
|
if (alignObj.value == nsIHTMLEditor.eCenter)
|
|
|
|
return "center";
|
|
|
|
if (alignObj.value == nsIHTMLEditor.eRight)
|
|
|
|
return "right";
|
|
|
|
if (alignObj.value == nsIHTMLEditor.eJustify)
|
|
|
|
return "justify";
|
2001-09-19 04:44:12 +04:00
|
|
|
|
2002-07-13 02:28:30 +04:00
|
|
|
// return "left" if we got here
|
|
|
|
return "left";
|
2000-06-06 00:26:26 +04:00
|
|
|
}
|
|
|
|
|
2000-09-07 09:39:27 +04:00
|
|
|
function InitAlignMenu()
|
|
|
|
{
|
2002-07-13 02:28:30 +04:00
|
|
|
if (!gIsHTMLEditor) return;
|
2000-09-07 09:39:27 +04:00
|
|
|
|
2002-07-13 02:28:30 +04:00
|
|
|
var IDSuffix = GetAlignmentString();
|
2001-03-22 03:59:29 +03:00
|
|
|
|
2002-07-13 02:28:30 +04:00
|
|
|
// we won't find a match if it's "mixed"
|
2000-09-07 09:39:27 +04:00
|
|
|
var menuItem = document.getElementById("menu_"+IDSuffix);
|
2002-07-13 02:28:30 +04:00
|
|
|
if (menuItem)
|
|
|
|
menuItem.setAttribute("checked", "true");
|
2000-09-07 09:39:27 +04:00
|
|
|
}
|
|
|
|
|
2000-05-10 09:30:13 +04:00
|
|
|
function EditorInitToolbars()
|
|
|
|
{
|
2002-07-13 02:28:30 +04:00
|
|
|
if (!gIsHTMLEditor)
|
2001-05-18 10:42:37 +04:00
|
|
|
{
|
|
|
|
//Hide the formating toolbar
|
2002-07-13 02:28:30 +04:00
|
|
|
HideItem("FormatToolbar");
|
2001-05-18 10:42:37 +04:00
|
|
|
|
|
|
|
//Hide the edit mode toolbar
|
2002-07-13 02:28:30 +04:00
|
|
|
HideItem("EditModeToolbar");
|
|
|
|
|
2002-05-18 01:50:04 +04:00
|
|
|
SetElementEnabledById("cmd_viewFormatToolbar", false);
|
|
|
|
SetElementEnabledById("cmd_viewEditModeToolbar", false);
|
2001-05-18 10:42:37 +04:00
|
|
|
}
|
2000-05-10 09:30:13 +04:00
|
|
|
}
|
|
|
|
|
2001-03-29 01:16:44 +04:00
|
|
|
function EditorSetDefaultPrefsAndDoctype()
|
2000-05-10 09:30:13 +04:00
|
|
|
{
|
|
|
|
var domdoc;
|
2002-07-10 00:24:37 +04:00
|
|
|
try { domdoc = gEditor.document; } catch (e) { dump( e + "\n"); }
|
2000-05-10 09:30:13 +04:00
|
|
|
if ( !domdoc )
|
|
|
|
{
|
2001-03-29 01:16:44 +04:00
|
|
|
dump("EditorSetDefaultPrefsAndDoctype: EDITOR DOCUMENT NOT FOUND\n");
|
2000-05-10 09:30:13 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2001-10-05 18:19:04 +04:00
|
|
|
// Insert a doctype element
|
2001-03-29 01:16:44 +04:00
|
|
|
// if it is missing from existing doc
|
2001-10-15 18:51:26 +04:00
|
|
|
if (!domdoc.doctype)
|
2000-05-12 06:37:40 +04:00
|
|
|
{
|
2001-03-29 01:16:44 +04:00
|
|
|
var newdoctype = domdoc.implementation.createDocumentType("html", "-//W3C//DTD HTML 4.01 Transitional//EN","");
|
2001-10-15 18:51:26 +04:00
|
|
|
if (newdoctype)
|
|
|
|
domdoc.insertBefore(newdoctype, domdoc.firstChild);
|
2000-05-12 06:37:40 +04:00
|
|
|
}
|
2001-03-29 01:16:44 +04:00
|
|
|
|
2000-05-10 09:30:13 +04:00
|
|
|
// search for head; we'll need this for meta tag additions
|
|
|
|
var headelement = 0;
|
|
|
|
var headnodelist = domdoc.getElementsByTagName("head");
|
|
|
|
if (headnodelist)
|
|
|
|
{
|
|
|
|
var sz = headnodelist.length;
|
|
|
|
if ( sz >= 1 )
|
|
|
|
headelement = headnodelist.item(0);
|
2001-10-15 18:51:26 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
headelement = domdoc.createElement("head");
|
|
|
|
if (headelement)
|
|
|
|
domdoc.insertAfter(headelement, domdoc.firstChild);
|
|
|
|
}
|
|
|
|
|
|
|
|
// add title tag if not present
|
2002-07-10 00:24:37 +04:00
|
|
|
var titlenodelist = gEditor.document.getElementsByTagName("title");
|
2001-10-15 18:51:26 +04:00
|
|
|
if (headelement && titlenodelist && titlenodelist.length == 0)
|
|
|
|
{
|
|
|
|
titleElement = domdoc.createElement("title");
|
|
|
|
if (titleElement)
|
|
|
|
headelement.appendChild(titleElement);
|
2000-05-10 09:30:13 +04:00
|
|
|
}
|
2001-03-22 03:59:29 +03:00
|
|
|
|
2001-10-15 18:51:26 +04:00
|
|
|
/* only set default prefs for new documents */
|
2002-02-15 09:07:40 +03:00
|
|
|
if (!IsUrlAboutBlank(GetDocumentUrl()))
|
2001-10-15 18:51:26 +04:00
|
|
|
return;
|
|
|
|
|
2000-05-10 09:30:13 +04:00
|
|
|
// search for author meta tag.
|
|
|
|
// if one is found, don't do anything.
|
2001-03-22 03:59:29 +03:00
|
|
|
// if not, create one and make it a child of the head tag
|
2000-05-10 09:30:13 +04:00
|
|
|
// and set its content attribute to the value of the editor.author preference.
|
2001-03-22 03:59:29 +03:00
|
|
|
|
2000-05-10 09:30:13 +04:00
|
|
|
var nodelist = domdoc.getElementsByTagName("meta");
|
|
|
|
if ( nodelist )
|
|
|
|
{
|
2000-08-09 06:25:25 +04:00
|
|
|
// we should do charset first since we need to have charset before
|
|
|
|
// hitting other 8-bit char in other meta tags
|
|
|
|
// grab charset pref and make it the default charset
|
2001-10-15 18:51:26 +04:00
|
|
|
var element;
|
2000-08-09 06:25:25 +04:00
|
|
|
var prefCharsetString = 0;
|
|
|
|
try
|
|
|
|
{
|
2001-10-27 09:39:25 +04:00
|
|
|
prefCharsetString = gPrefs.getComplexValue("intl.charset.default",
|
2001-10-31 03:13:06 +03:00
|
|
|
Components.interfaces.nsIPrefLocalizedString).data;
|
2000-08-09 06:25:25 +04:00
|
|
|
}
|
|
|
|
catch (ex) {}
|
|
|
|
if ( prefCharsetString && prefCharsetString != 0)
|
|
|
|
{
|
2000-09-06 03:21:22 +04:00
|
|
|
element = domdoc.createElement("meta");
|
2000-08-09 06:25:25 +04:00
|
|
|
if ( element )
|
|
|
|
{
|
2002-07-18 01:32:20 +04:00
|
|
|
element.setAttribute("http-equiv", "content-type");
|
|
|
|
element.setAttribute("content", "text/html; charset=" + prefCharsetString);
|
2000-08-09 06:25:25 +04:00
|
|
|
headelement.appendChild( element );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-05-10 09:30:13 +04:00
|
|
|
var node = 0;
|
|
|
|
var listlength = nodelist.length;
|
|
|
|
|
|
|
|
// let's start by assuming we have an author in case we don't have the pref
|
|
|
|
var authorFound = false;
|
|
|
|
for (var i = 0; i < listlength && !authorFound; i++)
|
|
|
|
{
|
|
|
|
node = nodelist.item(i);
|
|
|
|
if ( node )
|
|
|
|
{
|
2001-10-26 22:43:25 +04:00
|
|
|
var value = node.getAttribute("name");
|
|
|
|
if (value && value.toLowerCase() == "author")
|
2000-05-10 09:30:13 +04:00
|
|
|
{
|
|
|
|
authorFound = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var prefAuthorString = 0;
|
|
|
|
try
|
|
|
|
{
|
2001-10-27 09:39:25 +04:00
|
|
|
prefAuthorString = gPrefs.getComplexValue("editor.author",
|
2001-10-31 03:13:06 +03:00
|
|
|
Components.interfaces.nsISupportsWString).data;
|
2000-05-10 09:30:13 +04:00
|
|
|
}
|
|
|
|
catch (ex) {}
|
|
|
|
if ( prefAuthorString && prefAuthorString != 0)
|
|
|
|
{
|
|
|
|
if ( !authorFound && headelement)
|
|
|
|
{
|
|
|
|
/* create meta tag with 2 attributes */
|
2000-09-06 03:21:22 +04:00
|
|
|
element = domdoc.createElement("meta");
|
2000-05-10 09:30:13 +04:00
|
|
|
if ( element )
|
|
|
|
{
|
2002-07-18 01:32:20 +04:00
|
|
|
element.setAttribute("name", "author");
|
|
|
|
element.setAttribute("content", prefAuthorString);
|
2000-05-10 09:30:13 +04:00
|
|
|
headelement.appendChild( element );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-09-06 03:21:22 +04:00
|
|
|
// Get editor color prefs
|
2000-05-10 09:30:13 +04:00
|
|
|
var use_custom_colors = false;
|
|
|
|
try {
|
2001-10-27 09:39:25 +04:00
|
|
|
use_custom_colors = gPrefs.getBoolPref("editor.use_custom_colors");
|
2000-05-10 09:30:13 +04:00
|
|
|
}
|
2000-08-24 04:28:20 +04:00
|
|
|
catch (ex) {}
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
|
2000-09-22 09:13:34 +04:00
|
|
|
// find body node
|
|
|
|
var bodyelement = GetBodyElement();
|
|
|
|
if (bodyelement)
|
2000-05-10 09:30:13 +04:00
|
|
|
{
|
2000-09-22 09:13:34 +04:00
|
|
|
if ( use_custom_colors )
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
{
|
2000-09-22 09:13:34 +04:00
|
|
|
// try to get the default color values. ignore them if we don't have them.
|
|
|
|
var text_color;
|
|
|
|
var link_color;
|
|
|
|
var active_link_color;
|
|
|
|
var followed_link_color;
|
|
|
|
var background_color;
|
2001-03-22 03:59:29 +03:00
|
|
|
|
2001-10-27 09:39:25 +04:00
|
|
|
try { text_color = gPrefs.getCharPref("editor.text_color"); } catch (e) {}
|
|
|
|
try { link_color = gPrefs.getCharPref("editor.link_color"); } catch (e) {}
|
|
|
|
try { active_link_color = gPrefs.getCharPref("editor.active_link_color"); } catch (e) {}
|
|
|
|
try { followed_link_color = gPrefs.getCharPref("editor.followed_link_color"); } catch (e) {}
|
|
|
|
try { background_color = gPrefs.getCharPref("editor.background_color"); } catch(e) {}
|
2000-09-22 09:13:34 +04:00
|
|
|
|
|
|
|
// add the color attributes to the body tag.
|
|
|
|
// and use them for the default text and background colors if not empty
|
|
|
|
if (text_color)
|
|
|
|
{
|
|
|
|
bodyelement.setAttribute("text", text_color);
|
|
|
|
gDefaultTextColor = text_color;
|
|
|
|
}
|
|
|
|
if (background_color)
|
|
|
|
{
|
|
|
|
bodyelement.setAttribute("bgcolor", background_color);
|
|
|
|
gDefaultBackgroundColor = background_color
|
|
|
|
}
|
2000-05-10 09:30:13 +04:00
|
|
|
|
2000-09-22 09:13:34 +04:00
|
|
|
if (link_color)
|
|
|
|
bodyelement.setAttribute("link", link_color);
|
2001-03-22 03:59:29 +03:00
|
|
|
if (active_link_color)
|
2000-09-22 09:13:34 +04:00
|
|
|
bodyelement.setAttribute("alink", active_link_color);
|
|
|
|
if (followed_link_color)
|
|
|
|
bodyelement.setAttribute("vlink", followed_link_color);
|
|
|
|
}
|
|
|
|
// Default image is independent of Custom colors???
|
|
|
|
var background_image;
|
2001-10-27 09:39:25 +04:00
|
|
|
try { background_image = gPrefs.getCharPref("editor.default_background_image"); } catch(e) {}
|
2000-08-24 04:28:20 +04:00
|
|
|
|
2000-09-22 09:13:34 +04:00
|
|
|
if (background_image)
|
|
|
|
bodyelement.setAttribute("background", background_image);
|
|
|
|
}
|
2000-05-10 09:30:13 +04:00
|
|
|
// auto-save???
|
|
|
|
}
|
|
|
|
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
function GetBodyElement()
|
|
|
|
{
|
|
|
|
try {
|
2002-07-10 00:24:37 +04:00
|
|
|
var bodyNodelist = gEditor.document.getElementsByTagName("body");
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
if (bodyNodelist)
|
|
|
|
return bodyNodelist.item(0);
|
|
|
|
}
|
|
|
|
catch (ex) {
|
|
|
|
dump("no body tag found?!\n");
|
|
|
|
// better have one, how can we blow things up here?
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2000-05-10 09:30:13 +04:00
|
|
|
// --------------------------- Logging stuff ---------------------------
|
|
|
|
|
|
|
|
function EditorGetNodeFromOffsets(offsets)
|
|
|
|
{
|
|
|
|
var node = null;
|
2002-07-10 00:24:37 +04:00
|
|
|
node = gEditor.document;
|
2000-05-10 09:30:13 +04:00
|
|
|
|
2000-09-06 03:21:22 +04:00
|
|
|
for (var i = 0; i < offsets.length; i++)
|
2000-05-10 09:30:13 +04:00
|
|
|
{
|
|
|
|
node = node.childNodes[offsets[i]];
|
|
|
|
}
|
|
|
|
|
|
|
|
return node;
|
|
|
|
}
|
|
|
|
|
|
|
|
function EditorSetSelectionFromOffsets(selRanges)
|
|
|
|
{
|
2000-09-06 03:21:22 +04:00
|
|
|
var rangeArr, start, end, node, offset;
|
2002-07-10 00:24:37 +04:00
|
|
|
var selection = gEditor.selection;
|
2000-05-10 09:30:13 +04:00
|
|
|
|
2001-01-10 01:47:02 +03:00
|
|
|
selection.removeAllRanges();
|
2000-05-10 09:30:13 +04:00
|
|
|
|
2000-09-06 03:21:22 +04:00
|
|
|
for (var i = 0; i < selRanges.length; i++)
|
2000-05-10 09:30:13 +04:00
|
|
|
{
|
|
|
|
rangeArr = selRanges[i];
|
|
|
|
start = rangeArr[0];
|
|
|
|
end = rangeArr[1];
|
|
|
|
|
2002-07-10 00:24:37 +04:00
|
|
|
var range = gEditor.document.createRange();
|
2000-05-10 09:30:13 +04:00
|
|
|
|
|
|
|
node = EditorGetNodeFromOffsets(start[0]);
|
|
|
|
offset = start[1];
|
|
|
|
|
|
|
|
range.setStart(node, offset);
|
|
|
|
|
|
|
|
node = EditorGetNodeFromOffsets(end[0]);
|
|
|
|
offset = end[1];
|
|
|
|
|
|
|
|
range.setEnd(node, offset);
|
|
|
|
|
|
|
|
selection.addRange(range);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------
|
|
|
|
function initFontStyleMenu(menuPopup)
|
|
|
|
{
|
|
|
|
for (var i = 0; i < menuPopup.childNodes.length; i++)
|
|
|
|
{
|
|
|
|
var menuItem = menuPopup.childNodes[i];
|
|
|
|
var theStyle = menuItem.getAttribute("state");
|
|
|
|
if (theStyle)
|
|
|
|
{
|
|
|
|
menuItem.setAttribute("checked", theStyle);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------
|
|
|
|
function onButtonUpdate(button, commmandID)
|
|
|
|
{
|
|
|
|
var commandNode = document.getElementById(commmandID);
|
|
|
|
var state = commandNode.getAttribute("state");
|
2001-10-02 07:06:51 +04:00
|
|
|
button.checked = state == "true";
|
2000-05-10 09:30:13 +04:00
|
|
|
}
|
|
|
|
|
2000-08-24 05:20:29 +04:00
|
|
|
//--------------------------------------------------------------------
|
|
|
|
function onStateButtonUpdate(button, commmandID, onState)
|
|
|
|
{
|
|
|
|
var commandNode = document.getElementById(commmandID);
|
|
|
|
var state = commandNode.getAttribute("state");
|
|
|
|
|
2001-10-02 07:06:51 +04:00
|
|
|
button.checked = state == onState;
|
2000-05-10 09:30:13 +04:00
|
|
|
}
|
|
|
|
|
2001-11-15 18:28:24 +03:00
|
|
|
// --------------------------- Status calls ---------------------------
|
2000-05-10 09:30:13 +04:00
|
|
|
function getColorAndSetColorWell(ColorPickerID, ColorWellID)
|
|
|
|
{
|
|
|
|
var colorWell;
|
|
|
|
if (ColorWellID)
|
|
|
|
colorWell = document.getElementById(ColorWellID);
|
|
|
|
|
|
|
|
var colorPicker = document.getElementById(ColorPickerID);
|
2001-03-22 03:59:29 +03:00
|
|
|
if (colorPicker)
|
2000-05-10 09:30:13 +04:00
|
|
|
{
|
|
|
|
// Extract color from colorPicker and assign to colorWell.
|
2000-07-12 03:41:22 +04:00
|
|
|
var color = colorPicker.getAttribute("color");
|
2000-05-10 09:30:13 +04:00
|
|
|
|
|
|
|
if (colorWell && color)
|
|
|
|
{
|
2000-11-30 18:07:53 +03:00
|
|
|
// Use setAttribute so colorwell can be a XUL element, such as button
|
2001-03-22 03:59:29 +03:00
|
|
|
colorWell.setAttribute("style", "background-color: " + color);
|
2000-05-10 09:30:13 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return color;
|
|
|
|
}
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------------
|
|
|
|
function IsSpellCheckerInstalled()
|
|
|
|
{
|
2001-09-19 03:35:19 +04:00
|
|
|
return "@mozilla.org/spellchecker;1" in Components.classes;
|
2000-05-10 09:30:13 +04:00
|
|
|
}
|
|
|
|
|
2000-08-10 05:04:50 +04:00
|
|
|
//-----------------------------------------------------------------------------------
|
|
|
|
function IsFindInstalled()
|
|
|
|
{
|
2001-09-19 03:35:19 +04:00
|
|
|
return "@mozilla.org/appshell/component/find;1" in Components.classes;
|
2000-08-10 05:04:50 +04:00
|
|
|
}
|
|
|
|
|
2000-05-10 09:30:13 +04:00
|
|
|
//-----------------------------------------------------------------------------------
|
2000-07-12 03:41:22 +04:00
|
|
|
function RemoveInapplicableUIElements()
|
2000-05-10 09:30:13 +04:00
|
|
|
{
|
2000-08-10 07:43:09 +04:00
|
|
|
// For items that are in their own menu block, remove associated separator
|
|
|
|
// (we can't use "hidden" since class="hide-in-IM" CSS rule interferes)
|
|
|
|
|
2000-08-10 05:04:50 +04:00
|
|
|
// if no find, remove find ui
|
|
|
|
if (!IsFindInstalled())
|
|
|
|
{
|
2001-03-29 01:16:44 +04:00
|
|
|
HideItem("menu_find");
|
|
|
|
HideItem("menu_findnext");
|
|
|
|
HideItem("menu_replace");
|
|
|
|
HideItem("menu_find");
|
|
|
|
RemoveItem("sep_find");
|
2000-08-10 07:43:09 +04:00
|
|
|
}
|
|
|
|
|
2000-08-10 05:04:50 +04:00
|
|
|
// if no spell checker, remove spell checker ui
|
2000-05-10 09:30:13 +04:00
|
|
|
if (!IsSpellCheckerInstalled())
|
|
|
|
{
|
2001-03-29 01:16:44 +04:00
|
|
|
HideItem("spellingButton");
|
|
|
|
HideItem("menu_checkspelling");
|
|
|
|
RemoveItem("sep_checkspelling");
|
|
|
|
}
|
2002-03-27 05:04:43 +03:00
|
|
|
else
|
|
|
|
{
|
|
|
|
SetElementEnabled(document.getElementById("menu_checkspelling"), true);
|
|
|
|
SetElementEnabled(document.getElementById("spellingButton"), true);
|
|
|
|
SetElementEnabled(document.getElementById("checkspellingkb"), true);
|
|
|
|
}
|
2000-05-17 02:53:01 +04:00
|
|
|
|
2002-07-10 00:24:37 +04:00
|
|
|
// Remove menu items (from overlay shared with HTML editor) in non-HTML.
|
2002-07-13 02:28:30 +04:00
|
|
|
if (!gIsHTMLEditor)
|
2001-03-29 01:16:44 +04:00
|
|
|
{
|
|
|
|
HideItem("insertAnchor");
|
|
|
|
HideItem("insertImage");
|
|
|
|
HideItem("insertHline");
|
|
|
|
HideItem("insertTable");
|
|
|
|
HideItem("insertHTML");
|
2002-01-15 18:49:46 +03:00
|
|
|
HideItem("insertFormMenu");
|
2001-03-29 01:16:44 +04:00
|
|
|
HideItem("fileExportToText");
|
|
|
|
HideItem("viewFormatToolbar");
|
|
|
|
HideItem("viewEditModeToolbar");
|
2000-05-10 09:30:13 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-03-29 01:16:44 +04:00
|
|
|
function HideItem(id)
|
|
|
|
{
|
|
|
|
var item = document.getElementById(id);
|
|
|
|
if (item)
|
|
|
|
item.setAttribute("hidden", "true");
|
|
|
|
}
|
|
|
|
|
|
|
|
function RemoveItem(id)
|
|
|
|
{
|
|
|
|
var item = document.getElementById(id);
|
|
|
|
if (item)
|
|
|
|
item.parentNode.removeChild(item);
|
|
|
|
}
|
|
|
|
|
2000-05-25 07:35:33 +04:00
|
|
|
// Command Updating Strategy:
|
|
|
|
// Don't update on on selection change, only when menu is displayed,
|
|
|
|
// with this "oncreate" hander:
|
|
|
|
function EditorInitTableMenu()
|
2000-09-06 03:21:22 +04:00
|
|
|
{
|
2001-05-18 10:42:37 +04:00
|
|
|
try {
|
|
|
|
InitJoinCellMenuitem("menu_JoinTableCells");
|
|
|
|
} catch (ex) {}
|
2000-09-06 03:21:22 +04:00
|
|
|
|
|
|
|
// Set enable states for all table commands
|
|
|
|
goUpdateTableMenuItems(document.getElementById("composerTableMenuItems"));
|
|
|
|
}
|
|
|
|
|
|
|
|
function InitJoinCellMenuitem(id)
|
2000-05-25 07:35:33 +04:00
|
|
|
{
|
|
|
|
// Change text on the "Join..." item depending if we
|
|
|
|
// are joining selected cells or just cell to right
|
|
|
|
// TODO: What to do about normal selection that crosses
|
|
|
|
// table border? Try to figure out all cells
|
|
|
|
// included in the selection?
|
|
|
|
var menuText;
|
2000-09-06 03:21:22 +04:00
|
|
|
var menuItem = document.getElementById(id);
|
|
|
|
if (!menuItem) return;
|
2000-05-25 07:35:33 +04:00
|
|
|
|
|
|
|
// Use "Join selected cells if there's more than 1 cell selected
|
2002-07-13 02:28:30 +04:00
|
|
|
var tagNameObj = new Object();
|
|
|
|
var numSelected;
|
2001-05-18 10:42:37 +04:00
|
|
|
var foundElement;
|
|
|
|
|
2002-07-13 02:28:30 +04:00
|
|
|
try {
|
|
|
|
var elt = new Object();
|
|
|
|
numSelected = gEditor.getSelectedOrParentTableElement(elt,
|
|
|
|
tagNameObj);
|
|
|
|
foundElement = elt.value;
|
|
|
|
}
|
|
|
|
catch(e) {}
|
|
|
|
if (foundElement && numSelected > 1)
|
2000-05-25 07:35:33 +04:00
|
|
|
menuText = GetString("JoinSelectedCells");
|
|
|
|
else
|
|
|
|
menuText = GetString("JoinCellToRight");
|
|
|
|
|
2001-03-22 03:59:29 +03:00
|
|
|
menuItem.setAttribute("label",menuText);
|
2000-09-06 03:21:22 +04:00
|
|
|
menuItem.setAttribute("accesskey",GetString("JoinCellAccesskey"));
|
|
|
|
}
|
2000-08-10 07:43:09 +04:00
|
|
|
|
2002-04-11 17:33:30 +04:00
|
|
|
function InitRemoveStylesMenuitems(removeStylesId, removeLinksId, removeNamedAnchorsId)
|
2000-09-06 03:21:22 +04:00
|
|
|
{
|
|
|
|
// Change wording of menuitems depending on selection
|
|
|
|
var stylesItem = document.getElementById(removeStylesId);
|
|
|
|
var linkItem = document.getElementById(removeLinksId);
|
2001-03-22 03:59:29 +03:00
|
|
|
|
2002-07-10 00:24:37 +04:00
|
|
|
var isCollapsed = gEditor.selection.isCollapsed;
|
2000-09-06 03:21:22 +04:00
|
|
|
if (stylesItem)
|
|
|
|
{
|
2001-03-22 03:59:29 +03:00
|
|
|
stylesItem.setAttribute("label", isCollapsed ? GetString("StopTextStyles") : GetString("RemoveTextStyles"));
|
2000-09-06 03:21:22 +04:00
|
|
|
stylesItem.setAttribute("accesskey", GetString("RemoveTextStylesAccesskey"));
|
|
|
|
}
|
|
|
|
if (linkItem)
|
|
|
|
{
|
2001-03-22 03:59:29 +03:00
|
|
|
linkItem.setAttribute("label", isCollapsed ? GetString("StopLinks") : GetString("RemoveLinks"));
|
2000-09-06 03:21:22 +04:00
|
|
|
linkItem.setAttribute("accesskey", GetString("RemoveLinksAccesskey"));
|
|
|
|
// Note: disabling text style is a pain since there are so many - forget it!
|
|
|
|
|
2001-03-22 03:59:29 +03:00
|
|
|
// Disable if not in a link, but always allow "Remove"
|
|
|
|
// if selection isn't collapsed since we only look at anchor node
|
2002-07-13 02:28:30 +04:00
|
|
|
try {
|
|
|
|
SetElementEnabled(linkItem, !isCollapsed ||
|
|
|
|
gEditor.getElementOrParentByTagName("href", null));
|
|
|
|
} catch(e) {}
|
2002-04-11 17:33:30 +04:00
|
|
|
}
|
2002-05-18 01:50:04 +04:00
|
|
|
// Disable if selection is collapsed
|
|
|
|
SetElementEnabledById(removeNamedAnchorsId, !isCollapsed);
|
2000-05-25 07:35:33 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
function goUpdateTableMenuItems(commandset)
|
|
|
|
{
|
2001-03-22 03:59:29 +03:00
|
|
|
var enabled = false;
|
2000-05-25 07:35:33 +04:00
|
|
|
var enabledIfTable = false;
|
2001-05-18 10:42:37 +04:00
|
|
|
|
2002-07-10 00:24:37 +04:00
|
|
|
if (!gEditor)
|
|
|
|
{
|
|
|
|
dump("goUpdateTableMenuItems: too early, not initialized\n");
|
|
|
|
return;
|
|
|
|
}
|
2002-07-13 02:28:30 +04:00
|
|
|
|
2002-07-10 00:24:37 +04:00
|
|
|
var flags = gEditor.flags;
|
2002-07-13 02:28:30 +04:00
|
|
|
if (!(flags & nsIPlaintextEditor.eEditorReadonlyMask) &&
|
2002-07-10 00:24:37 +04:00
|
|
|
IsEditingRenderedHTML())
|
2000-05-25 07:35:33 +04:00
|
|
|
{
|
|
|
|
var tagNameObj = new Object();
|
2002-07-13 02:28:30 +04:00
|
|
|
var element = new Object();
|
|
|
|
try {
|
|
|
|
gEditor.getSelectedOrParentTableElement(element, tagNameObj);
|
|
|
|
}
|
|
|
|
catch(e) {}
|
|
|
|
|
|
|
|
if (element && element.value)
|
2000-05-25 07:35:33 +04:00
|
|
|
{
|
|
|
|
// Value when we need to have a selected table or inside a table
|
2001-03-22 03:59:29 +03:00
|
|
|
enabledIfTable = true;
|
2000-05-25 07:35:33 +04:00
|
|
|
|
|
|
|
// All others require being inside a cell or selected cell
|
|
|
|
enabled = (tagNameObj.value == "td");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Loop through command nodes
|
|
|
|
for (var i = 0; i < commandset.childNodes.length; i++)
|
|
|
|
{
|
|
|
|
var commandID = commandset.childNodes[i].getAttribute("id");
|
|
|
|
if (commandID)
|
|
|
|
{
|
|
|
|
if (commandID == "cmd_InsertTable" ||
|
2000-08-10 07:43:09 +04:00
|
|
|
commandID == "cmd_JoinTableCells" ||
|
2001-05-09 09:23:37 +04:00
|
|
|
commandID == "cmd_SplitTableCell" ||
|
|
|
|
commandID == "cmd_ConvertToTable")
|
2000-05-25 07:35:33 +04:00
|
|
|
{
|
|
|
|
// Call the update method in the command class
|
|
|
|
goUpdateCommand(commandID);
|
2001-03-22 03:59:29 +03:00
|
|
|
}
|
2000-05-25 07:35:33 +04:00
|
|
|
// Directly set with the values calculated here
|
|
|
|
else if (commandID == "cmd_DeleteTable" ||
|
2000-08-10 07:43:09 +04:00
|
|
|
commandID == "cmd_NormalizeTable" ||
|
2001-02-16 06:32:49 +03:00
|
|
|
commandID == "cmd_editTable" ||
|
2001-03-29 01:16:44 +04:00
|
|
|
commandID == "cmd_TableOrCellColor" ||
|
|
|
|
commandID == "cmd_SelectTable")
|
2000-05-25 07:35:33 +04:00
|
|
|
{
|
|
|
|
goSetCommandEnabled(commandID, enabledIfTable);
|
|
|
|
} else {
|
|
|
|
goSetCommandEnabled(commandID, enabled);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------------
|
|
|
|
// Helpers for inserting and editing tables:
|
|
|
|
|
|
|
|
function IsInTable()
|
|
|
|
{
|
2002-07-10 00:24:37 +04:00
|
|
|
if (!gEditor) return false;
|
2002-07-13 02:28:30 +04:00
|
|
|
var flags = gEditor.flags;
|
|
|
|
return (gIsHTMLEditor &&
|
2002-07-10 00:24:37 +04:00
|
|
|
!(flags & nsIPlaintextEditor.eEditorReadonlyMask) &&
|
|
|
|
IsEditingRenderedHTML() &&
|
2002-07-13 02:28:30 +04:00
|
|
|
null != gEditor.getElementOrParentByTagName("table", null));
|
2000-05-25 07:35:33 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
function IsInTableCell()
|
|
|
|
{
|
2002-07-13 02:28:30 +04:00
|
|
|
if (!gEditor) return false;
|
2002-07-10 00:24:37 +04:00
|
|
|
var flags = gEditor.flags;
|
2002-07-13 02:28:30 +04:00
|
|
|
return (gIsHTMLEditor &&
|
2002-07-10 00:24:37 +04:00
|
|
|
!(flags & nsIPlaintextEditor.eEditorReadonlyMask) &&
|
|
|
|
IsEditingRenderedHTML() &&
|
2002-07-13 02:28:30 +04:00
|
|
|
null != gEditor.getElementOrParentByTagName("td", null));
|
2000-05-25 07:35:33 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
function IsSelectionInOneCell()
|
|
|
|
{
|
2002-07-13 02:28:30 +04:00
|
|
|
if (!gEditor || !gIsHTMLEditor) return false;
|
|
|
|
|
2002-07-10 00:24:37 +04:00
|
|
|
var selection = gEditor.selection;
|
2000-05-25 07:35:33 +04:00
|
|
|
|
|
|
|
if (selection && selection.rangeCount == 1)
|
|
|
|
{
|
|
|
|
// We have a "normal" single-range selection
|
|
|
|
if (!selection.isCollapsed &&
|
|
|
|
selection.anchorNode != selection.focusNode)
|
|
|
|
{
|
|
|
|
// Check if both nodes are within the same cell
|
2002-07-13 02:28:30 +04:00
|
|
|
var anchorCell = gEditor.getElementOrParentByTagName("td", selection.anchorNode);
|
|
|
|
var focusCell = gEditor.getElementOrParentByTagName("td", selection.focusNode);
|
2000-05-25 07:35:33 +04:00
|
|
|
return (focusCell != null && anchorCell != null && (focusCell == anchorCell));
|
|
|
|
}
|
|
|
|
// Collapsed selection or anchor == focus (thus must be in 1 cell)
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Call this with insertAllowed = true to allow inserting if not in existing table,
|
|
|
|
// else use false to do nothing if not in a table
|
|
|
|
function EditorInsertOrEditTable(insertAllowed)
|
|
|
|
{
|
|
|
|
if (IsInTable()) {
|
2001-02-27 01:02:07 +03:00
|
|
|
// Edit properties of existing table
|
2001-02-16 06:32:49 +03:00
|
|
|
window.openDialog("chrome://editor/content/EdTableProps.xul", "_blank", "chrome,close,titlebar,modal", "","TablePanel");
|
2001-05-09 09:23:37 +04:00
|
|
|
gContentWindow.focus();
|
2000-05-25 07:35:33 +04:00
|
|
|
} else if(insertAllowed) {
|
2002-07-10 00:24:37 +04:00
|
|
|
if (gEditor.selection.isCollapsed)
|
2001-05-09 09:23:37 +04:00
|
|
|
// If we have a caret, insert a blank table...
|
|
|
|
EditorInsertTable();
|
|
|
|
else
|
|
|
|
// else convert the selection into a table
|
|
|
|
goDoCommand("cmd_ConvertToTable");
|
2000-05-25 07:35:33 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function EditorInsertTable()
|
|
|
|
{
|
|
|
|
// Insert a new table
|
|
|
|
window.openDialog("chrome://editor/content/EdInsertTable.xul", "_blank", "chrome,close,titlebar,modal", "");
|
2001-05-09 09:23:37 +04:00
|
|
|
gContentWindow.focus();
|
2000-05-25 07:35:33 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
function EditorTableCellProperties()
|
|
|
|
{
|
2002-07-13 02:28:30 +04:00
|
|
|
if (!gIsHTMLEditor) return;
|
|
|
|
|
|
|
|
var cell = gEditor.getElementOrParentByTagName("td", null);
|
2000-05-25 07:35:33 +04:00
|
|
|
if (cell) {
|
|
|
|
// Start Table Properties dialog on the "Cell" panel
|
|
|
|
window.openDialog("chrome://editor/content/EdTableProps.xul", "_blank", "chrome,close,titlebar,modal", "", "CellPanel");
|
2001-05-09 09:23:37 +04:00
|
|
|
gContentWindow.focus();
|
2000-05-25 07:35:33 +04:00
|
|
|
}
|
|
|
|
}
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
|
2001-05-17 03:44:56 +04:00
|
|
|
function GetNumberOfContiguousSelectedRows()
|
|
|
|
{
|
2002-07-13 02:28:30 +04:00
|
|
|
if (!gIsHTMLEditor) return 0;
|
2001-05-17 03:44:56 +04:00
|
|
|
|
2002-07-18 01:32:20 +04:00
|
|
|
var cellObj = new Object();
|
|
|
|
var rowObj = new Object();
|
|
|
|
var colObj = new Object();
|
|
|
|
gEditor.getFirstSelectedCellInTable(cellObj, rowObj, colObj);
|
|
|
|
var cell = cellObj.value;
|
2001-05-17 03:44:56 +04:00
|
|
|
if (!cell)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
var rows = 1;
|
2002-07-18 01:32:20 +04:00
|
|
|
var lastIndex = rowObj.value;
|
2001-05-17 03:44:56 +04:00
|
|
|
|
|
|
|
do {
|
2002-07-13 02:28:30 +04:00
|
|
|
cell = gEditor.getNextSelectedCell();
|
2001-05-17 03:44:56 +04:00
|
|
|
if (cell)
|
|
|
|
{
|
2002-07-18 01:32:20 +04:00
|
|
|
gEditor.getCellIndexes(cell, rowObj, colObj);
|
|
|
|
var index = rowObj.value;
|
2001-05-17 03:44:56 +04:00
|
|
|
if (index == lastIndex + 1)
|
|
|
|
{
|
|
|
|
lastIndex = index;
|
|
|
|
rows++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
while (cell);
|
|
|
|
|
|
|
|
return rows;
|
|
|
|
}
|
|
|
|
|
|
|
|
function GetNumberOfContiguousSelectedColumns()
|
|
|
|
{
|
2002-07-13 02:28:30 +04:00
|
|
|
if (!gIsHTMLEditor) return 0;
|
2001-05-17 03:44:56 +04:00
|
|
|
|
2002-07-18 01:32:20 +04:00
|
|
|
var cellObj = new Object();
|
|
|
|
var colObj = new Object();
|
|
|
|
var rowObj = new Object();
|
|
|
|
gEditor.getFirstSelectedCellInTable(cellObj, rowObj, colObj);
|
|
|
|
var cell = cellObj.value;
|
2001-05-17 03:44:56 +04:00
|
|
|
if (!cell)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
var columns = 1;
|
2002-07-18 01:32:20 +04:00
|
|
|
var lastIndex = colObj.value;
|
2001-05-17 03:44:56 +04:00
|
|
|
|
|
|
|
do {
|
2002-07-13 02:28:30 +04:00
|
|
|
cell = gEditor.getNextSelectedCell();
|
2001-05-17 03:44:56 +04:00
|
|
|
if (cell)
|
|
|
|
{
|
2002-07-18 01:32:20 +04:00
|
|
|
gEditor.getCellIndexes(cell, rowObj, colObj);
|
|
|
|
var index = colObj.value;
|
2001-05-17 03:44:56 +04:00
|
|
|
if (index == lastIndex +1)
|
|
|
|
{
|
|
|
|
lastIndex = index;
|
|
|
|
columns++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
while (cell);
|
|
|
|
|
|
|
|
return columns;
|
|
|
|
}
|
|
|
|
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
function EditorOnFocus()
|
|
|
|
{
|
2001-01-18 03:59:18 +03:00
|
|
|
// Current window already has the InsertCharWindow
|
|
|
|
if ("InsertCharWindow" in window && window.InsertCharWindow) return;
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
|
|
|
|
// Find window with an InsertCharsWindow and switch association to this one
|
|
|
|
var windowWithDialog = FindEditorWithInsertCharDialog();
|
|
|
|
if (windowWithDialog)
|
|
|
|
{
|
|
|
|
// Switch the dialog to current window
|
|
|
|
// this sets focus to dialog, so bring focus back to editor window
|
|
|
|
if (SwitchInsertCharToThisWindow(windowWithDialog))
|
|
|
|
window.focus();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function SwitchInsertCharToThisWindow(windowWithDialog)
|
|
|
|
{
|
2001-03-22 03:59:29 +03:00
|
|
|
if (windowWithDialog && "InsertCharWindow" in windowWithDialog &&
|
2001-01-18 03:59:18 +03:00
|
|
|
windowWithDialog.InsertCharWindow)
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
{
|
2001-03-22 03:59:29 +03:00
|
|
|
// Move dialog association to the current window
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
window.InsertCharWindow = windowWithDialog.InsertCharWindow;
|
|
|
|
windowWithDialog.InsertCharWindow = null;
|
|
|
|
|
|
|
|
// Switch the dialog's editorShell and opener to current window's
|
|
|
|
window.InsertCharWindow.editorShell = window.editorShell;
|
|
|
|
window.InsertCharWindow.opener = window;
|
|
|
|
|
|
|
|
// Bring dialog to the forground
|
|
|
|
window.InsertCharWindow.focus();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
function FindEditorWithInsertCharDialog()
|
|
|
|
{
|
2002-07-13 02:28:30 +04:00
|
|
|
try {
|
|
|
|
// Find window with an InsertCharsWindow and switch association to this one
|
|
|
|
var windowManager = Components.classes['@mozilla.org/appshell/window-mediator;1'].getService();
|
|
|
|
var windowManagerInterface = windowManager.QueryInterface( Components.interfaces.nsIWindowMediator);
|
|
|
|
var enumerator = windowManagerInterface.getEnumerator( null );
|
2001-01-18 03:59:18 +03:00
|
|
|
|
2002-07-13 02:28:30 +04:00
|
|
|
while ( enumerator.hasMoreElements() )
|
2001-03-22 03:59:29 +03:00
|
|
|
{
|
2002-07-13 02:28:30 +04:00
|
|
|
var tempWindow = enumerator.getNext();
|
|
|
|
|
|
|
|
if (tempWindow != window && "InsertCharWindow" in tempWindow &&
|
|
|
|
tempWindow.InsertCharWindow)
|
|
|
|
{
|
|
|
|
return tempWindow;
|
|
|
|
}
|
2001-03-22 03:59:29 +03:00
|
|
|
}
|
|
|
|
}
|
2002-07-13 02:28:30 +04:00
|
|
|
catch(e) {}
|
2000-09-06 03:21:22 +04:00
|
|
|
return null;
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
function EditorFindOrCreateInsertCharWindow()
|
|
|
|
{
|
2001-01-18 03:59:18 +03:00
|
|
|
if ("InsertCharWindow" in window && window.InsertCharWindow)
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
window.InsertCharWindow.focus();
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Since we switch the dialog during EditorOnFocus(),
|
|
|
|
// this should really never be found, but it's good to be sure
|
|
|
|
var windowWithDialog = FindEditorWithInsertCharDialog();
|
|
|
|
if (windowWithDialog)
|
|
|
|
{
|
|
|
|
SwitchInsertCharToThisWindow(windowWithDialog);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// The dialog will set window.InsertCharWindow to itself
|
|
|
|
window.openDialog("chrome://editor/content/EdInsertChars.xul", "_blank", "chrome,close,titlebar", "");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Find another HTML editor window to associate with the InsertChar dialog
|
|
|
|
// or close it if none found (May be a mail composer)
|
|
|
|
function SwitchInsertCharToAnotherEditorOrClose()
|
|
|
|
{
|
2001-03-22 03:59:29 +03:00
|
|
|
if ("InsertCharWindow" in window && window.InsertCharWindow)
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
{
|
2002-04-30 05:36:59 +04:00
|
|
|
var windowManager = Components.classes['@mozilla.org/appshell/window-mediator;1'].getService();
|
2002-07-13 02:28:30 +04:00
|
|
|
var enumerator;
|
|
|
|
try {
|
|
|
|
var windowManagerInterface = windowManager.QueryInterface( Components.interfaces.nsIWindowMediator);
|
|
|
|
enumerator = windowManagerInterface.getEnumerator( null );
|
|
|
|
}
|
|
|
|
catch(e) {}
|
|
|
|
if (!enumerator) return;
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
|
|
|
|
// TODO: Fix this to search for command controllers and look for "cmd_InsertChars"
|
|
|
|
// For now, detect just Web Composer and HTML Mail Composer
|
2001-03-22 03:59:29 +03:00
|
|
|
while ( enumerator.hasMoreElements() )
|
|
|
|
{
|
|
|
|
var tempWindow = enumerator.getNext();
|
2001-10-03 02:00:47 +04:00
|
|
|
if (tempWindow != window && tempWindow != window.InsertCharWindow &&
|
|
|
|
("editorShell" in tempWindow) && tempWindow.editorShell)
|
2001-03-22 03:59:29 +03:00
|
|
|
{
|
2002-07-13 02:28:30 +04:00
|
|
|
if (gEditor)
|
2002-07-10 00:24:37 +04:00
|
|
|
{
|
2001-03-29 01:16:44 +04:00
|
|
|
tempWindow.InsertCharWindow = window.InsertCharWindow;
|
|
|
|
window.InsertCharWindow = null;
|
|
|
|
|
|
|
|
tempWindow.InsertCharWindow.editorShell = tempWindow.editorShell;
|
|
|
|
tempWindow.InsertCharWindow.opener = tempWindow;
|
|
|
|
return;
|
2002-07-10 00:24:37 +04:00
|
|
|
}
|
2001-03-22 03:59:29 +03:00
|
|
|
}
|
|
|
|
}
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
// Didn't find another editor - close the dialog
|
|
|
|
window.InsertCharWindow.close();
|
|
|
|
}
|
|
|
|
}
|