1999-07-01 22:56:04 +00:00
|
|
|
/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
1999-11-06 03:43:54 +00: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/
|
1999-07-01 22:56:04 +00:00
|
|
|
*
|
1999-11-06 03:43:54 +00: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.
|
1999-07-01 22:56:04 +00:00
|
|
|
*
|
1999-11-06 03:43:54 +00:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Netscape
|
1999-07-01 22:56:04 +00:00
|
|
|
* Communications Corporation. Portions created by Netscape are
|
1999-11-06 03:43:54 +00:00
|
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
|
|
* Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
2006-09-14 05:54:39 +00:00
|
|
|
* Blake Ross <blakeross@telocity.com>
|
2006-09-14 05:52:22 +00:00
|
|
|
* Peter Annema <disttsc@bart.nl>
|
1999-07-01 22:56:04 +00:00
|
|
|
*/
|
|
|
|
|
2006-09-14 05:55:03 +00:00
|
|
|
const nsIWebNavigation = Components.interfaces.nsIWebNavigation;
|
|
|
|
|
1999-11-16 04:50:32 +00:00
|
|
|
var pref = null;
|
2006-09-14 05:53:12 +00:00
|
|
|
var gURLBar = null;
|
2006-09-14 05:44:11 +00:00
|
|
|
var bundle = srGetStrBundle("chrome://navigator/locale/navigator.properties");
|
2006-09-14 05:52:58 +00:00
|
|
|
var brandBundle = srGetStrBundle("chrome://global/locale/brand.properties");
|
1999-11-16 04:50:32 +00:00
|
|
|
|
2006-09-14 05:55:03 +00:00
|
|
|
try {
|
|
|
|
pref = Components.classes["@mozilla.org/preferences;1"]
|
|
|
|
.getService(Components.interfaces.nsIPref);
|
|
|
|
} catch (ex) {
|
|
|
|
debug("failed to get prefs service!\n");
|
1999-11-16 04:50:32 +00:00
|
|
|
}
|
|
|
|
|
2006-09-14 05:44:15 +00:00
|
|
|
var appCore = null;
|
2006-09-14 05:48:04 +00:00
|
|
|
|
|
|
|
// Stored Status, Link and Loading values
|
2006-09-14 05:47:52 +00:00
|
|
|
var defaultStatus = bundle.GetStringFromName( "defaultStatus" );
|
|
|
|
var jsStatus = null;
|
|
|
|
var jsDefaultStatus = null;
|
|
|
|
var overLink = null;
|
2006-09-14 05:52:06 +00:00
|
|
|
var startTime = (new Date()).getTime();
|
1999-07-01 22:56:04 +00:00
|
|
|
|
2006-09-14 05:48:04 +00:00
|
|
|
//cached elements/ fields
|
|
|
|
var statusTextFld = null;
|
2006-09-14 05:49:09 +00:00
|
|
|
var statusMeter = null;
|
2006-09-14 05:48:04 +00:00
|
|
|
var throbberElement = null;
|
|
|
|
var stopButton = null;
|
|
|
|
var stopMenu = null;
|
2006-09-14 05:52:42 +00:00
|
|
|
var stopContext = null;
|
1999-11-13 23:28:51 +00:00
|
|
|
|
2006-09-14 05:51:03 +00:00
|
|
|
var useRealProgressFlag = false;
|
|
|
|
var totalRequests = 0;
|
|
|
|
var finishedRequests = 0;
|
2006-09-14 05:50:25 +00:00
|
|
|
///////////////////////////// DOCUMENT SAVE ///////////////////////////////////
|
|
|
|
|
|
|
|
// focused frame URL
|
|
|
|
var gFocusedURL = null;
|
|
|
|
|
2006-09-14 05:55:06 +00:00
|
|
|
/**
|
2006-09-14 05:54:30 +00:00
|
|
|
* We can avoid adding multiple load event listeners and save some time by adding
|
2006-09-14 05:55:06 +00:00
|
|
|
* one listener that calls all real handlers.
|
|
|
|
*/
|
|
|
|
|
2006-09-14 05:55:03 +00:00
|
|
|
function loadEventHandlers(event)
|
|
|
|
{
|
|
|
|
// Filter out events that are not about the document load we are interested in
|
|
|
|
if (event.target == _content.document) {
|
|
|
|
UpdateBookmarksLastVisitedDate(event);
|
|
|
|
UpdateInternetSearchResults(event);
|
|
|
|
checkForDirectoryListing();
|
|
|
|
getContentAreaFrameCount();
|
|
|
|
postURLToNativeWidget();
|
|
|
|
}
|
|
|
|
}
|
2006-09-14 05:54:30 +00:00
|
|
|
|
2006-09-14 05:50:25 +00:00
|
|
|
/**
|
|
|
|
* Determine whether or not the content area is displaying a page with frames,
|
|
|
|
* and if so, toggle the display of the 'save frame as' menu item.
|
|
|
|
**/
|
|
|
|
function getContentAreaFrameCount()
|
|
|
|
{
|
|
|
|
var saveFrameItem = document.getElementById("savepage");
|
2006-09-14 05:51:08 +00:00
|
|
|
if (!window._content.frames.length ||
|
2006-09-14 05:50:25 +00:00
|
|
|
!isDocumentFrame(document.commandDispatcher.focusedWindow))
|
|
|
|
saveFrameItem.setAttribute("hidden", "true");
|
|
|
|
else
|
|
|
|
saveFrameItem.removeAttribute("hidden");
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* When a content area frame is focused, update the focused frame URL
|
|
|
|
**/
|
|
|
|
function contentAreaFrameFocus()
|
|
|
|
{
|
|
|
|
var saveFrameItem = document.getElementById("savepage");
|
|
|
|
var focusedWindow = document.commandDispatcher.focusedWindow;
|
|
|
|
if (isDocumentFrame(focusedWindow)) {
|
|
|
|
gFocusedURL = focusedWindow.location.href;
|
|
|
|
saveFrameItem.removeAttribute("hidden");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Determine whether or not a given focused DOMWindow is in the content
|
|
|
|
* area.
|
|
|
|
**/
|
|
|
|
function isDocumentFrame(aFocusedWindow)
|
|
|
|
{
|
2006-09-14 05:51:08 +00:00
|
|
|
var contentFrames = window._content.frames;
|
2006-09-14 05:50:25 +00:00
|
|
|
if (contentFrames.length) {
|
|
|
|
for (var i = 0; i < contentFrames.length; i++ ) {
|
|
|
|
if (aFocusedWindow == contentFrames[i])
|
|
|
|
return true;
|
2006-09-14 05:44:15 +00:00
|
|
|
}
|
2006-09-14 05:50:25 +00:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
1999-11-22 19:55:47 +00:00
|
|
|
|
2006-09-14 05:50:25 +00:00
|
|
|
//////////////////////////////// BOOKMARKS ////////////////////////////////////
|
1999-11-22 19:55:47 +00:00
|
|
|
|
1999-09-07 08:52:22 +00:00
|
|
|
function UpdateBookmarksLastVisitedDate(event)
|
1999-08-06 20:49:16 +00:00
|
|
|
{
|
2006-09-14 05:51:08 +00:00
|
|
|
if ((window._content.location.href) && (window._content.location.href != ""))
|
1999-09-07 08:52:22 +00:00
|
|
|
{
|
1999-09-15 11:36:34 +00:00
|
|
|
try
|
|
|
|
{
|
2006-09-14 05:44:15 +00:00
|
|
|
// if the URL is bookmarked, update its "Last Visited" date
|
2006-09-14 05:53:17 +00:00
|
|
|
var bmks = Components.classes["@mozilla.org/browser/bookmarks-service;1"].getService();
|
2006-09-14 05:44:15 +00:00
|
|
|
if (bmks) bmks = bmks.QueryInterface(Components.interfaces.nsIBookmarksService);
|
2006-09-14 05:53:05 +00:00
|
|
|
if (bmks) bmks.UpdateBookmarkLastVisitedDate(window._content.location.href, window._content.document.characterSet);
|
1999-09-15 11:36:34 +00:00
|
|
|
}
|
|
|
|
catch(ex)
|
|
|
|
{
|
2006-09-14 05:55:03 +00:00
|
|
|
debug("failed to update bookmark last visited date.\n");
|
1999-09-15 11:36:34 +00:00
|
|
|
}
|
1999-09-07 08:52:22 +00:00
|
|
|
}
|
1999-08-06 20:49:16 +00:00
|
|
|
}
|
|
|
|
|
1999-12-19 06:53:18 +00:00
|
|
|
function UpdateInternetSearchResults(event)
|
|
|
|
{
|
2006-09-14 05:51:08 +00:00
|
|
|
if ((window._content.location.href) && (window._content.location.href != ""))
|
1999-12-19 06:53:18 +00:00
|
|
|
{
|
2006-09-14 05:40:43 +00:00
|
|
|
var searchInProgressFlag = false;
|
2006-09-14 05:54:05 +00:00
|
|
|
var autoOpenSearchPanel = false;
|
2006-09-14 05:44:15 +00:00
|
|
|
|
1999-12-19 06:53:18 +00:00
|
|
|
try
|
|
|
|
{
|
2006-09-14 05:53:17 +00:00
|
|
|
var search = Components.classes["@mozilla.org/rdf/datasource;1?name=internetsearch"].getService();
|
2006-09-14 05:44:15 +00:00
|
|
|
if (search) search = search.QueryInterface(Components.interfaces.nsIInternetSearchService);
|
2006-09-14 05:51:08 +00:00
|
|
|
if (search) searchInProgressFlag = search.FindInternetSearchResults(window._content.location.href);
|
2006-09-14 05:54:05 +00:00
|
|
|
autoOpenSearchPanel = pref.GetBoolPref("browser.search.opensidebarsearchpanel");
|
1999-12-19 06:53:18 +00:00
|
|
|
}
|
|
|
|
catch(ex)
|
|
|
|
{
|
|
|
|
}
|
2006-09-14 05:40:43 +00:00
|
|
|
|
2006-09-14 05:54:05 +00:00
|
|
|
if (searchInProgressFlag == true && autoOpenSearchPanel == true)
|
2006-09-14 05:44:15 +00:00
|
|
|
{
|
2006-09-14 05:40:43 +00:00
|
|
|
RevealSearchPanel();
|
2006-09-14 05:44:15 +00:00
|
|
|
}
|
1999-12-19 06:53:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-09-14 05:47:52 +00:00
|
|
|
function UpdateStatusField()
|
|
|
|
{
|
|
|
|
var text = defaultStatus;
|
|
|
|
|
|
|
|
if(jsStatus)
|
|
|
|
text = jsStatus;
|
|
|
|
else if(overLink)
|
|
|
|
text = overLink;
|
|
|
|
else if(jsDefaultStatus)
|
|
|
|
text = jsDefaultStatus;
|
|
|
|
|
|
|
|
if(!statusTextFld)
|
2006-09-14 05:50:25 +00:00
|
|
|
statusTextFld = document.getElementById("statusbar-display");
|
2006-09-14 05:47:52 +00:00
|
|
|
|
|
|
|
statusTextFld.setAttribute("value", text);
|
|
|
|
}
|
|
|
|
|
2006-09-14 05:47:51 +00:00
|
|
|
function nsXULBrowserWindow()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
nsXULBrowserWindow.prototype =
|
|
|
|
{
|
2006-09-14 05:54:59 +00:00
|
|
|
hideAboutBlank : true,
|
|
|
|
|
2006-09-14 05:51:35 +00:00
|
|
|
QueryInterface : function(iid)
|
|
|
|
{
|
|
|
|
if(iid.equals(Components.interfaces.nsIXULBrowserWindow))
|
|
|
|
return this;
|
|
|
|
throw Components.results.NS_NOINTERFACE;
|
2006-09-14 05:53:12 +00:00
|
|
|
return null; // quiet warnings
|
2006-09-14 05:51:35 +00:00
|
|
|
},
|
|
|
|
setJSStatus : function(status)
|
|
|
|
{
|
|
|
|
if(status == "")
|
|
|
|
jsStatus = null;
|
|
|
|
else
|
|
|
|
jsStatus = status;
|
|
|
|
UpdateStatusField();
|
2006-09-14 05:54:06 +00:00
|
|
|
// Status is now on status bar; don't use it next time.
|
|
|
|
// This will cause us to revert to defaultStatus/jsDefaultStatus when the
|
|
|
|
// user leaves the link (e.g., if the script set window.status in onmouseover).
|
|
|
|
jsStatus = null;
|
2006-09-14 05:51:35 +00:00
|
|
|
},
|
|
|
|
setJSDefaultStatus : function(status)
|
|
|
|
{
|
|
|
|
if(status == "")
|
|
|
|
jsDefaultStatus = null;
|
|
|
|
else
|
|
|
|
jsDefaultStatus = status;
|
|
|
|
UpdateStatusField();
|
|
|
|
},
|
|
|
|
setDefaultStatus : function(status)
|
|
|
|
{
|
|
|
|
if(status == "")
|
|
|
|
defaultStatus = null;
|
|
|
|
else
|
|
|
|
defaultStatus = status;
|
|
|
|
UpdateStatusField();
|
|
|
|
},
|
|
|
|
setOverLink : function(link)
|
|
|
|
{
|
|
|
|
if(link == "")
|
|
|
|
overLink = null;
|
|
|
|
else
|
|
|
|
overLink = link;
|
|
|
|
UpdateStatusField();
|
|
|
|
},
|
2006-09-14 05:49:30 +00:00
|
|
|
onProgress : function (channel, current, max)
|
|
|
|
{
|
2006-09-14 05:51:35 +00:00
|
|
|
if(!statusMeter)
|
|
|
|
statusMeter = document.getElementById("statusbar-icon");
|
2006-09-14 05:49:30 +00:00
|
|
|
var percentage = 0;
|
2006-09-14 05:51:03 +00:00
|
|
|
|
|
|
|
if (!useRealProgressFlag && (channel != null)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (max > 0) {
|
2006-09-14 05:49:30 +00:00
|
|
|
percentage = (current * 100) / max ;
|
2006-09-14 05:50:51 +00:00
|
|
|
if (statusMeter.getAttribute("mode") != "normal")
|
|
|
|
statusMeter.setAttribute("mode", "normal");
|
2006-09-14 05:49:30 +00:00
|
|
|
statusMeter.value = percentage;
|
|
|
|
statusMeter.progresstext = Math.round(percentage) + "%";
|
|
|
|
}
|
2006-09-14 05:50:51 +00:00
|
|
|
else {
|
|
|
|
if (statusMeter.getAttribute("mode") != "undetermined")
|
|
|
|
statusMeter.setAttribute("mode","undetermined");
|
|
|
|
}
|
2006-09-14 05:49:30 +00:00
|
|
|
},
|
2006-09-14 05:51:35 +00:00
|
|
|
onStateChange : function(channel, state)
|
|
|
|
{
|
|
|
|
if(!throbberElement)
|
|
|
|
throbberElement = document.getElementById("navigator-throbber");
|
|
|
|
if(!statusMeter)
|
|
|
|
statusMeter = document.getElementById("statusbar-icon");
|
|
|
|
if(!stopButton)
|
|
|
|
stopButton = document.getElementById("stop-button");
|
|
|
|
if(!stopMenu)
|
|
|
|
stopMenu = document.getElementById("menuitem-stop");
|
2006-09-14 05:52:42 +00:00
|
|
|
if(!stopContext)
|
|
|
|
stopContext = document.getElementById("context-stop");
|
2006-09-14 05:51:35 +00:00
|
|
|
|
2006-09-14 05:52:59 +00:00
|
|
|
if (state & Components.interfaces.nsIWebProgressListener.STATE_START) {
|
|
|
|
if(state & Components.interfaces.nsIWebProgressListener.STATE_IS_NETWORK) {
|
2006-09-14 05:51:03 +00:00
|
|
|
// Remember when loading commenced.
|
|
|
|
startTime = (new Date()).getTime();
|
|
|
|
// Turn progress meter on.
|
|
|
|
statusMeter.setAttribute("mode","undetermined");
|
|
|
|
throbberElement.setAttribute("busy", true);
|
|
|
|
|
|
|
|
// XXX: These need to be based on window activity...
|
|
|
|
stopButton.setAttribute("disabled", false);
|
|
|
|
stopMenu.setAttribute("disabled", false);
|
2006-09-14 05:52:42 +00:00
|
|
|
stopContext.setAttribute("disabled", false);
|
2006-09-14 05:51:03 +00:00
|
|
|
|
|
|
|
// Initialize the progress stuff...
|
|
|
|
statusMeter.setAttribute("mode","undetermined");
|
|
|
|
useRealProgressFlag = false;
|
|
|
|
totalRequests = 0;
|
|
|
|
finishedRequests = 0;
|
|
|
|
}
|
2006-09-14 05:52:59 +00:00
|
|
|
if (state & Components.interfaces.nsIWebProgressListener.STATE_IS_REQUEST) {
|
2006-09-14 05:51:03 +00:00
|
|
|
totalRequests += 1;
|
|
|
|
}
|
2006-09-14 05:52:32 +00:00
|
|
|
EnableBusyCursor(throbberElement.getAttribute("busy") == "true");
|
2006-09-14 05:51:03 +00:00
|
|
|
}
|
2006-09-14 05:52:59 +00:00
|
|
|
else if (state & Components.interfaces.nsIWebProgressListener.STATE_STOP) {
|
|
|
|
if (state & Components.interfaces.nsIWebProgressListener.STATE_IS_REQUEST) {
|
2006-09-14 05:51:03 +00:00
|
|
|
finishedRequests += 1;
|
|
|
|
if (!useRealProgressFlag) {
|
|
|
|
this.onProgress(null, finishedRequests, totalRequests);
|
|
|
|
}
|
|
|
|
}
|
2006-09-14 05:52:59 +00:00
|
|
|
if(state & Components.interfaces.nsIWebProgressListener.STATE_IS_NETWORK) {
|
2006-09-14 05:54:59 +00:00
|
|
|
var location = channel.URI.spec;
|
|
|
|
var msg = "";
|
|
|
|
if (location != "about:blank") {
|
|
|
|
// Record page loading time.
|
|
|
|
var elapsed = ( (new Date()).getTime() - startTime ) / 1000;
|
|
|
|
msg = bundle.GetStringFromName("nv_done");
|
|
|
|
msg = msg.replace(/%elapsed%/, elapsed);
|
|
|
|
}
|
2006-09-14 05:51:03 +00:00
|
|
|
defaultStatus = msg;
|
|
|
|
UpdateStatusField();
|
|
|
|
// Turn progress meter off.
|
|
|
|
statusMeter.setAttribute("mode","normal");
|
|
|
|
statusMeter.value = 0; // be sure to clear the progress bar
|
|
|
|
statusMeter.progresstext = "";
|
|
|
|
throbberElement.setAttribute("busy", false);
|
|
|
|
|
|
|
|
// XXX: These need to be based on window activity...
|
|
|
|
stopButton.setAttribute("disabled", true);
|
|
|
|
stopMenu.setAttribute("disabled", true);
|
2006-09-14 05:52:42 +00:00
|
|
|
stopContext.setAttribute("disabled", true);
|
2006-09-14 05:52:32 +00:00
|
|
|
|
|
|
|
EnableBusyCursor(false);
|
2006-09-14 05:51:03 +00:00
|
|
|
}
|
|
|
|
}
|
2006-09-14 05:52:59 +00:00
|
|
|
else if (state & Components.interfaces.nsIWebProgressListener.STATE_TRANSFERRING) {
|
|
|
|
if (state & Components.interfaces.nsIWebProgressListener.STATE_IS_DOCUMENT) {
|
2006-09-14 05:51:03 +00:00
|
|
|
var ctype=channel.contentType;
|
|
|
|
|
|
|
|
if (ctype != "text/html") {
|
|
|
|
useRealProgressFlag = true;
|
|
|
|
}
|
|
|
|
statusMeter.setAttribute("mode", "normal");
|
|
|
|
}
|
2006-09-14 05:52:59 +00:00
|
|
|
if (state & Components.interfaces.nsIWebProgressListener.STATE_IS_REQUEST) {
|
2006-09-14 05:51:03 +00:00
|
|
|
if (!useRealProgressFlag) {
|
|
|
|
this.onProgress(null, finishedRequests, totalRequests);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-09-14 05:51:35 +00:00
|
|
|
},
|
|
|
|
onLocationChange : function(location)
|
|
|
|
{
|
2006-09-14 05:54:59 +00:00
|
|
|
if (this.hideAboutBlank) {
|
|
|
|
this.hideAboutBlank = false;
|
|
|
|
if (location == "about:blank")
|
|
|
|
location = "";
|
|
|
|
}
|
2006-09-14 05:48:04 +00:00
|
|
|
|
2006-09-14 05:51:35 +00:00
|
|
|
// We should probably not do this if the value has changed since the user
|
|
|
|
// searched
|
2006-09-14 05:55:00 +00:00
|
|
|
document.getElementById("urlbar").value = location;
|
2006-09-14 05:48:04 +00:00
|
|
|
|
2006-09-14 05:51:35 +00:00
|
|
|
UpdateBackForwardButtons();
|
|
|
|
},
|
|
|
|
onStatus : function(channel, status, msg)
|
|
|
|
{
|
|
|
|
this.setOverLink(msg);
|
|
|
|
//this.setDefaultStatus(msg);
|
|
|
|
}
|
2006-09-14 05:47:51 +00:00
|
|
|
}
|
|
|
|
|
2006-09-14 05:55:02 +00:00
|
|
|
function getBrowser()
|
|
|
|
{
|
|
|
|
return document.getElementById("content");
|
|
|
|
}
|
|
|
|
|
|
|
|
function getWebNavigation()
|
|
|
|
{
|
|
|
|
try {
|
|
|
|
return getBrowser().webNavigation;
|
|
|
|
} catch (e) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-09-14 05:55:03 +00:00
|
|
|
function getHomePage()
|
|
|
|
{
|
|
|
|
var url;
|
|
|
|
try {
|
|
|
|
url = pref.getLocalizedUnicharPref("browser.startup.homepage");
|
|
|
|
} catch (e) {
|
|
|
|
}
|
|
|
|
|
|
|
|
// use this if we can't find the pref
|
|
|
|
if (!url)
|
|
|
|
url = bundle.GetStringFromName("homePageDefault");
|
|
|
|
|
|
|
|
return url;
|
|
|
|
}
|
|
|
|
|
2006-09-14 05:48:04 +00:00
|
|
|
function UpdateBackForwardButtons()
|
|
|
|
{
|
2006-09-14 05:55:03 +00:00
|
|
|
var backBroadcaster = document.getElementById("canGoBack");
|
|
|
|
var forwardBroadcaster = document.getElementById("canGoForward");
|
|
|
|
var webNavigation = getWebNavigation();
|
|
|
|
|
|
|
|
backBroadcaster.setAttribute("disabled", !webNavigation.canGoBack);
|
|
|
|
forwardBroadcaster.setAttribute("disabled", !webNavigation.canGoForward);
|
2006-09-14 05:48:04 +00:00
|
|
|
}
|
|
|
|
|
2006-09-14 05:47:51 +00:00
|
|
|
function Startup()
|
2006-09-14 05:55:03 +00:00
|
|
|
{
|
|
|
|
window.XULBrowserWindow = new nsXULBrowserWindow();
|
|
|
|
|
|
|
|
var webNavigation;
|
|
|
|
try {
|
2006-09-14 05:44:15 +00:00
|
|
|
// Create the browser instance component.
|
2006-09-14 05:55:03 +00:00
|
|
|
appCore = Components.classes["@mozilla.org/appshell/component/browser/instance;1"]
|
|
|
|
.createInstance(Components.interfaces.nsIBrowserInstance);
|
|
|
|
if (!appCore)
|
|
|
|
throw Components.results.NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
webNavigation = getWebNavigation();
|
|
|
|
if (!webNavigation)
|
|
|
|
throw Components.results.NS_ERROR_FAILURE;
|
|
|
|
} catch (e) {
|
|
|
|
alert("Error creating browser instance");
|
|
|
|
window.close(); // Give up.
|
|
|
|
}
|
2006-09-14 05:50:32 +00:00
|
|
|
|
2006-09-14 05:55:03 +00:00
|
|
|
_content.appCore= appCore;
|
1999-07-01 22:56:04 +00:00
|
|
|
|
2006-09-14 05:55:03 +00:00
|
|
|
// Initialize browser instance..
|
|
|
|
appCore.setWebShellWindow(window);
|
|
|
|
|
|
|
|
// give urlbar focus so it'll be an active editor and d&d will work properly
|
|
|
|
gURLBar = document.getElementById("urlbar");
|
|
|
|
gURLBar.focus();
|
2006-09-14 05:49:57 +00:00
|
|
|
|
2006-09-14 05:55:03 +00:00
|
|
|
// set the offline/online mode
|
|
|
|
setOfflineStatus();
|
|
|
|
|
|
|
|
debug("Setting content window\n");
|
|
|
|
appCore.setContentWindow(_content);
|
|
|
|
// Have browser app core load appropriate initial page.
|
2006-09-14 05:50:09 +00:00
|
|
|
|
2006-09-14 05:55:03 +00:00
|
|
|
/* START OF UNNECESSARY CODE */
|
|
|
|
/* sspitzer: I think this code is unnecessary, but I'll leave it until I prove it */
|
|
|
|
var startpage;
|
|
|
|
try {
|
|
|
|
var handler = Components.classes["@mozilla.org/commandlinehandler/general-startup;1?type=browser"]
|
|
|
|
.getService(Components.interfaces.nsICmdLineHandler);
|
|
|
|
startpage = handler.defaultArgs;
|
|
|
|
} catch (ex) {
|
|
|
|
debug("failed, reason: " + ex + "\n");
|
|
|
|
// we failed to get the start page, load this
|
|
|
|
startpage = "about:blank";
|
|
|
|
}
|
|
|
|
|
|
|
|
//debug("startpage = " + startpage + "\n");
|
|
|
|
document.getElementById("args").setAttribute("value", startpage);
|
|
|
|
/* END OF UNNECESSARY CODE */
|
|
|
|
|
|
|
|
appCore.loadInitialPage();
|
|
|
|
|
|
|
|
// Add a capturing event listener to the content area
|
|
|
|
// (rjc note: not the entire window, otherwise we'll get sidebar pane loads too!)
|
|
|
|
// so we'll be notified when onloads complete.
|
|
|
|
var contentArea = document.getElementById("appcontent");
|
|
|
|
contentArea.addEventListener("load", loadEventHandlers, true);
|
|
|
|
contentArea.addEventListener("focus", contentAreaFrameFocus, true);
|
|
|
|
|
|
|
|
// set default character set if provided
|
|
|
|
debug("*** Pulling out the charset\n");
|
|
|
|
if ("arguments" in window && window.arguments.length > 1) {
|
|
|
|
if (window.arguments[1].indexOf("charset=") != -1) {
|
|
|
|
var arrayArgComponents = window.arguments[1].split("=");
|
|
|
|
if (arrayArgComponents) {
|
|
|
|
//we should "inherit" the charset menu setting in a new window
|
|
|
|
appCore.SetDocumentCharset(arrayArgComponents[1]);
|
|
|
|
debug("*** SetDocumentCharset(" + arrayArgComponents[1] + ")\n");
|
|
|
|
}
|
2006-09-14 05:50:51 +00:00
|
|
|
}
|
2006-09-14 05:55:03 +00:00
|
|
|
}
|
2006-09-14 05:54:28 +00:00
|
|
|
|
2006-09-14 05:55:03 +00:00
|
|
|
try {
|
|
|
|
var searchMode = pref.GetIntPref("browser.search.mode");
|
|
|
|
setBrowserSearchMode(searchMode);
|
|
|
|
} catch (ex) {
|
1999-07-01 22:56:04 +00:00
|
|
|
}
|
|
|
|
|
2006-09-14 05:55:03 +00:00
|
|
|
// set home button tooltip text
|
2006-09-14 05:55:06 +00:00
|
|
|
var homePage = getHomePage();
|
2006-09-14 05:55:03 +00:00
|
|
|
if (homePage)
|
|
|
|
document.getElementById("home-button").setAttribute("tooltiptext", homePage);
|
|
|
|
|
|
|
|
// Check for window.arguments[0]. If present, go to that url.
|
|
|
|
if ("arguments" in window && window.arguments.length > 0) {
|
1999-07-14 00:03:57 +00:00
|
|
|
|
2006-09-14 05:44:15 +00:00
|
|
|
// See if load in progress (loading default page).
|
2006-09-14 05:55:03 +00:00
|
|
|
if (document.getElementById("navigator-throbber").getAttribute("busy") == "true") {
|
|
|
|
debug("Stopping load of default initial page\n");
|
|
|
|
getWebNavigation().stop();
|
2006-09-14 05:44:15 +00:00
|
|
|
}
|
2006-09-14 05:55:03 +00:00
|
|
|
|
|
|
|
debug("Loading page specified via openDialog\n");
|
|
|
|
loadURI(window.arguments[0]);
|
1999-07-01 22:56:04 +00:00
|
|
|
}
|
|
|
|
|
2006-09-14 05:55:03 +00:00
|
|
|
initConsoleListener();
|
2006-09-14 05:47:18 +00:00
|
|
|
|
2006-09-14 05:55:03 +00:00
|
|
|
// Perform default browser checking.
|
|
|
|
checkForDefaultBrowser();
|
|
|
|
}
|
2006-09-14 05:55:06 +00:00
|
|
|
|
2006-09-14 05:55:03 +00:00
|
|
|
function Shutdown()
|
|
|
|
{
|
|
|
|
try {
|
|
|
|
// If bookmarks are dirty, flush 'em to disk
|
|
|
|
var bmks = Components.classes["@mozilla.org/browser/bookmarks-service;1"]
|
|
|
|
.getService(Components.interfaces.nsIRDFRemoteDataSource);
|
|
|
|
bmks.Flush();
|
|
|
|
} catch (ex) {
|
|
|
|
}
|
2006-09-14 05:47:18 +00:00
|
|
|
|
2006-09-14 05:55:03 +00:00
|
|
|
try {
|
2006-09-14 05:55:06 +00:00
|
|
|
// give history a chance at flushing to disk also
|
2006-09-14 05:55:03 +00:00
|
|
|
var history = Components.classes["@mozilla.org/browser/global-history;1"]
|
|
|
|
.getService(Components.interfaces.nsIRDFRemoteDataSource);
|
2006-09-14 05:55:06 +00:00
|
|
|
history.Flush();
|
2006-09-14 05:55:03 +00:00
|
|
|
} catch (ex) {
|
2006-09-14 05:44:15 +00:00
|
|
|
}
|
1999-07-01 22:56:04 +00:00
|
|
|
|
2006-09-14 05:55:03 +00:00
|
|
|
// Close the app core.
|
|
|
|
if (appCore)
|
|
|
|
appCore.close();
|
|
|
|
}
|
|
|
|
|
2006-09-14 05:55:06 +00:00
|
|
|
function Translate()
|
|
|
|
{
|
|
|
|
var service = "http://cgi.netscape.com/cgi-bin/translate.cgi?AlisUI=simple_frames/ns_home";
|
2006-09-14 05:44:15 +00:00
|
|
|
|
2006-09-14 05:55:06 +00:00
|
|
|
// if we're already viewing a translated page, then just get the
|
|
|
|
// last argument (which we expect to always be "AlisTargetURI")
|
|
|
|
var targetURI = getWebNavigation().currentURI.spec;
|
|
|
|
var targetURIIndex = targetURI.indexOf("AlisTargetURI=");
|
|
|
|
if (targetURIIndex >= 0)
|
|
|
|
targetURI = targetURI.substring(targetURIIndex + 14);
|
1999-07-14 00:03:57 +00:00
|
|
|
|
2006-09-14 05:55:06 +00:00
|
|
|
service += "&AlisTargetURI=" + escape(targetURI);
|
|
|
|
|
|
|
|
loadURI(service);
|
|
|
|
}
|
2006-09-14 05:44:13 +00:00
|
|
|
|
2006-09-14 05:55:03 +00:00
|
|
|
function gotoHistoryIndex(aEvent)
|
|
|
|
{
|
|
|
|
var index = aEvent.target.getAttribute("index");
|
|
|
|
if (index) {
|
|
|
|
getWebNavigation().gotoIndex(index);
|
|
|
|
return true;
|
2006-09-14 05:44:15 +00:00
|
|
|
}
|
2006-09-14 05:55:03 +00:00
|
|
|
return false;
|
|
|
|
}
|
2006-09-14 05:44:13 +00:00
|
|
|
|
2006-09-14 05:50:13 +00:00
|
|
|
function BrowserBack()
|
2006-09-14 05:55:03 +00:00
|
|
|
{
|
|
|
|
getWebNavigation().goBack();
|
|
|
|
UpdateBackForwardButtons();
|
|
|
|
}
|
2006-09-14 05:44:13 +00:00
|
|
|
|
2006-09-14 05:50:13 +00:00
|
|
|
function BrowserForward()
|
2006-09-14 05:55:03 +00:00
|
|
|
{
|
|
|
|
getWebNavigation().goForward();
|
|
|
|
UpdateBackForwardButtons();
|
|
|
|
}
|
2006-09-14 05:49:28 +00:00
|
|
|
|
2006-09-14 05:50:13 +00:00
|
|
|
function BrowserBackMenu(event)
|
2006-09-14 05:55:03 +00:00
|
|
|
{
|
|
|
|
FillHistoryMenu(event.target, "back");
|
|
|
|
}
|
2006-09-14 05:49:28 +00:00
|
|
|
|
2006-09-14 05:50:13 +00:00
|
|
|
function BrowserForwardMenu(event)
|
2006-09-14 05:55:03 +00:00
|
|
|
{
|
|
|
|
FillHistoryMenu(event.target, "forward");
|
|
|
|
}
|
1999-07-01 22:56:04 +00:00
|
|
|
|
2006-09-14 05:55:06 +00:00
|
|
|
function BrowserStop()
|
2006-09-14 05:55:03 +00:00
|
|
|
{
|
|
|
|
getWebNavigation().stop();
|
|
|
|
}
|
2006-09-14 05:49:47 +00:00
|
|
|
|
2006-09-14 05:55:03 +00:00
|
|
|
function BrowserReallyReload(event)
|
|
|
|
{
|
|
|
|
// Default is no flags.
|
|
|
|
var reloadFlags = nsIWebNavigation.LOAD_FLAGS_NONE;
|
|
|
|
// See if the event was a shift-click.
|
|
|
|
if (event && event.shiftKey) {
|
|
|
|
// Shift key means bypass proxy and cache.
|
|
|
|
reloadFlags = nsIWebNavigation.LOAD_FLAGS_BYPASS_PROXY | nsIWebNavigation.LOAD_FLAGS_BYPASS_CACHE;
|
|
|
|
}
|
|
|
|
getWebNavigation().reload(reloadFlags);
|
|
|
|
}
|
2006-09-14 05:49:08 +00:00
|
|
|
|
2006-09-14 05:50:13 +00:00
|
|
|
function BrowserHome()
|
2006-09-14 05:55:03 +00:00
|
|
|
{
|
|
|
|
var homePage = getHomePage();
|
|
|
|
loadURI(homePage);
|
|
|
|
}
|
2006-09-14 05:49:08 +00:00
|
|
|
|
2006-09-14 05:54:56 +00:00
|
|
|
function OpenBookmarkURL(event, datasources)
|
|
|
|
{
|
|
|
|
// what is the meaning of the return value from this function?
|
|
|
|
var node = event.target;
|
2006-09-14 05:55:03 +00:00
|
|
|
if (node.getAttribute("container") == "true")
|
2006-09-14 05:55:06 +00:00
|
|
|
return;
|
2006-09-14 05:44:15 +00:00
|
|
|
|
2006-09-14 05:55:03 +00:00
|
|
|
var url = node.getAttribute("id");
|
2006-09-14 05:54:56 +00:00
|
|
|
try {
|
|
|
|
// add support for IE favorites under Win32, and NetPositive URLs under BeOS
|
2006-09-14 05:55:06 +00:00
|
|
|
if (datasources) {
|
|
|
|
var rdf = Components.classes["@mozilla.org/rdf/rdf-service;1"]
|
|
|
|
.getService(Components.interfaces.nsIRDFService);
|
2006-09-14 05:54:56 +00:00
|
|
|
var src = rdf.GetResource(url, true);
|
|
|
|
var prop = rdf.GetResource("http://home.netscape.com/NC-rdf#URL", true);
|
|
|
|
var target = datasources.GetTarget(src, prop, true);
|
2006-09-14 05:55:06 +00:00
|
|
|
if (target) {
|
|
|
|
target = target.QueryInterface(Components.interfaces.nsIRDFLiteral).Value;
|
|
|
|
if (target)
|
|
|
|
url = target;
|
|
|
|
}
|
2006-09-14 05:44:15 +00:00
|
|
|
}
|
2006-09-14 05:55:06 +00:00
|
|
|
} catch (ex) {
|
|
|
|
return;
|
2006-09-14 05:54:56 +00:00
|
|
|
}
|
|
|
|
// Ignore "NC:" urls.
|
|
|
|
if (url.substring(0, 3) == "NC:")
|
2006-09-14 05:55:06 +00:00
|
|
|
return;
|
2006-09-14 05:54:56 +00:00
|
|
|
|
|
|
|
// Check if we have a browser window
|
2006-09-14 05:55:06 +00:00
|
|
|
if (_content)
|
2006-09-14 05:54:56 +00:00
|
|
|
loadURI(url);
|
2006-09-14 05:55:06 +00:00
|
|
|
else
|
|
|
|
openDialog(getBrowserURL(), "_blank", "chrome,all,dialog=no", url);
|
2006-09-14 05:54:56 +00:00
|
|
|
}
|
2006-09-14 05:44:13 +00:00
|
|
|
|
1999-12-30 23:39:08 +00:00
|
|
|
function OpenSearch(tabName, forceDialogFlag, searchStr)
|
1999-08-05 23:09:42 +00:00
|
|
|
{
|
1999-12-30 11:10:19 +00:00
|
|
|
var searchMode = 0;
|
|
|
|
var searchEngineURI = null;
|
1999-12-30 14:16:17 +00:00
|
|
|
var autoOpenSearchPanel = false;
|
1999-12-30 14:42:33 +00:00
|
|
|
var defaultSearchURL = null;
|
2006-09-14 05:54:29 +00:00
|
|
|
var fallbackDefaultSearchURL = bundle.GetStringFromName("fallbackDefaultSearchURL");
|
|
|
|
var otherSearchURL = bundle.GetStringFromName("otherSearchURL");
|
2006-09-14 05:51:09 +00:00
|
|
|
|
1999-12-30 11:10:19 +00:00
|
|
|
try
|
|
|
|
{
|
|
|
|
searchMode = pref.GetIntPref("browser.search.powermode");
|
1999-12-30 14:16:17 +00:00
|
|
|
autoOpenSearchPanel = pref.GetBoolPref("browser.search.opensidebarsearchpanel");
|
1999-12-30 14:42:33 +00:00
|
|
|
searchEngineURI = pref.CopyCharPref("browser.search.defaultengine");
|
2006-09-14 05:51:32 +00:00
|
|
|
defaultSearchURL = pref.getLocalizedUnicharPref("browser.search.defaulturl");
|
2006-09-14 05:44:15 +00:00
|
|
|
|
1999-12-30 11:10:19 +00:00
|
|
|
}
|
|
|
|
catch(ex)
|
|
|
|
{
|
|
|
|
}
|
2006-09-14 05:55:03 +00:00
|
|
|
debug("Search defaultSearchURL: " + defaultSearchURL + "\n");
|
1999-12-30 14:42:33 +00:00
|
|
|
if ((defaultSearchURL == null) || (defaultSearchURL == ""))
|
|
|
|
{
|
1999-12-30 14:56:26 +00:00
|
|
|
// Fallback to a Netscape default (one that we can get sidebar search results for)
|
2006-09-14 05:47:49 +00:00
|
|
|
defaultSearchURL = fallbackDefaultSearchURL;
|
1999-12-30 14:42:33 +00:00
|
|
|
}
|
2006-09-14 05:55:03 +00:00
|
|
|
debug("This is before the search " + window._content.location.href + "\n");
|
|
|
|
debug("This is before the search " + searchStr + "\n");
|
2006-09-14 05:51:08 +00:00
|
|
|
if ((window._content.location.href == searchStr) || (searchStr == ''))
|
1999-12-30 11:10:19 +00:00
|
|
|
{
|
2006-09-14 05:51:08 +00:00
|
|
|
// window._content.location.href = defaultSearchURL;
|
2006-09-14 05:49:56 +00:00
|
|
|
// Call in to BrowserAppCore instead of replacing
|
|
|
|
// the url in the content area so that B/F buttons work right
|
2006-09-14 05:54:04 +00:00
|
|
|
|
2006-09-14 05:54:32 +00:00
|
|
|
if (!(defaultSearchURL == fallbackDefaultSearchURL))
|
2006-09-14 05:54:29 +00:00
|
|
|
{
|
2006-09-14 05:55:03 +00:00
|
|
|
loadURI(defaultSearchURL);
|
2006-09-14 05:54:29 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
//window._content.local.href = "http://home.netscape.com/bookmark/6_0/tsearch.html"
|
|
|
|
// Call in to BrowserAppCore instead of replacing
|
|
|
|
// the url in the content area so that B/F buttons work right
|
2006-09-14 05:55:03 +00:00
|
|
|
loadURI(otherSearchURL);
|
2006-09-14 05:54:29 +00:00
|
|
|
}
|
1999-12-30 11:10:19 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-09-14 05:44:15 +00:00
|
|
|
if ((searchMode == 1) || (forceDialogFlag == true))
|
|
|
|
{
|
|
|
|
// Use a single search dialog
|
2006-09-14 05:53:17 +00:00
|
|
|
var cwindowManager = Components.classes["@mozilla.org/rdf/datasource;1?name=window-mediator"].getService();
|
2006-09-14 05:44:15 +00:00
|
|
|
var iwindowManager = Components.interfaces.nsIWindowMediator;
|
|
|
|
var windowManager = cwindowManager.QueryInterface(iwindowManager);
|
|
|
|
var searchWindow = windowManager.getMostRecentWindow("search:window");
|
|
|
|
if (searchWindow)
|
|
|
|
{
|
|
|
|
searchWindow.focus();
|
|
|
|
if (searchWindow.loadPage) searchWindow.loadPage(tabName, searchStr);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-09-14 05:49:27 +00:00
|
|
|
window.openDialog("chrome://communicator/content/search/search.xul", "SearchWindow", "dialog=no,close,chrome,resizable", tabName, searchStr);
|
2006-09-14 05:44:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ((!searchStr) || (searchStr == "")) return;
|
2006-09-14 05:44:09 +00:00
|
|
|
|
2006-09-14 05:53:17 +00:00
|
|
|
var searchDS = Components.classes["@mozilla.org/rdf/datasource;1?name=internetsearch"].getService();
|
2006-09-14 05:44:15 +00:00
|
|
|
if (searchDS) searchDS = searchDS.QueryInterface(Components.interfaces.nsIInternetSearchService);
|
1999-12-30 11:10:19 +00:00
|
|
|
|
2006-09-14 05:44:15 +00:00
|
|
|
var escapedSearchStr = escape(searchStr);
|
|
|
|
defaultSearchURL += escapedSearchStr;
|
2006-09-14 05:44:09 +00:00
|
|
|
|
2006-09-14 05:44:15 +00:00
|
|
|
if (searchDS)
|
1999-12-30 11:10:19 +00:00
|
|
|
{
|
2006-09-14 05:44:15 +00:00
|
|
|
searchDS.RememberLastSearchText(escapedSearchStr);
|
|
|
|
|
|
|
|
if ((searchEngineURI != null) && (searchEngineURI != ""))
|
2006-09-14 05:44:09 +00:00
|
|
|
{
|
2006-09-14 05:44:15 +00:00
|
|
|
try
|
|
|
|
{
|
|
|
|
var searchURL = searchDS.GetInternetSearchURL(searchEngineURI, escapedSearchStr);
|
|
|
|
if ((searchURL != null) && (searchURL != ""))
|
|
|
|
{
|
|
|
|
defaultSearchURL = searchURL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch(ex)
|
2006-09-14 05:44:09 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
2006-09-14 05:44:15 +00:00
|
|
|
}
|
2006-09-14 05:51:08 +00:00
|
|
|
// window._content.location.href = defaultSearchURL
|
2006-09-14 05:49:56 +00:00
|
|
|
// Call in to BrowserAppCore instead of replacing
|
|
|
|
// the url in the content area so that B/F buttons work right
|
2006-09-14 05:55:03 +00:00
|
|
|
loadURI(defaultSearchURL);
|
1999-12-30 11:10:19 +00:00
|
|
|
}
|
|
|
|
}
|
1999-12-30 14:16:17 +00:00
|
|
|
|
|
|
|
// should we try and open up the sidebar to show the "Search Results" panel?
|
|
|
|
if (autoOpenSearchPanel == true)
|
2006-09-14 05:44:15 +00:00
|
|
|
{
|
2006-09-14 05:40:43 +00:00
|
|
|
RevealSearchPanel();
|
2006-09-14 05:44:15 +00:00
|
|
|
}
|
2006-09-14 05:40:43 +00:00
|
|
|
}
|
1999-12-30 14:16:17 +00:00
|
|
|
|
2006-09-14 05:50:09 +00:00
|
|
|
function setBrowserSearchMode(searchMode)
|
|
|
|
{
|
2006-09-14 05:55:06 +00:00
|
|
|
// set search mode preference
|
|
|
|
try {
|
|
|
|
pref.SetIntPref("browser.search.mode", searchMode);
|
|
|
|
} catch (ex) {
|
|
|
|
}
|
2006-09-14 05:50:09 +00:00
|
|
|
|
2006-09-14 05:55:06 +00:00
|
|
|
// update search menu
|
|
|
|
var simpleMenuItem = document.getElementById("simpleSearch");
|
|
|
|
simpleMenuItem.setAttribute("checked", (searchMode == 0) ? "true" : "false");
|
|
|
|
|
|
|
|
var advancedMenuItem = document.getElementById("advancedSearch");
|
|
|
|
advancedMenuItem.setAttribute("checked", (searchMode == 1) ? "true" : "false");
|
2006-09-14 05:50:09 +00:00
|
|
|
}
|
|
|
|
|
2006-09-14 05:40:43 +00:00
|
|
|
function RevealSearchPanel()
|
|
|
|
{
|
2006-09-14 05:53:14 +00:00
|
|
|
var should_popopen = true;
|
|
|
|
var should_unhide = true;
|
|
|
|
var searchPanel = document.getElementById("urn:sidebar:panel:search");
|
2006-09-14 05:40:43 +00:00
|
|
|
|
2006-09-14 05:53:14 +00:00
|
|
|
if (searchPanel) {
|
|
|
|
// SidebarSelectPanel() lives in sidebarOverlay.js
|
|
|
|
SidebarSelectPanel(searchPanel, should_popopen, should_unhide);
|
|
|
|
}
|
1999-08-05 23:09:42 +00:00
|
|
|
}
|
|
|
|
|
1999-10-14 00:13:21 +00:00
|
|
|
//Note: BrowserNewEditorWindow() was moved to globalOverlay.xul and renamed to NewEditorWindow()
|
2006-09-14 05:55:06 +00:00
|
|
|
|
2006-09-14 05:55:03 +00:00
|
|
|
function BrowserOpenWindow()
|
|
|
|
{
|
|
|
|
//opens a window where users can select a web location to open
|
2006-09-14 05:55:05 +00:00
|
|
|
openDialog("chrome://navigator/content/openLocation.xul", "_blank", "chrome,modal,titlebar", appCore);
|
2006-09-14 05:55:03 +00:00
|
|
|
}
|
2006-09-14 05:47:23 +00:00
|
|
|
|
2006-09-14 05:55:03 +00:00
|
|
|
/* Called from the openLocation dialog. This allows that dialog to instruct
|
|
|
|
its opener to open a new window and then step completely out of the way.
|
|
|
|
Anything less byzantine is causing horrible crashes, rather believably,
|
|
|
|
though oddly only on Linux. */
|
|
|
|
function delayedOpenWindow(chrome,flags,url)
|
|
|
|
{
|
|
|
|
setTimeout("openDialog('"+chrome+"','_blank','"+flags+"','"+url+"')", 10);
|
|
|
|
}
|
2006-09-14 05:55:06 +00:00
|
|
|
|
2006-09-14 05:53:17 +00:00
|
|
|
function createInstance( contractid, iidName ) {
|
2006-09-14 05:47:22 +00:00
|
|
|
var iid = Components.interfaces[iidName];
|
2006-09-14 05:53:17 +00:00
|
|
|
return Components.classes[ contractid ].createInstance( iid );
|
2006-09-14 05:44:15 +00:00
|
|
|
}
|
1999-10-01 04:43:45 +00:00
|
|
|
|
2006-09-14 05:44:15 +00:00
|
|
|
function createInstanceById( cid, iidName ) {
|
2006-09-14 05:47:22 +00:00
|
|
|
var iid = Components.interfaces[iidName];
|
2006-09-14 05:44:15 +00:00
|
|
|
return Components.classesByID[ cid ].createInstance( iid );
|
|
|
|
}
|
1999-10-01 04:43:45 +00:00
|
|
|
|
2006-09-14 05:53:17 +00:00
|
|
|
function getService( contractid, iidName ) {
|
2006-09-14 05:47:22 +00:00
|
|
|
var iid = Components.interfaces[iidName];
|
2006-09-14 05:53:17 +00:00
|
|
|
return Components.classes[ contractid ].getService( iid );
|
2006-09-14 05:44:15 +00:00
|
|
|
}
|
1999-10-01 04:43:45 +00:00
|
|
|
|
2006-09-14 05:44:15 +00:00
|
|
|
function getServiceById( cid, iidName ) {
|
2006-09-14 05:47:22 +00:00
|
|
|
var iid = Components.interfaces[iidName];
|
2006-09-14 05:44:15 +00:00
|
|
|
return Components.classesByID[ cid ].getService( iid );
|
|
|
|
}
|
1999-09-14 21:30:57 +00:00
|
|
|
|
2006-09-14 05:55:03 +00:00
|
|
|
function BrowserOpenFileWindow()
|
|
|
|
{
|
|
|
|
// Get filepicker component.
|
|
|
|
try {
|
|
|
|
const nsIFilePicker = Components.interfaces.nsIFilePicker;
|
|
|
|
var fp = Components.classes["@mozilla.org/filepicker;1"].createInstance(nsIFilePicker);
|
|
|
|
fp.init(window, bundle.GetStringFromName("openFile"), nsIFilePicker.modeOpen);
|
|
|
|
fp.appendFilters(nsIFilePicker.filterAll | nsIFilePicker.filterText | nsIFilePicker.filterImages |
|
|
|
|
nsIFilePicker.filterXML | nsIFilePicker.filterHTML);
|
|
|
|
|
|
|
|
if (fp.show() == nsIFilePicker.returnOK)
|
|
|
|
openTopWin(fp.fileURL.spec);
|
|
|
|
} catch (ex) {
|
2006-09-14 05:44:15 +00:00
|
|
|
}
|
2006-09-14 05:55:03 +00:00
|
|
|
}
|
2006-09-14 05:44:15 +00:00
|
|
|
|
2006-09-14 05:55:06 +00:00
|
|
|
function BrowserAddBookmark(url, title)
|
|
|
|
{
|
|
|
|
if (!title)
|
|
|
|
title = url;
|
1999-07-01 22:56:04 +00:00
|
|
|
|
2006-09-14 05:55:06 +00:00
|
|
|
var focusedWindow = document.commandDispatcher.focusedWindow;
|
|
|
|
if (focusedWindow == window)
|
|
|
|
focusedWindow = _content;
|
|
|
|
|
|
|
|
var docCharset = focusedWindow.document.characterSet;
|
|
|
|
|
|
|
|
var bmks = Components.classes["@mozilla.org/browser/bookmarks-service;1"]
|
|
|
|
.getService(Components.interfaces.nsIBookmarksService);
|
|
|
|
|
|
|
|
bmks.AddBookmark(url, title, bmks.BOOKMARK_DEFAULT_TYPE, docCharset);
|
|
|
|
debug("BrowserAddBookmark: " + docCharset + "\n");
|
|
|
|
}
|
1999-07-01 22:56:04 +00:00
|
|
|
|
2006-09-14 05:55:04 +00:00
|
|
|
// Set up a lame hack to avoid opening two bookmarks.
|
|
|
|
// Could otherwise happen with two Ctrl-B's in a row.
|
2006-09-14 05:40:47 +00:00
|
|
|
var gDisableBookmarks = false;
|
2006-09-14 05:55:03 +00:00
|
|
|
function enableBookmarks()
|
|
|
|
{
|
2006-09-14 05:40:47 +00:00
|
|
|
gDisableBookmarks = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
function BrowserEditBookmarks()
|
2006-09-14 05:55:06 +00:00
|
|
|
{
|
2006-09-14 05:40:47 +00:00
|
|
|
// Use a single sidebar bookmarks dialog
|
2006-09-14 05:55:03 +00:00
|
|
|
var windowManager = Components.classes["@mozilla.org/rdf/datasource;1?name=window-mediator"]
|
|
|
|
.getService(Components.interfaces.nsIWindowMediator);
|
2006-09-14 05:40:47 +00:00
|
|
|
|
2006-09-14 05:55:03 +00:00
|
|
|
var bookmarksWindow = windowManager.getMostRecentWindow("bookmarks:manager");
|
2006-09-14 05:40:47 +00:00
|
|
|
|
2006-09-14 05:44:15 +00:00
|
|
|
if (bookmarksWindow) {
|
|
|
|
//debug("Reuse existing bookmarks window");
|
2006-09-14 05:40:47 +00:00
|
|
|
bookmarksWindow.focus();
|
2006-09-14 05:44:15 +00:00
|
|
|
} else {
|
|
|
|
//debug("Open a new bookmarks dialog");
|
|
|
|
|
2006-09-14 05:55:03 +00:00
|
|
|
// while disabled, don't open new bookmarks window
|
|
|
|
if (!gDisableBookmarks) {
|
|
|
|
gDisableBookmarks = true;
|
2006-09-14 05:40:47 +00:00
|
|
|
|
2006-09-14 05:55:03 +00:00
|
|
|
open("chrome://communicator/content/bookmarks/bookmarks.xul", "_blank", "chrome,menubar,resizable,scrollbars");
|
|
|
|
setTimeout(enableBookmarks, 2000);
|
|
|
|
}
|
1999-07-01 22:56:04 +00:00
|
|
|
}
|
2006-09-14 05:40:47 +00:00
|
|
|
}
|
1999-07-01 22:56:04 +00:00
|
|
|
|
2006-09-14 05:55:03 +00:00
|
|
|
function BrowserPrintPreview()
|
|
|
|
{
|
|
|
|
// this is currently a do-nothing on appCore which is going to die
|
|
|
|
// ???.printPreview();
|
|
|
|
}
|
1999-07-01 22:56:04 +00:00
|
|
|
|
2006-09-14 05:55:06 +00:00
|
|
|
function BrowserPrint()
|
|
|
|
{
|
|
|
|
// using window.print() until printing becomes scriptable on docShell
|
|
|
|
_content.print();
|
|
|
|
}
|
1999-07-01 22:56:04 +00:00
|
|
|
|
2006-09-14 05:53:59 +00:00
|
|
|
function initViewMenu()
|
2006-09-14 05:47:56 +00:00
|
|
|
{
|
2006-09-14 05:54:27 +00:00
|
|
|
var viewPopup = document.getElementById("menu_View_Popup");
|
|
|
|
if (navigator.platform.indexOf("Mac") != -1) {
|
|
|
|
// only need to test once
|
|
|
|
viewPopup.removeAttribute("oncreate");
|
|
|
|
} else {
|
|
|
|
var textZoomMenu = document.getElementById("menu_TextZoom");
|
|
|
|
textZoomMenu.removeAttribute("hidden");
|
|
|
|
// next time, oncreate skips this check
|
|
|
|
viewPopup.setAttribute("oncreate", "updateTextSizeMenuLabel();");
|
|
|
|
updateTextSizeMenuLabel();
|
|
|
|
}
|
2006-09-14 05:53:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
var zoomFactors; // array with factors
|
|
|
|
var zoomAccessKeys; // array with access keys
|
|
|
|
var zoomFactor = 100; // start value
|
|
|
|
var zoomLevel;
|
|
|
|
var zoomStep;
|
|
|
|
var zoomOther;
|
|
|
|
var zoomAnchor;
|
|
|
|
var zoomSteps = 0;
|
|
|
|
var zoomMenuLabel;
|
|
|
|
var zoomLabel;
|
|
|
|
var zoomLabelOther;
|
|
|
|
var zoomLabelOriginal;
|
|
|
|
|
|
|
|
try {
|
|
|
|
zoomMenuLabel = bundle.GetStringFromName("textZoomMenuLabel");
|
|
|
|
} catch (exception) {
|
|
|
|
zoomMenuLabel = "Text Size (%zoom% %)"; // better suggestion?
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
zoomLabel = bundle.GetStringFromName("textZoomLabel");
|
|
|
|
} catch (exception) {
|
|
|
|
zoomLabel = "%zoom% %"; // better suggestion?
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
zoomLabelOther = bundle.GetStringFromName("textZoomLabelOther");
|
|
|
|
} catch (exception) {
|
|
|
|
zoomLabelOther = "%zoom% % ..."; // better suggestion?
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
var zoomFactorsString = bundle.GetStringFromName("textZoomValues");
|
|
|
|
var zoomAccessKeysString = bundle.GetStringFromName("textZoomAccessKeys");
|
|
|
|
var zoomStepString = bundle.GetStringFromName("textZoomStepFactor");
|
|
|
|
zoomLabelOriginal = bundle.GetStringFromName("textZoomLabelOriginal");
|
|
|
|
zoomOther = bundle.GetStringFromName("textZoomValueOther");
|
|
|
|
zoomOther = parseInt(zoomOther);
|
|
|
|
zoomStep = parseFloat(zoomStepString);
|
|
|
|
zoomFactors = zoomFactorsString.split(",");
|
|
|
|
for (var i=0; i<zoomFactors.length; i++) {
|
|
|
|
zoomFactors[i] = parseInt(zoomFactors[i]);
|
2006-09-14 05:54:27 +00:00
|
|
|
if (zoomFactors[i] == 100) zoomLevel = i;
|
2006-09-14 05:47:56 +00:00
|
|
|
}
|
2006-09-14 05:53:59 +00:00
|
|
|
zoomAccessKeys = zoomAccessKeysString.split(",");
|
|
|
|
if (zoomAccessKeys.length != zoomFactors.length)
|
|
|
|
throw "Different amount of text zoom access keys and text zoom values";
|
|
|
|
} catch (e) {
|
2006-09-14 05:54:27 +00:00
|
|
|
zoomLabelOriginal = "%zoom% % (Original size)";
|
2006-09-14 05:53:59 +00:00
|
|
|
zoomFactors = [ 50, 75, 90, 100, 120, 150, 200 ];
|
|
|
|
zoomAccessKeys = [ "5", "7", "9", "z", "1", "0", "2" ];
|
|
|
|
zoomOther = 300;
|
|
|
|
zoomStep = 1.5;
|
|
|
|
zoomLevel = 3;
|
2006-09-14 05:47:56 +00:00
|
|
|
}
|
2006-09-14 05:53:59 +00:00
|
|
|
zoomAnchor = zoomOther;
|
2006-09-14 05:47:56 +00:00
|
|
|
}
|
|
|
|
|
2006-09-14 05:53:59 +00:00
|
|
|
function GetBrowserDocShell() {
|
|
|
|
var docShell = null;
|
|
|
|
var browserElement = document.getElementById("content");
|
|
|
|
if (browserElement) {
|
|
|
|
docShell = browserElement.boxObject.QueryInterface(Components.interfaces.nsIBrowserBoxObject).docShell;
|
|
|
|
} else {
|
2006-09-14 05:55:03 +00:00
|
|
|
debug("no browserElement found\n");
|
2006-09-14 05:53:59 +00:00
|
|
|
}
|
|
|
|
return docShell;
|
|
|
|
}
|
2006-09-14 05:52:19 +00:00
|
|
|
|
2006-09-14 05:53:59 +00:00
|
|
|
function setTextZoom() {
|
2006-09-14 05:55:03 +00:00
|
|
|
// debug("Level: "+zoomLevel+" Factor: "+zoomFactor+" Anchor: "+zoomAnchor+" Steps: "+zoomSteps+"\n");
|
|
|
|
var markupDocumentViewer = getBrowser().markupDocumentViewer;
|
|
|
|
markupDocumentViewer.textZoom = zoomFactor / 100.0;
|
2006-09-14 05:52:19 +00:00
|
|
|
}
|
2006-09-14 05:53:59 +00:00
|
|
|
|
|
|
|
function initTextZoomMenu() {
|
|
|
|
var popup = document.getElementById("textZoomPopup");
|
|
|
|
var insertBefore = document.getElementById("textZoomInsertBefore");
|
|
|
|
if (!insertBefore || insertBefore.previousSibling.tagName != "menuseparator")
|
|
|
|
return; // nothing to be done
|
|
|
|
|
|
|
|
for (var i=0; i < zoomFactors.length; i++) {
|
|
|
|
var menuItem = document.createElement("menuitem");
|
|
|
|
menuItem.setAttribute("type", "radio");
|
|
|
|
menuItem.setAttribute("name", "textZoom");
|
|
|
|
var value;
|
|
|
|
if (zoomFactors[i] == 100) {
|
|
|
|
value = zoomLabelOriginal.replace(/%zoom%/, zoomFactors[i]);
|
|
|
|
} else {
|
|
|
|
value = zoomLabel.replace(/%zoom%/, zoomFactors[i]);
|
|
|
|
}
|
|
|
|
menuItem.setAttribute("value", value);
|
|
|
|
menuItem.setAttribute("accesskey", zoomAccessKeys[i]);
|
|
|
|
menuItem.setAttribute("oncommand","browserSetTextZoom(this.data);");
|
|
|
|
menuItem.setAttribute("data", zoomFactors[i].toString());
|
|
|
|
popup.insertBefore(menuItem, insertBefore);
|
|
|
|
}
|
|
|
|
updateTextZoomMenu();
|
|
|
|
updateTextZoomOtherMenu();
|
|
|
|
}
|
|
|
|
|
|
|
|
function isZoomLevelInRange(aZoomLevel) {
|
|
|
|
return aZoomLevel>=0 && aZoomLevel<=zoomFactors.length-1;
|
|
|
|
}
|
|
|
|
|
|
|
|
function isZoomFactorInRange(aZoomFactor) {
|
|
|
|
return aZoomFactor>=zoomFactors[0] && aZoomFactor<=zoomFactors[zoomFactors.length-1];
|
|
|
|
}
|
|
|
|
|
|
|
|
function findZoomLevel(aZoomFactor) {
|
|
|
|
var aZoomLevel = -1;
|
|
|
|
for (var i=0; i<zoomFactors.length && zoomFactors[i]<=aZoomFactor; i++) {
|
|
|
|
if (zoomFactors[i]==aZoomFactor) {
|
|
|
|
aZoomLevel = i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return aZoomLevel;
|
|
|
|
}
|
|
|
|
|
|
|
|
function updateTextZoomMenu() {
|
|
|
|
var textZoomPopup = document.getElementById("textZoomPopup");
|
|
|
|
if (textZoomPopup) {
|
|
|
|
var item = textZoomPopup.firstChild;
|
|
|
|
var count = 0;
|
|
|
|
while (item) {
|
|
|
|
if (item.getAttribute("name")=="textZoom") {
|
|
|
|
if (count < zoomFactors.length) {
|
|
|
|
if (item.getAttribute("data") == zoomFactor) {
|
|
|
|
item.setAttribute("checked","true");
|
|
|
|
} else {
|
|
|
|
item.removeAttribute("checked");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (!isZoomLevelInRange(zoomLevel)) {
|
|
|
|
item.setAttribute("checked","true");
|
|
|
|
} else {
|
|
|
|
item.removeAttribute("checked");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
count++;
|
|
|
|
}
|
|
|
|
item = item.nextSibling;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function updateTextZoomOtherMenu() {
|
|
|
|
var textZoomOther = document.getElementById("textZoomOther");
|
|
|
|
if (textZoomOther) {
|
|
|
|
textZoomOther.setAttribute("value", zoomLabelOther.replace(/%zoom%/, zoomOther));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function updateTextSizeMenuLabel() {
|
|
|
|
var textSizeMenu = document.getElementById("menu_TextZoom");
|
|
|
|
if (textSizeMenu) {
|
|
|
|
textSizeMenu.setAttribute("value", zoomMenuLabel.replace(/%zoom%/, zoomFactor));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function setTextZoomOther() {
|
|
|
|
// open dialog and ask for new value
|
|
|
|
var o = { retvals: {zoom: zoomOther}, zoomMin: 1, zoomMax: 5000 };
|
|
|
|
window.openDialog( "chrome://navigator/content/askViewZoom.xul", "", "chrome,modal,titlebar", o);
|
|
|
|
if (o.retvals.zoomOK) {
|
|
|
|
zoomOther = o.retvals.zoom;
|
|
|
|
zoomAnchor = zoomOther;
|
|
|
|
zoomSteps = 0;
|
|
|
|
browserSetTextZoom(zoomOther);
|
|
|
|
updateTextZoomOtherMenu();
|
|
|
|
}
|
2006-09-14 05:54:01 +00:00
|
|
|
updateTextZoomMenu();
|
2006-09-14 05:53:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function browserSetTextZoom(aZoomFactor) {
|
|
|
|
if (aZoomFactor < 1 || aZoomFactor > 5000)
|
|
|
|
return;
|
|
|
|
|
|
|
|
zoomFactor = aZoomFactor;
|
|
|
|
|
|
|
|
if (isZoomFactorInRange(zoomFactor)) {
|
|
|
|
zoomLevel = findZoomLevel(zoomFactor);
|
|
|
|
} else {
|
|
|
|
zoomLevel = -1;
|
|
|
|
}
|
|
|
|
setTextZoom();
|
|
|
|
updateTextZoomMenu();
|
|
|
|
}
|
|
|
|
|
|
|
|
function textZoomSnap() {
|
|
|
|
zoomLevel = 0;
|
|
|
|
while (zoomFactors[zoomLevel]<zoomFactor) {
|
|
|
|
zoomLevel++;
|
|
|
|
}
|
|
|
|
if (zoomFactors[zoomLevel]!=zoomFactor) {
|
|
|
|
if ((zoomFactor-zoomFactors[zoomLevel])>(zoomFactors[zoomLevel+1]-zoomFactor)) {
|
|
|
|
zoomLevel++;
|
|
|
|
}
|
|
|
|
zoomFactor = zoomFactors[zoomLevel];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function enlargeTextZoom() {
|
|
|
|
if (isZoomLevelInRange(zoomLevel) || isZoomFactorInRange(zoomOther)) {
|
|
|
|
var insertLevel = -1;
|
|
|
|
if (isZoomFactorInRange(zoomOther)) { // add current zoom factor as step
|
|
|
|
insertLevel = 0;
|
|
|
|
while (zoomFactors[insertLevel]<zoomOther) {
|
|
|
|
insertLevel++;
|
|
|
|
}
|
|
|
|
if (zoomFactors[insertLevel] != zoomOther) {
|
|
|
|
zoomFactors.splice(insertLevel, 0, zoomOther);
|
|
|
|
if (!isZoomLevelInRange(zoomLevel)) {
|
|
|
|
zoomLevel = insertLevel;
|
|
|
|
} else if (zoomLevel >= insertLevel) {
|
|
|
|
zoomLevel++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
zoomLevel++;
|
|
|
|
if (zoomLevel==zoomFactors.length) {
|
|
|
|
zoomAnchor = zoomFactors[zoomFactors.length - 1];
|
|
|
|
zoomSteps = 1;
|
|
|
|
zoomFactor = Math.round(zoomAnchor * zoomStep);
|
|
|
|
zoomOther = zoomFactor;
|
|
|
|
} else {
|
|
|
|
zoomFactor = zoomFactors[zoomLevel];
|
|
|
|
}
|
|
|
|
if (insertLevel != -1) {
|
|
|
|
if (zoomLevel > insertLevel) {
|
|
|
|
zoomLevel--;
|
|
|
|
} else if (zoomLevel == insertLevel) {
|
|
|
|
zoomLevel = -1;
|
|
|
|
}
|
|
|
|
zoomFactors.splice(insertLevel, 1);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
zoomSteps++;
|
|
|
|
zoomFactor = zoomAnchor * Math.pow(zoomStep,zoomSteps);
|
|
|
|
if (zoomFactor>5000) { // 5,000% zoom, get real
|
|
|
|
zoomSteps--;
|
|
|
|
zoomFactor = zoomAnchor * Math.pow(zoomStep,zoomSteps);
|
|
|
|
}
|
|
|
|
zoomFactor = Math.round(zoomFactor);
|
|
|
|
if (isZoomFactorInRange(zoomFactor)) {
|
|
|
|
textZoomSnap();
|
|
|
|
} else {
|
|
|
|
zoomOther = zoomFactor;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
setTextZoom();
|
|
|
|
updateTextZoomMenu();
|
|
|
|
updateTextZoomOtherMenu();
|
|
|
|
}
|
|
|
|
|
|
|
|
function reduceTextZoom() {
|
|
|
|
if (isZoomLevelInRange(zoomLevel) || isZoomFactorInRange(zoomOther)) {
|
|
|
|
var insertLevel = -1;
|
|
|
|
if (isZoomFactorInRange(zoomOther)) { // add current zoom factor as step
|
|
|
|
insertLevel = 0;
|
|
|
|
while (zoomFactors[insertLevel]<zoomOther) {
|
|
|
|
insertLevel++;
|
|
|
|
}
|
|
|
|
if (zoomFactors[insertLevel] != zoomOther) {
|
|
|
|
zoomFactors.splice(insertLevel, 0, zoomOther);
|
|
|
|
if (!isZoomLevelInRange(zoomLevel)) {
|
|
|
|
zoomLevel = insertLevel;
|
|
|
|
} else if (zoomLevel >= insertLevel) {
|
|
|
|
zoomLevel++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
zoomLevel--;
|
|
|
|
if (zoomLevel==-1) {
|
|
|
|
zoomAnchor = zoomFactors[0];
|
|
|
|
zoomSteps = -1;
|
|
|
|
zoomFactor = Math.round(zoomAnchor / zoomStep);
|
|
|
|
zoomOther = zoomFactor;
|
|
|
|
} else {
|
|
|
|
zoomFactor = zoomFactors[zoomLevel];
|
|
|
|
}
|
|
|
|
if (insertLevel != -1) { // remove current zoom factor as step
|
|
|
|
if (zoomLevel > insertLevel) {
|
|
|
|
zoomLevel--;
|
|
|
|
} else if (zoomLevel == insertLevel) {
|
|
|
|
zoomLevel = -1;
|
|
|
|
}
|
|
|
|
zoomFactors.splice(insertLevel, 1);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
zoomSteps--;
|
|
|
|
zoomFactor = zoomAnchor * Math.pow(zoomStep,zoomSteps);
|
|
|
|
if (zoomFactor<1) {
|
|
|
|
zoomSteps++;
|
|
|
|
zoomFactor = zoomAnchor * Math.pow(zoomStep,zoomSteps);
|
|
|
|
}
|
|
|
|
zoomFactor = Math.round(zoomFactor);
|
|
|
|
if (isZoomFactorInRange(zoomFactor)) {
|
|
|
|
textZoomSnap();
|
|
|
|
} else {
|
|
|
|
zoomOther = zoomFactor;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
setTextZoom();
|
|
|
|
updateTextZoomMenu();
|
|
|
|
updateTextZoomOtherMenu();
|
|
|
|
}
|
|
|
|
|
2006-09-14 05:55:03 +00:00
|
|
|
function BrowserSetDefaultCharacterSet(aCharset)
|
|
|
|
{
|
|
|
|
appCore.SetDocumentCharset(aCharset);
|
|
|
|
getWebNavigation().reload(nsIWebNavigation.LOAD_FLAGS_NONE);
|
|
|
|
}
|
1999-07-01 22:56:04 +00:00
|
|
|
|
2006-09-14 05:55:03 +00:00
|
|
|
function BrowserSetForcedCharacterSet(aCharset)
|
|
|
|
{
|
|
|
|
appCore.SetForcedCharset(aCharset);
|
|
|
|
}
|
2006-09-14 05:50:20 +00:00
|
|
|
|
2006-09-14 05:55:03 +00:00
|
|
|
function BrowserSetForcedDetector()
|
|
|
|
{
|
|
|
|
appCore.SetForcedDetector();
|
|
|
|
}
|
2006-09-14 05:50:20 +00:00
|
|
|
|
2006-09-14 05:55:06 +00:00
|
|
|
function BrowserClose()
|
|
|
|
{
|
|
|
|
// This code replicates stuff in Shutdown(). It is here because
|
|
|
|
// window.screenX and window.screenY have real values. We need
|
|
|
|
// to fix this eventually but by replicating the code here, we
|
|
|
|
// provide a means of saving position (it just requires that the
|
|
|
|
// user close the window via File->Close (vs. close box).
|
|
|
|
|
|
|
|
// Get the current window position/size.
|
|
|
|
var x = window.screenX;
|
|
|
|
var y = window.screenY;
|
|
|
|
var h = window.outerHeight;
|
|
|
|
var w = window.outerWidth;
|
|
|
|
|
|
|
|
// Store these into the window attributes (for persistence).
|
|
|
|
var win = document.getElementById( "main-window" );
|
|
|
|
win.setAttribute( "x", x );
|
|
|
|
win.setAttribute( "y", y );
|
|
|
|
win.setAttribute( "height", h );
|
|
|
|
win.setAttribute( "width", w );
|
|
|
|
|
|
|
|
window.close();
|
|
|
|
}
|
1999-09-16 23:44:07 +00:00
|
|
|
|
2006-09-14 05:44:15 +00:00
|
|
|
function BrowserFind() {
|
2006-09-14 05:55:03 +00:00
|
|
|
appCore.find();
|
1999-07-01 22:56:04 +00:00
|
|
|
}
|
2006-09-14 05:44:15 +00:00
|
|
|
|
|
|
|
function BrowserFindAgain() {
|
2006-09-14 05:55:03 +00:00
|
|
|
appCore.findNext();
|
1999-07-01 22:56:04 +00:00
|
|
|
}
|
|
|
|
|
2006-09-14 05:55:02 +00:00
|
|
|
function loadURI(uri)
|
|
|
|
{
|
2006-09-14 05:55:06 +00:00
|
|
|
try {
|
|
|
|
// _content.location.href = uri;
|
|
|
|
getWebNavigation().loadURI(uri, nsIWebNavigation.LOAD_FLAGS_NONE);
|
|
|
|
} catch (e) {
|
|
|
|
debug("Didn't load uri: '"+uri+"'\n");
|
|
|
|
debug(e);
|
|
|
|
}
|
2006-09-14 05:55:02 +00:00
|
|
|
}
|
2006-09-14 05:54:56 +00:00
|
|
|
|
2006-09-14 05:55:06 +00:00
|
|
|
function BrowserLoadURL()
|
|
|
|
{
|
|
|
|
var url = gURLBar.value;
|
2006-09-14 05:43:54 +00:00
|
|
|
|
2006-09-14 05:55:06 +00:00
|
|
|
// rjc: added support for URL shortcuts (3/30/1999)
|
|
|
|
try {
|
|
|
|
var bmks = Components.classes["@mozilla.org/browser/bookmarks-service;1"]
|
|
|
|
.getService(Components.interfaces.nsIBookmarksService);
|
|
|
|
|
|
|
|
var shortcutURL = bmks.FindShortcut(url);
|
|
|
|
if (!shortcutURL) {
|
|
|
|
// rjc: add support for string substitution with shortcuts (4/4/2000)
|
|
|
|
// (see bug # 29871 for details)
|
|
|
|
var aOffset = url.indexOf(" ");
|
|
|
|
if (aOffset > 0) {
|
|
|
|
var cmd = url.substr(0, aOffset);
|
|
|
|
var text = url.substr(aOffset+1);
|
|
|
|
shortcutURL = bmks.FindShortcut(cmd);
|
|
|
|
if (shortcutURL && text) {
|
|
|
|
aOffset = shortcutURL.indexOf("%s");
|
|
|
|
if (aOffset >= 0)
|
|
|
|
shortcutURL = shortcutURL.substr(0, aOffset) + text + shortcutURL.substr(aOffset+2);
|
|
|
|
else
|
|
|
|
shortcutURL = null;
|
|
|
|
}
|
2006-09-14 05:53:13 +00:00
|
|
|
}
|
2006-09-14 05:43:54 +00:00
|
|
|
}
|
1999-07-01 22:56:04 +00:00
|
|
|
|
2006-09-14 05:55:06 +00:00
|
|
|
if (shortcutURL)
|
|
|
|
url = shortcutURL;
|
1999-12-28 22:07:19 +00:00
|
|
|
|
2006-09-14 05:55:06 +00:00
|
|
|
} catch (ex) {
|
|
|
|
// stifle any exceptions so we're sure to load the URL.
|
2006-09-14 05:44:15 +00:00
|
|
|
}
|
1999-07-01 22:56:04 +00:00
|
|
|
|
2006-09-14 05:55:06 +00:00
|
|
|
loadURI(url);
|
|
|
|
_content.focus();
|
|
|
|
}
|
2006-09-14 05:50:21 +00:00
|
|
|
|
2006-09-14 05:55:06 +00:00
|
|
|
function readFromClipboard()
|
|
|
|
{
|
|
|
|
var url;
|
2006-09-14 05:50:21 +00:00
|
|
|
|
2006-09-14 05:55:06 +00:00
|
|
|
try {
|
|
|
|
// Get clipboard.
|
|
|
|
var clipboard = Components.classes["@mozilla.org/widget/clipboard;1"]
|
|
|
|
.getService(Components.interfaces.nsIClipboard);
|
2006-09-14 05:50:21 +00:00
|
|
|
|
2006-09-14 05:55:06 +00:00
|
|
|
// Create tranferable that will transfer the text.
|
|
|
|
var trans = Components.classes["@mozilla.org/widget/transferable;1"]
|
|
|
|
.createInstance(Components.interfaces.nsITransferable);
|
2006-09-14 05:50:21 +00:00
|
|
|
|
2006-09-14 05:55:06 +00:00
|
|
|
trans.addDataFlavor("text/unicode");
|
|
|
|
clipboard.getData(trans, clipboard.kSelectionClipboard);
|
2006-09-14 05:49:58 +00:00
|
|
|
|
2006-09-14 05:55:06 +00:00
|
|
|
var data = {};
|
|
|
|
var dataLen = {};
|
|
|
|
trans.getTransferData("text/unicode", data, dataLen);
|
|
|
|
|
|
|
|
if (data) {
|
|
|
|
data = data.value.QueryInterface(Components.interfaces.nsISupportsWString);
|
|
|
|
url = data.data.substring(0, dataLen.value / 2);
|
2006-09-14 05:49:58 +00:00
|
|
|
}
|
2006-09-14 05:55:06 +00:00
|
|
|
} catch (ex) {
|
2006-09-14 05:44:13 +00:00
|
|
|
}
|
1999-07-22 00:27:14 +00:00
|
|
|
|
2006-09-14 05:55:06 +00:00
|
|
|
return url;
|
|
|
|
}
|
|
|
|
|
|
|
|
function OpenMessenger()
|
|
|
|
{
|
|
|
|
open("chrome://messenger/content/messenger.xul", "_blank", "chrome,menubar,toolbar,resizable");
|
|
|
|
}
|
|
|
|
|
|
|
|
function OpenAddressbook()
|
|
|
|
{
|
|
|
|
open("chrome://messenger/content/addressbook/addressbook.xul", "_blank", "chrome,menubar,toolbar,resizable");
|
|
|
|
}
|
|
|
|
|
|
|
|
function BrowserSendPage(pageUrl, pageTitle)
|
|
|
|
{
|
|
|
|
openDialog("chrome://messenger/content/messengercompose/messengercompose.xul",
|
|
|
|
"_blank",
|
|
|
|
"chrome,all,dialog=no",
|
|
|
|
"attachment='" + pageUrl + "',body='" + pageUrl + "',subject='" + pageTitle + "',bodyislink=true");
|
|
|
|
}
|
|
|
|
|
|
|
|
function BrowserViewSource()
|
|
|
|
{
|
|
|
|
var focusedWindow = document.commandDispatcher.focusedWindow;
|
|
|
|
if (focusedWindow == window)
|
|
|
|
focusedWindow = _content;
|
|
|
|
|
|
|
|
var docCharset = "charset=" + focusedWindow.document.characterSet;
|
|
|
|
// debug("*** Current document charset: " + docCharset + "\n");
|
|
|
|
|
|
|
|
//now try to open a view-source window while inheriting the charset (if any)
|
|
|
|
openDialog("chrome://navigator/content/viewSource.xul",
|
|
|
|
"_blank",
|
|
|
|
"scrollbars,resizable,chrome,dialog=no",
|
|
|
|
_content.location, docCharset);
|
|
|
|
}
|
|
|
|
|
|
|
|
function BrowserPageInfo()
|
|
|
|
{
|
|
|
|
window.openDialog("chrome://navigator/content/pageInfo.xul",
|
|
|
|
"_blank",
|
|
|
|
"chrome,dialog=no");
|
|
|
|
}
|
2006-09-14 05:50:19 +00:00
|
|
|
|
2006-09-14 05:55:06 +00:00
|
|
|
function doTests()
|
|
|
|
{
|
2006-09-14 05:50:19 +00:00
|
|
|
}
|
|
|
|
|
2006-09-14 05:55:03 +00:00
|
|
|
function dumpProgress()
|
|
|
|
{
|
|
|
|
var meter = document.getElementById("statusbar-icon");
|
|
|
|
debug("meter mode=" + meter.getAttribute("mode") + "\n");
|
|
|
|
debug("meter value=" + meter.getAttribute("value") + "\n");
|
2006-09-14 05:50:19 +00:00
|
|
|
}
|
2006-09-14 05:44:15 +00:00
|
|
|
|
2006-09-14 05:55:03 +00:00
|
|
|
function BrowserReload()
|
|
|
|
{
|
|
|
|
debug("Sorry, command not implemented.\n");
|
1999-09-03 22:55:25 +00:00
|
|
|
}
|
1999-09-10 01:03:06 +00:00
|
|
|
|
1999-09-19 07:11:34 +00:00
|
|
|
function hiddenWindowStartup()
|
|
|
|
{
|
2006-09-14 05:55:06 +00:00
|
|
|
// Disable menus which are not appropriate
|
|
|
|
var disabledItems = ['cmd_close', 'Browser:SendPage', 'Browser:EditPage', 'Browser:PrintSetup', 'Browser:PrintPreview',
|
|
|
|
'Browser:Print', 'canGoBack', 'canGoForward', 'Browser:Home', 'Browser:AddBookmark', 'cmd_undo',
|
|
|
|
'cmd_redo', 'cmd_cut', 'cmd_copy','cmd_paste', 'cmd_delete', 'cmd_selectAll'];
|
|
|
|
for (id in disabledItems) {
|
|
|
|
// debug("disabling " + disabledItems[id] + "\n");
|
|
|
|
var broadcaster = document.getElementById(disabledItems[id]);
|
|
|
|
if (broadcaster)
|
|
|
|
broadcaster.setAttribute("disabled", "true");
|
|
|
|
}
|
1999-09-19 07:11:34 +00:00
|
|
|
}
|
|
|
|
|
2006-09-14 05:44:15 +00:00
|
|
|
// Dumps all properties of anObject.
|
2006-09-14 05:55:06 +00:00
|
|
|
function dumpObject(anObject, prefix)
|
|
|
|
{
|
|
|
|
if (!prefix)
|
|
|
|
prefix = anObject;
|
|
|
|
|
|
|
|
for (prop in anObject)
|
|
|
|
debug(prefix + "." + prop + " = " + anObject[prop] + "\n");
|
1999-09-16 04:15:40 +00:00
|
|
|
}
|
|
|
|
|
1999-09-22 07:30:44 +00:00
|
|
|
// Takes JS expression and dumps "expr="+expr+"\n"
|
2006-09-14 05:55:06 +00:00
|
|
|
function dumpExpr(expr)
|
|
|
|
{
|
|
|
|
debug(expr + "=" + eval(expr) + "\n");
|
1999-09-22 07:30:44 +00:00
|
|
|
}
|
1999-10-15 21:35:11 +00:00
|
|
|
|
2006-09-14 05:53:10 +00:00
|
|
|
// Initialize the LeakDetector class.
|
|
|
|
function LeakDetector(verbose)
|
2006-09-14 05:53:02 +00:00
|
|
|
{
|
2006-09-14 05:55:06 +00:00
|
|
|
this.verbose = verbose;
|
2006-09-14 05:54:00 +00:00
|
|
|
}
|
2006-09-14 05:55:06 +00:00
|
|
|
|
2006-09-14 05:54:00 +00:00
|
|
|
try {
|
2006-09-14 05:55:06 +00:00
|
|
|
LeakDetector.prototype = Components.classes["@mozilla.org/xpcom/leakdetector;1"]
|
|
|
|
.createInstance(Components.interfaces.nsILeakDetector);
|
2006-09-14 05:54:00 +00:00
|
|
|
} catch (err) {
|
2006-09-14 05:55:06 +00:00
|
|
|
LeakDetector.prototype = Object.prototype;
|
2006-09-14 05:53:02 +00:00
|
|
|
}
|
2006-09-14 05:55:06 +00:00
|
|
|
|
2006-09-14 05:53:10 +00:00
|
|
|
var leakDetector = new LeakDetector(false);
|
2006-09-14 05:53:02 +00:00
|
|
|
|
|
|
|
// Dumps current set of memory leaks.
|
2006-09-14 05:53:10 +00:00
|
|
|
function dumpMemoryLeaks()
|
|
|
|
{
|
2006-09-14 05:55:06 +00:00
|
|
|
leakDetector.dumpLeaks();
|
2006-09-14 05:53:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Traces all objects reachable from the chrome document.
|
|
|
|
function traceChrome()
|
|
|
|
{
|
2006-09-14 05:55:06 +00:00
|
|
|
leakDetector.traceObject(document, leakDetector.verbose);
|
2006-09-14 05:53:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Traces all objects reachable from the content document.
|
|
|
|
function traceDocument()
|
|
|
|
{
|
2006-09-14 05:55:06 +00:00
|
|
|
// keep the chrome document out of the dump.
|
|
|
|
leakDetector.markObject(document, true);
|
|
|
|
leakDetector.traceObject(_content, leakDetector.verbose);
|
|
|
|
leakDetector.markObject(document, false);
|
1999-10-15 21:35:11 +00:00
|
|
|
}
|
2006-09-14 05:51:02 +00:00
|
|
|
|
2006-09-14 05:53:10 +00:00
|
|
|
// Controls whether or not we do verbose tracing.
|
|
|
|
function traceVerbose(verbose)
|
2006-09-14 05:53:02 +00:00
|
|
|
{
|
2006-09-14 05:55:06 +00:00
|
|
|
leakDetector.verbose = (verbose == "true");
|
2006-09-14 05:53:02 +00:00
|
|
|
}
|
|
|
|
|
2006-09-14 05:51:02 +00:00
|
|
|
var consoleListener = {
|
2006-09-14 05:55:06 +00:00
|
|
|
observe: function (aMsgObject)
|
|
|
|
{
|
|
|
|
const nsIScriptError = Components.interfaces.nsIScriptError;
|
|
|
|
var scriptError = aMsgObject.QueryInterface(nsIScriptError);
|
|
|
|
var isWarning = scriptError.flags & nsIScriptError.warningFlag != 0;
|
|
|
|
if (!isWarning) {
|
|
|
|
var statusbarDisplay = document.getElementById("statusbar-display");
|
|
|
|
statusbarDisplay.setAttribute("error", "true");
|
|
|
|
statusbarDisplay.addEventListener("click", loadErrorConsole, true);
|
|
|
|
statusbarDisplay.value = bundle.GetStringFromName("jserror");
|
|
|
|
this.isShowingError = true;
|
|
|
|
}
|
|
|
|
},
|
2006-09-14 05:51:02 +00:00
|
|
|
|
|
|
|
// whether or not an error alert is being displayed
|
2006-09-14 05:53:12 +00:00
|
|
|
isShowingError: false
|
2006-09-14 05:55:06 +00:00
|
|
|
|
2006-09-14 05:51:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
function initConsoleListener()
|
|
|
|
{
|
2006-09-14 05:55:06 +00:00
|
|
|
var consoleService = Components.classes["@mozilla.org/consoleservice;1"]
|
|
|
|
.getService(Components.interfaces.nsIConsoleService);
|
2006-09-14 05:51:02 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* XXX - console launch hookup requires some work that I'm not sure how to
|
|
|
|
* do.
|
|
|
|
*
|
|
|
|
* 1) ideally, the notification would disappear when the document that had the
|
|
|
|
* error was flushed. how do I know when this happens? All the nsIScriptError
|
|
|
|
* object I get tells me is the URL. Where is it located in the content area?
|
|
|
|
* 2) the notification service should not display chrome script errors.
|
2006-09-14 05:55:06 +00:00
|
|
|
* web developers and users are not interested in the failings of our shitty,
|
2006-09-14 05:51:02 +00:00
|
|
|
* exception unsafe js. One could argue that this should also extend to
|
|
|
|
* the console by default (although toggle-able via setting for chrome authors)
|
|
|
|
* At any rate, no status indication should be given for chrome script
|
2006-09-14 05:55:06 +00:00
|
|
|
* errors.
|
|
|
|
*
|
|
|
|
* As a result I am commenting out this for the moment.
|
|
|
|
**/
|
2006-09-14 05:51:02 +00:00
|
|
|
//if (consoleService)
|
|
|
|
// consoleService.registerListener(consoleListener);
|
2006-09-14 05:55:06 +00:00
|
|
|
}
|
2006-09-14 05:51:02 +00:00
|
|
|
|
|
|
|
function loadErrorConsole(aEvent)
|
|
|
|
{
|
|
|
|
if (aEvent.detail == 2)
|
|
|
|
toJavaScriptConsole();
|
|
|
|
}
|
|
|
|
|
|
|
|
function clearErrorNotification()
|
|
|
|
{
|
|
|
|
var statusbarDisplay = document.getElementById("statusbar-display");
|
|
|
|
statusbarDisplay.removeAttribute("error");
|
|
|
|
statusbarDisplay.removeEventListener("click", loadErrorConsole, true);
|
|
|
|
consoleListener.isShowingError = false;
|
|
|
|
}
|
|
|
|
|
2006-09-14 05:51:12 +00:00
|
|
|
//Posts the currently displayed url to a native widget so third-party apps can observe it.
|
|
|
|
var urlWidgetService = null;
|
2006-09-14 05:52:41 +00:00
|
|
|
try {
|
2006-09-14 05:55:06 +00:00
|
|
|
urlWidgetService = Components.classes["@mozilla.org/urlwidget;1"]
|
|
|
|
.getService(Components.interfaces.nsIUrlWidget);
|
|
|
|
} catch (exception) {
|
|
|
|
//debug("Error getting url widget service: " + exception + "\n");
|
2006-09-14 05:51:12 +00:00
|
|
|
}
|
|
|
|
|
2006-09-14 05:55:06 +00:00
|
|
|
function postURLToNativeWidget()
|
|
|
|
{
|
|
|
|
if (urlWidgetService) {
|
|
|
|
var url = getWebNavigation().currentURI.spec;
|
|
|
|
try {
|
|
|
|
urlWidgetService.SetURLToHiddenControl(url, window);
|
|
|
|
} catch (exception) {
|
|
|
|
debug("SetURLToHiddenControl failed: " + exception + "\n");
|
2006-09-14 05:51:34 +00:00
|
|
|
}
|
2006-09-14 05:55:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function checkForDirectoryListing()
|
|
|
|
{
|
|
|
|
if ("HTTPIndex" in _content &&
|
|
|
|
typeof _content.HTTPIndex == "object" &&
|
|
|
|
!_content.HTTPIndex.constructor) {
|
|
|
|
// Give directory .xul/.js access to browser instance.
|
2006-09-14 05:55:07 +00:00
|
|
|
// XXX The following line leaks (bug 61821), so the next line is a hack
|
|
|
|
// to avoid the leak.
|
|
|
|
// _content.defaultCharacterset = getBrowser().markupDocumentViewer.defaultCharacterSet;
|
|
|
|
_content.defaultCharacterset = getBrowser().docShell.contentViewer.QueryInterface(Components.interfaces.nsIMarkupDocumentViewer).defaultCharacterSet;
|
2006-09-14 05:55:06 +00:00
|
|
|
_content.parentWindow = window;
|
|
|
|
}
|
2006-09-14 05:51:34 +00:00
|
|
|
}
|
|
|
|
|
2006-09-14 05:51:30 +00:00
|
|
|
/**
|
|
|
|
* Content area tooltip.
|
|
|
|
* XXX - this must move into XBL binding/equiv! Do not want to pollute
|
|
|
|
* navigator.js with functionality that can be encapsulated into
|
|
|
|
* browser widget. TEMPORARY!
|
|
|
|
**/
|
|
|
|
function FillInHTMLTooltip ( tipElement )
|
|
|
|
{
|
|
|
|
var HTMLNS = "http://www.w3.org/1999/xhtml";
|
|
|
|
var XULNS = "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";
|
|
|
|
var XLinkNS = "http://www.w3.org/1999/xlink";
|
|
|
|
|
|
|
|
var retVal = false;
|
|
|
|
var tipNode = document.getElementById("HTML_TOOLTIP_tooltipBox");
|
|
|
|
if ( tipNode ) {
|
|
|
|
try {
|
2006-09-14 05:51:31 +00:00
|
|
|
while ( tipNode.hasChildNodes() )
|
2006-09-14 05:51:30 +00:00
|
|
|
tipNode.removeChild( tipNode.firstChild );
|
|
|
|
|
|
|
|
var titleText = "";
|
|
|
|
var XLinkTitleText = "";
|
|
|
|
|
2006-09-14 05:52:24 +00:00
|
|
|
while ( !titleText && !XLinkTitleText && tipElement ) {
|
2006-09-14 05:51:30 +00:00
|
|
|
if ( tipElement.nodeType == 1 ) {
|
|
|
|
titleText = tipElement.getAttributeNS(HTMLNS, "title");
|
|
|
|
XLinkTitleText = tipElement.getAttributeNS(XLinkNS, "title");
|
|
|
|
}
|
|
|
|
tipElement = tipElement.parentNode;
|
|
|
|
}
|
|
|
|
|
2006-09-14 05:52:24 +00:00
|
|
|
var texts = [ titleText, XLinkTitleText ];
|
2006-09-14 05:51:30 +00:00
|
|
|
|
|
|
|
for (var i = 0; i < texts.length; i++) {
|
|
|
|
var t = texts[i];
|
|
|
|
if ( t.search(/\S/) >= 0 ) {
|
|
|
|
var tipLineElem = tipNode.ownerDocument.createElementNS(XULNS, "text");
|
|
|
|
tipLineElem.setAttribute("value", t);
|
|
|
|
tipNode.appendChild(tipLineElem);
|
|
|
|
|
|
|
|
retVal = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (e) { retVal = false; }
|
|
|
|
}
|
|
|
|
|
|
|
|
return retVal;
|
|
|
|
}
|
2006-09-14 05:52:28 +00:00
|
|
|
|
2006-09-14 05:55:03 +00:00
|
|
|
function EnableBusyCursor(doEnable)
|
|
|
|
{
|
2006-09-14 05:52:32 +00:00
|
|
|
if (doEnable) {
|
2006-09-14 05:53:16 +00:00
|
|
|
// set the spinning cursor everywhere but mac, we have our own way to
|
|
|
|
// do this thankyouverymuch.
|
2006-09-14 05:55:03 +00:00
|
|
|
if (navigator.platform.indexOf("Mac") > 0) {
|
2006-09-14 05:55:06 +00:00
|
|
|
setCursor("spinning");
|
2006-09-14 05:55:03 +00:00
|
|
|
_content.setCursor("spinning");
|
2006-09-14 05:53:16 +00:00
|
|
|
}
|
2006-09-14 05:55:03 +00:00
|
|
|
} else {
|
2006-09-14 05:55:06 +00:00
|
|
|
setCursor("auto");
|
2006-09-14 05:55:03 +00:00
|
|
|
_content.setCursor("auto");
|
2006-09-14 05:52:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-09-14 05:52:28 +00:00
|
|
|
/**
|
2006-09-14 05:55:06 +00:00
|
|
|
* Use Stylesheet functions.
|
2006-09-14 05:52:28 +00:00
|
|
|
* Written by Tim Hill (bug 6782)
|
|
|
|
**/
|
2006-09-14 05:55:06 +00:00
|
|
|
function stylesheetFillPopup(forDocument, menuPopup, itemNoOptStyles)
|
|
|
|
{
|
|
|
|
var children = menuPopup.childNodes;
|
|
|
|
var i;
|
|
|
|
for (i = 0; i < children.length; ++i) {
|
|
|
|
var child = children[i];
|
|
|
|
if (child.getAttribute("class") == "authssmenuitem")
|
|
|
|
menuPopup.removeChild(child);
|
2006-09-14 05:52:28 +00:00
|
|
|
}
|
|
|
|
|
2006-09-14 05:55:06 +00:00
|
|
|
var noOptionalStyles = true;
|
|
|
|
var styleSheets = forDocument.styleSheets;
|
|
|
|
var currentStyleSheets = [];
|
|
|
|
|
|
|
|
for (i = 0; i < styleSheets.length; ++i) {
|
|
|
|
var currentStyleSheet = styleSheets[i];
|
|
|
|
|
|
|
|
if (currentStyleSheet.title) {
|
|
|
|
if (!currentStyleSheet.disabled)
|
|
|
|
noOptionalStyles = false;
|
|
|
|
|
|
|
|
var lastWithSameTitle;
|
|
|
|
if (currentStyleSheet.title in currentStyleSheets)
|
|
|
|
lastWithSameTitle = currentStyleSheets[currentStyleSheet.title];
|
|
|
|
|
|
|
|
if (!lastWithSameTitle) {
|
|
|
|
var menuItem = document.createElement("menuitem");
|
|
|
|
menuItem.setAttribute("value", currentStyleSheet.title);
|
|
|
|
menuItem.setAttribute("data", currentStyleSheet.title);
|
|
|
|
menuItem.setAttribute("type", "radio");
|
|
|
|
menuItem.setAttribute("checked", !currentStyleSheet.disabled);
|
|
|
|
menuItem.setAttribute("class", "authssmenuitem");
|
|
|
|
menuItem.setAttribute("name", "authorstyle");
|
|
|
|
menuItem.setAttribute("oncommand", "stylesheetSwitch(_content.document, this.getAttribute('data'))");
|
|
|
|
menuPopup.appendChild(menuItem);
|
|
|
|
currentStyleSheets[currentStyleSheet.title] = menuItem;
|
|
|
|
} else {
|
|
|
|
if (currentStyleSheet.disabled)
|
|
|
|
lastWithSameTitle.setAttribute("checked", false);
|
|
|
|
}
|
2006-09-14 05:52:28 +00:00
|
|
|
}
|
|
|
|
}
|
2006-09-14 05:55:06 +00:00
|
|
|
itemNoOptStyles.setAttribute("checked", noOptionalStyles);
|
2006-09-14 05:52:28 +00:00
|
|
|
}
|
|
|
|
|
2006-09-14 05:55:06 +00:00
|
|
|
function stylesheetSwitch(forDocument, title)
|
|
|
|
{
|
|
|
|
var docStyleSheets = forDocument.styleSheets;
|
2006-09-14 05:52:28 +00:00
|
|
|
|
2006-09-14 05:55:06 +00:00
|
|
|
for (var i = 0; i < docStyleSheets.length; ++i) {
|
|
|
|
var docStyleSheet = docStyleSheets[i];
|
|
|
|
|
|
|
|
if (docStyleSheet.title)
|
|
|
|
docStyleSheet.disabled = (docStyleSheet.title != title);
|
|
|
|
else if (docStyleSheet.disabled)
|
|
|
|
docStyleSheet.disabled = false;
|
|
|
|
}
|
2006-09-14 05:52:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function applyTheme(themeName)
|
|
|
|
{
|
2006-09-14 05:55:03 +00:00
|
|
|
var chromeRegistry = Components.classes["@mozilla.org/chrome/chrome-registry;1"]
|
|
|
|
.getService(Components.interfaces.nsIChromeRegistry);
|
2006-09-14 05:52:58 +00:00
|
|
|
|
2006-09-14 05:55:03 +00:00
|
|
|
chromeRegistry.selectSkin(themeName.getAttribute("name"), true);
|
|
|
|
chromeRegistry.refreshSkins();
|
2006-09-14 05:52:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function getNewThemes()
|
|
|
|
{
|
2006-09-14 05:55:03 +00:00
|
|
|
loadURI(brandBundle.GetStringFromName("getNewThemesURL"));
|
2006-09-14 05:52:28 +00:00
|
|
|
}
|
2006-09-14 05:53:22 +00:00
|
|
|
|
2006-09-14 05:53:25 +00:00
|
|
|
function URLBarLeftClickHandler(aEvent)
|
2006-09-14 05:53:22 +00:00
|
|
|
{
|
2006-09-14 05:55:03 +00:00
|
|
|
if (pref.GetBoolPref("browser.urlbar.clickSelectsAll")) {
|
2006-09-14 05:53:25 +00:00
|
|
|
var URLBar = aEvent.target;
|
|
|
|
URLBar.setSelectionRange(0, URLBar.value.length);
|
|
|
|
}
|
2006-09-14 05:53:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function URLBarBlurHandler(aEvent)
|
|
|
|
{
|
2006-09-14 05:55:03 +00:00
|
|
|
if (pref.GetBoolPref("browser.urlbar.clickSelectsAll")) {
|
2006-09-14 05:53:25 +00:00
|
|
|
var URLBar = aEvent.target;
|
|
|
|
URLBar.setSelectionRange(0, 0);
|
|
|
|
}
|
2006-09-14 05:54:01 +00:00
|
|
|
}
|
2006-09-14 05:54:28 +00:00
|
|
|
|
|
|
|
// This function gets the "windows hooks" service and has it check its setting
|
|
|
|
// This will do nothing on platforms other than Windows.
|
2006-09-14 05:55:03 +00:00
|
|
|
function checkForDefaultBrowser()
|
|
|
|
{
|
|
|
|
try {
|
|
|
|
Components.classes["@mozilla.org/winhooks;1"]
|
|
|
|
.getService(Components.interfaces.nsIWindowsHooks)
|
|
|
|
.checkSettings(window);
|
|
|
|
} catch(e) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function debug(message)
|
|
|
|
{
|
|
|
|
dump(message);
|
2006-09-14 05:54:28 +00:00
|
|
|
}
|