2002-08-10 06:53:22 +00:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
|
|
|
|
<!--
|
|
|
|
- The contents of this file are subject to the Mozilla 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/MPL/
|
|
|
|
-
|
|
|
|
- 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.
|
|
|
|
-
|
|
|
|
- The Original Code is this file as it was released on
|
|
|
|
- March 28, 2001.
|
|
|
|
-
|
2002-10-11 22:16:19 +00:00
|
|
|
- The Initial Developer of the Original Code is David Hyatt
|
|
|
|
- Portions created by David Hyatt are Copyright (C) 2001
|
|
|
|
- David Hyatt. All Rights Reserved.
|
2002-08-10 06:53:22 +00:00
|
|
|
-
|
|
|
|
- Contributor(s):
|
|
|
|
- David Hyatt <hyatt@netscape.com> (Original Author of <tabbrowser>)
|
|
|
|
-
|
|
|
|
- Alternatively, the contents of this file may be used under the
|
|
|
|
- terms of the GNU General Public License Version 2 or later (the
|
|
|
|
- "GPL"), in which case the provisions of the GPL are applicable
|
|
|
|
- instead of those above. If you wish to allow use of your
|
|
|
|
- version of this file only under the terms of the GPL and not to
|
|
|
|
- allow others to use your version of this file under the MPL,
|
|
|
|
- indicate your decision by deleting the provisions above and
|
|
|
|
- replace them with the notice and other provisions required by
|
|
|
|
- the GPL. If you do not delete the provisions above, a recipient
|
|
|
|
- may use your version of this file under either the MPL or the
|
|
|
|
- GPL.
|
|
|
|
-->
|
|
|
|
|
|
|
|
<!DOCTYPE bindings [
|
|
|
|
<!ENTITY % tabBrowserDTD SYSTEM "chrome://global/locale/tabbrowser.dtd" >
|
|
|
|
%tabBrowserDTD;
|
|
|
|
]>
|
|
|
|
|
|
|
|
<bindings id="tabBrowserBindings"
|
|
|
|
xmlns="http://www.mozilla.org/xbl"
|
|
|
|
xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
|
|
xmlns:xbl="http://www.mozilla.org/xbl">
|
bug 213228: new toolkit independence bug, part 7: update and use the new toolkit widgetry.
tabbrowser.xml: bug 205341, 112697, 210760 by jag, bug 121234, 133503 by neil, bug 206668 by shliang.
not ported: bug 169589, [mac] ctrl-tab no longer moves btwn frames
bug 203960, go back group
bug 104778, remember what user typed when switching tabs.
bug 103720, prefill URI when opening new tab.
2003-08-17 11:11:42 +00:00
|
|
|
|
2002-08-10 06:53:22 +00:00
|
|
|
<binding id="tabbrowser">
|
|
|
|
<resources>
|
|
|
|
<stylesheet src="chrome://global/skin/browser.css"/>
|
|
|
|
</resources>
|
|
|
|
|
|
|
|
<content>
|
|
|
|
<xul:stringbundle src="chrome://global/locale/tabbrowser.properties"/>
|
2004-07-19 15:53:02 +00:00
|
|
|
<xul:tabbox flex="1" xbl:inherits="handleCtrlPageUpDown" eventnode="document"
|
2002-08-10 06:53:22 +00:00
|
|
|
onselect="if (!('updateCurrentBrowser' in this.parentNode) || event.target.localName != 'tabpanels') return; this.parentNode.updateCurrentBrowser();">
|
|
|
|
<xul:hbox class="tabbrowser-strip chromeclass-toolbar" collapsed="true" tooltip="_child" context="_child">
|
|
|
|
<xul:tooltip onpopupshowing="event.preventBubble(); if (document.tooltipNode.hasAttribute('label')) { this.setAttribute('label', document.tooltipNode.getAttribute('label')); return true; } return false;"/>
|
|
|
|
<xul:menupopup onpopupshowing="this.parentNode.parentNode.parentNode.updatePopupMenu(this);">
|
|
|
|
<xul:menuitem label="&newTab.label;" accesskey="&newTab.accesskey;"
|
|
|
|
xbl:inherits="oncommand=onnewtab"/>
|
|
|
|
<xul:menuseparator/>
|
|
|
|
<xul:menuitem label="&reloadTab.label;" accesskey="&reloadTab.accesskey;"
|
|
|
|
oncommand="var tabbrowser = this.parentNode.parentNode.parentNode.parentNode;
|
|
|
|
tabbrowser.reloadTab(tabbrowser.mContextTab);"/>
|
|
|
|
<xul:menuitem label="&reloadAllTabs.label;" accesskey="&reloadAllTabs.accesskey;"
|
|
|
|
tbattr="tabbrowser-multiple"
|
|
|
|
oncommand="var tabbrowser = this.parentNode.parentNode.parentNode.parentNode;
|
|
|
|
tabbrowser.reloadAllTabs(tabbrowser.mContextTab);"/>
|
2003-08-07 19:01:27 +00:00
|
|
|
<xul:menuitem label="&closeOtherTabs.label;" accesskey="&closeOtherTabs.accesskey;"
|
|
|
|
tbattr="tabbrowser-multiple"
|
|
|
|
oncommand="var tabbrowser = this.parentNode.parentNode.parentNode.parentNode;
|
|
|
|
tabbrowser.removeAllTabsBut(tabbrowser.mContextTab);"/>
|
2002-08-10 06:53:22 +00:00
|
|
|
<xul:menuseparator/>
|
|
|
|
<xul:menuitem label="&closeTab.label;" accesskey="&closeTab.accesskey;"
|
|
|
|
tbattr="tabbrowser-multiple"
|
|
|
|
oncommand="var tabbrowser = this.parentNode.parentNode.parentNode.parentNode;
|
|
|
|
tabbrowser.removeTab(tabbrowser.mContextTab);"/>
|
|
|
|
</xul:menupopup>
|
|
|
|
|
|
|
|
<xul:tabs class="tabbrowser-tabs" closebutton="true" flex="1"
|
2003-12-16 00:16:19 +00:00
|
|
|
setfocus="false"
|
2002-08-10 06:53:22 +00:00
|
|
|
onclick="this.parentNode.parentNode.parentNode.onTabClick(event);"
|
bug 213228: new toolkit independence bug, part 7: update and use the new toolkit widgetry.
tabbrowser.xml: bug 205341, 112697, 210760 by jag, bug 121234, 133503 by neil, bug 206668 by shliang.
not ported: bug 169589, [mac] ctrl-tab no longer moves btwn frames
bug 203960, go back group
bug 104778, remember what user typed when switching tabs.
bug 103720, prefill URI when opening new tab.
2003-08-17 11:11:42 +00:00
|
|
|
onmousedown="this.parentNode.parentNode.parentNode.updateContextTab(event);"
|
2002-08-10 06:53:22 +00:00
|
|
|
ondragover="nsDragAndDrop.dragOver(event, this.parentNode.parentNode.parentNode);
|
|
|
|
event.stopPropagation();"
|
|
|
|
ondragdrop="nsDragAndDrop.drop(event, this.parentNode.parentNode.parentNode);
|
|
|
|
event.stopPropagation();"
|
|
|
|
xbl:inherits="onnewtab"
|
2003-10-24 07:43:01 +00:00
|
|
|
ondblclick="if (event.originalTarget.localName != 'tab') this.parentNode.parentNode.parentNode.selectedTab = this.parentNode.parentNode.parentNode.addTab();"
|
2002-08-10 06:53:22 +00:00
|
|
|
onclosetab="var node = this.parentNode;
|
|
|
|
while (node.localName != 'tabbrowser')
|
|
|
|
node = node.parentNode;
|
|
|
|
node.removeCurrentTab();">
|
|
|
|
<xul:tab validate="never"
|
|
|
|
onerror="this.parentNode.parentNode.parentNode.parentNode.addToMissedIconCache(this.getAttribute('image'));
|
|
|
|
this.removeAttribute('image');"
|
|
|
|
maxwidth="250" width="0" minwidth="30" flex="100"
|
|
|
|
class="tabbrowser-tab" label="&untitledTab;" crop="end"/>
|
|
|
|
</xul:tabs>
|
|
|
|
</xul:hbox>
|
|
|
|
<xul:tabpanels flex="1" class="plain">
|
2002-11-08 05:10:08 +00:00
|
|
|
<xul:browser type="content-primary" disablehistory="true" xbl:inherits="tooltip=contenttooltip,contextmenu=contentcontextmenu,autocompletepopup"/>
|
2002-08-10 06:53:22 +00:00
|
|
|
</xul:tabpanels>
|
|
|
|
</xul:tabbox>
|
|
|
|
<children/>
|
|
|
|
</content>
|
|
|
|
<implementation>
|
|
|
|
<field name="mPrefs" readonly="true">
|
|
|
|
Components.classes['@mozilla.org/preferences-service;1']
|
|
|
|
.getService(Components.interfaces.nsIPrefService)
|
|
|
|
.getBranch(null);
|
|
|
|
</field>
|
|
|
|
<field name="mTabBox">
|
|
|
|
document.getAnonymousNodes(this)[1]
|
|
|
|
</field>
|
|
|
|
<field name="mStrip">
|
|
|
|
this.mTabBox.firstChild
|
|
|
|
</field>
|
|
|
|
<field name="mTabContainer">
|
|
|
|
this.mStrip.childNodes[2]
|
|
|
|
</field>
|
|
|
|
<field name="mPanelContainer">
|
|
|
|
this.mTabBox.childNodes[1]
|
|
|
|
</field>
|
|
|
|
<field name="mStringBundle">
|
|
|
|
document.getAnonymousNodes(this)[0]
|
|
|
|
</field>
|
|
|
|
<field name="mCurrentTab">
|
|
|
|
null
|
|
|
|
</field>
|
|
|
|
<field name="mCurrentBrowser">
|
|
|
|
null
|
|
|
|
</field>
|
|
|
|
<field name="mProgressListeners">
|
|
|
|
null
|
|
|
|
</field>
|
|
|
|
<field name="mTabListeners">
|
|
|
|
new Array()
|
|
|
|
</field>
|
|
|
|
<field name="mTabFilters">
|
|
|
|
new Array()
|
|
|
|
</field>
|
|
|
|
<field name="mTabbedMode">
|
|
|
|
false
|
|
|
|
</field>
|
|
|
|
<field name="mIsBusy">
|
|
|
|
false
|
|
|
|
</field>
|
|
|
|
<field name="mMissedIconCache">
|
|
|
|
null
|
|
|
|
</field>
|
|
|
|
<field name="mContextTab">
|
|
|
|
null
|
|
|
|
</field>
|
|
|
|
|
bug 213228: new toolkit independence bug, part 7: update and use the new toolkit widgetry.
tabbrowser.xml: bug 205341, 112697, 210760 by jag, bug 121234, 133503 by neil, bug 206668 by shliang.
not ported: bug 169589, [mac] ctrl-tab no longer moves btwn frames
bug 203960, go back group
bug 104778, remember what user typed when switching tabs.
bug 103720, prefill URI when opening new tab.
2003-08-17 11:11:42 +00:00
|
|
|
<!-- A web progress listener object definition for a given tab. -->
|
2002-08-10 06:53:22 +00:00
|
|
|
<method name="mTabProgressListener">
|
|
|
|
<parameter name="aTab"/>
|
2003-12-05 05:55:54 +00:00
|
|
|
<parameter name="aBrowser"/>
|
2002-08-10 06:53:22 +00:00
|
|
|
<parameter name="aStartsBlank"/>
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
|
|
|
return ({
|
2003-12-05 05:55:54 +00:00
|
|
|
mTabBrowser: this,
|
2002-08-10 06:53:22 +00:00
|
|
|
mTab: aTab,
|
2003-12-05 05:55:54 +00:00
|
|
|
mBrowser: aBrowser,
|
2002-08-10 06:53:22 +00:00
|
|
|
mBlank: aStartsBlank,
|
|
|
|
mIcon: "",
|
|
|
|
|
|
|
|
onProgressChange : function (aWebProgress, aRequest,
|
|
|
|
aCurSelfProgress, aMaxSelfProgress,
|
bug 213228: new toolkit independence bug, part 7: update and use the new toolkit widgetry.
tabbrowser.xml: bug 205341, 112697, 210760 by jag, bug 121234, 133503 by neil, bug 206668 by shliang.
not ported: bug 169589, [mac] ctrl-tab no longer moves btwn frames
bug 203960, go back group
bug 104778, remember what user typed when switching tabs.
bug 103720, prefill URI when opening new tab.
2003-08-17 11:11:42 +00:00
|
|
|
aCurTotalProgress, aMaxTotalProgress)
|
|
|
|
{
|
2002-08-10 06:53:22 +00:00
|
|
|
if (!this.mBlank && this.mTabBrowser.mCurrentTab == this.mTab) {
|
|
|
|
for (var i = 0; i < this.mTabBrowser.mProgressListeners.length; i++) {
|
|
|
|
var p = this.mTabBrowser.mProgressListeners[i];
|
|
|
|
if (p)
|
|
|
|
p.onProgressChange(aWebProgress, aRequest,
|
|
|
|
aCurSelfProgress, aMaxSelfProgress,
|
|
|
|
aCurTotalProgress, aMaxTotalProgress);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
bug 213228: new toolkit independence bug, part 7: update and use the new toolkit widgetry.
tabbrowser.xml: bug 205341, 112697, 210760 by jag, bug 121234, 133503 by neil, bug 206668 by shliang.
not ported: bug 169589, [mac] ctrl-tab no longer moves btwn frames
bug 203960, go back group
bug 104778, remember what user typed when switching tabs.
bug 103720, prefill URI when opening new tab.
2003-08-17 11:11:42 +00:00
|
|
|
|
2002-08-10 06:53:22 +00:00
|
|
|
onStateChange : function(aWebProgress, aRequest, aStateFlags, aStatus)
|
|
|
|
{
|
|
|
|
if (!aRequest)
|
|
|
|
return;
|
|
|
|
|
|
|
|
var oldBlank = this.mBlank;
|
|
|
|
|
|
|
|
const nsIWebProgressListener = Components.interfaces.nsIWebProgressListener;
|
|
|
|
const nsIChannel = Components.interfaces.nsIChannel;
|
|
|
|
|
2003-12-05 05:55:54 +00:00
|
|
|
if (aStateFlags & nsIWebProgressListener.STATE_START &&
|
|
|
|
aStateFlags & nsIWebProgressListener.STATE_IS_NETWORK) {
|
|
|
|
// Reset so we can see if the user typed between the document
|
|
|
|
// load starting and the location changing.
|
|
|
|
if (aWebProgress.DOMWindow == this.mBrowser.contentWindow)
|
|
|
|
this.mBrowser.userTypedValue = null;
|
|
|
|
|
|
|
|
if (!this.mBlank) {
|
|
|
|
this.mTab.setAttribute("busy", "true");
|
|
|
|
this.mTab.label = this.mTabBrowser.mStringBundle.getString("tabs.loading");
|
|
|
|
this.mTab.removeAttribute("image");
|
|
|
|
this.mIcon = "";
|
|
|
|
|
|
|
|
if (this.mTabBrowser.mCurrentTab == this.mTab)
|
|
|
|
this.mTabBrowser.mIsBusy = true;
|
|
|
|
}
|
2002-08-10 06:53:22 +00:00
|
|
|
}
|
|
|
|
else if (aStateFlags & nsIWebProgressListener.STATE_STOP &&
|
|
|
|
aStateFlags & nsIWebProgressListener.STATE_IS_NETWORK) {
|
|
|
|
if (this.mBlank)
|
|
|
|
this.mBlank = false;
|
bug 213228: new toolkit independence bug, part 7: update and use the new toolkit widgetry.
tabbrowser.xml: bug 205341, 112697, 210760 by jag, bug 121234, 133503 by neil, bug 206668 by shliang.
not ported: bug 169589, [mac] ctrl-tab no longer moves btwn frames
bug 203960, go back group
bug 104778, remember what user typed when switching tabs.
bug 103720, prefill URI when opening new tab.
2003-08-17 11:11:42 +00:00
|
|
|
|
2002-08-10 06:53:22 +00:00
|
|
|
this.mTab.removeAttribute("busy");
|
bug 213228: new toolkit independence bug, part 7: update and use the new toolkit widgetry.
tabbrowser.xml: bug 205341, 112697, 210760 by jag, bug 121234, 133503 by neil, bug 206668 by shliang.
not ported: bug 169589, [mac] ctrl-tab no longer moves btwn frames
bug 203960, go back group
bug 104778, remember what user typed when switching tabs.
bug 103720, prefill URI when opening new tab.
2003-08-17 11:11:42 +00:00
|
|
|
|
2002-08-10 06:53:22 +00:00
|
|
|
var location = aRequest.QueryInterface(nsIChannel).URI;
|
|
|
|
if (this.mIcon) {
|
|
|
|
this.mTab.setAttribute("image", this.mIcon);
|
|
|
|
mIcon = "";
|
|
|
|
}
|
|
|
|
else if (this.mTabBrowser.shouldLoadFavIcon(location))
|
bug 213228: new toolkit independence bug, part 7: update and use the new toolkit widgetry.
tabbrowser.xml: bug 205341, 112697, 210760 by jag, bug 121234, 133503 by neil, bug 206668 by shliang.
not ported: bug 169589, [mac] ctrl-tab no longer moves btwn frames
bug 203960, go back group
bug 104778, remember what user typed when switching tabs.
bug 103720, prefill URI when opening new tab.
2003-08-17 11:11:42 +00:00
|
|
|
this.mTabBrowser.loadFavIcon(location, "image", this.mTab);
|
2002-08-10 06:53:22 +00:00
|
|
|
|
|
|
|
if (this.mTab.label == this.mTabBrowser.mStringBundle.getString("tabs.loading"))
|
|
|
|
this.mTabBrowser.setTabTitle(this.mTab);
|
|
|
|
|
|
|
|
if (this.mTabBrowser.mCurrentTab == this.mTab)
|
|
|
|
this.mTabBrowser.mIsBusy = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!oldBlank && this.mTabBrowser.mCurrentTab == this.mTab) {
|
|
|
|
for (var i = 0; i < this.mTabBrowser.mProgressListeners.length; i++) {
|
|
|
|
var p = this.mTabBrowser.mProgressListeners[i];
|
|
|
|
if (p)
|
|
|
|
p.onStateChange(aWebProgress, aRequest, aStateFlags, aStatus);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
,
|
|
|
|
|
|
|
|
onLocationChange : function(aWebProgress, aRequest, aLocation) {
|
|
|
|
if (!this.mBlank && this.mTabBrowser.mCurrentTab == this.mTab) {
|
|
|
|
for (var i = 0; i < this.mTabBrowser.mProgressListeners.length; i++) {
|
|
|
|
var p = this.mTabBrowser.mProgressListeners[i];
|
|
|
|
if (p)
|
|
|
|
p.onLocationChange(aWebProgress, aRequest, aLocation);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
onStatusChange : function(aWebProgress, aRequest, aStatus, aMessage) {
|
bug 213228: new toolkit independence bug, part 7: update and use the new toolkit widgetry.
tabbrowser.xml: bug 205341, 112697, 210760 by jag, bug 121234, 133503 by neil, bug 206668 by shliang.
not ported: bug 169589, [mac] ctrl-tab no longer moves btwn frames
bug 203960, go back group
bug 104778, remember what user typed when switching tabs.
bug 103720, prefill URI when opening new tab.
2003-08-17 11:11:42 +00:00
|
|
|
if (this.mBlank)
|
2002-08-10 06:53:22 +00:00
|
|
|
return;
|
bug 213228: new toolkit independence bug, part 7: update and use the new toolkit widgetry.
tabbrowser.xml: bug 205341, 112697, 210760 by jag, bug 121234, 133503 by neil, bug 206668 by shliang.
not ported: bug 169589, [mac] ctrl-tab no longer moves btwn frames
bug 203960, go back group
bug 104778, remember what user typed when switching tabs.
bug 103720, prefill URI when opening new tab.
2003-08-17 11:11:42 +00:00
|
|
|
|
2002-08-10 06:53:22 +00:00
|
|
|
if (this.mTabBrowser.mCurrentTab == this.mTab) {
|
|
|
|
for (var i = 0; i < this.mTabBrowser.mProgressListeners.length; i++) {
|
|
|
|
var p = this.mTabBrowser.mProgressListeners[i];
|
|
|
|
if (p)
|
|
|
|
p.onStatusChange(aWebProgress, aRequest, aStatus, aMessage);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
bug 213228: new toolkit independence bug, part 7: update and use the new toolkit widgetry.
tabbrowser.xml: bug 205341, 112697, 210760 by jag, bug 121234, 133503 by neil, bug 206668 by shliang.
not ported: bug 169589, [mac] ctrl-tab no longer moves btwn frames
bug 203960, go back group
bug 104778, remember what user typed when switching tabs.
bug 103720, prefill URI when opening new tab.
2003-08-17 11:11:42 +00:00
|
|
|
onSecurityChange : function(aWebProgress, aRequest, aState)
|
|
|
|
{
|
2002-08-10 06:53:22 +00:00
|
|
|
if (this.mTabBrowser.mCurrentTab == this.mTab) {
|
|
|
|
for (var i = 0; i < this.mTabBrowser.mProgressListeners.length; i++) {
|
|
|
|
var p = this.mTabBrowser.mProgressListeners[i];
|
|
|
|
if (p)
|
|
|
|
p.onSecurityChange(aWebProgress, aRequest, aState);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
QueryInterface : function(aIID)
|
|
|
|
{
|
|
|
|
if (aIID.equals(Components.interfaces.nsIWebProgressListener) ||
|
|
|
|
aIID.equals(Components.interfaces.nsISupportsWeakReference) ||
|
|
|
|
aIID.equals(Components.interfaces.nsISupports))
|
|
|
|
return this;
|
|
|
|
throw Components.results.NS_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
|
|
|
<method name="buildFavIconString">
|
|
|
|
<parameter name="aURI"/>
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
|
|
|
var end = (aURI.port == -1) ? "/favicon.ico" : (":" + aURI.port + "/favicon.ico");
|
|
|
|
return aURI.scheme + "://" + aURI.host + end;
|
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
|
|
|
<method name="shouldLoadFavIcon">
|
|
|
|
<parameter name="aURI"/>
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
|
|
|
return (aURI && this.mPrefs.getBoolPref("browser.chrome.site_icons") &&
|
|
|
|
this.mPrefs.getBoolPref("browser.chrome.favicons") &&
|
|
|
|
("schemeIs" in aURI) && (aURI.schemeIs("http") || aURI.schemeIs("https")));
|
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
|
|
|
<method name="loadFavIcon">
|
|
|
|
<parameter name="aURI"/>
|
|
|
|
<parameter name="aAttr"/>
|
|
|
|
<parameter name="aElt"/>
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
|
|
|
var iconURL = this.buildFavIconString(aURI);
|
bug 213228: new toolkit independence bug, part 7: update and use the new toolkit widgetry.
tabbrowser.xml: bug 205341, 112697, 210760 by jag, bug 121234, 133503 by neil, bug 206668 by shliang.
not ported: bug 169589, [mac] ctrl-tab no longer moves btwn frames
bug 203960, go back group
bug 104778, remember what user typed when switching tabs.
bug 103720, prefill URI when opening new tab.
2003-08-17 11:11:42 +00:00
|
|
|
var entry = this.openCacheEntry(iconURL, Components.interfaces.nsICache.ACCESS_READ);
|
2002-08-10 06:53:22 +00:00
|
|
|
if (!entry)
|
|
|
|
aElt.setAttribute(aAttr, iconURL);
|
|
|
|
else {
|
|
|
|
entry.close();
|
|
|
|
entry = null;
|
|
|
|
}
|
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
|
|
|
<method name="addToMissedIconCache">
|
|
|
|
<parameter name="aURI"/>
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
bug 213228: new toolkit independence bug, part 7: update and use the new toolkit widgetry.
tabbrowser.xml: bug 205341, 112697, 210760 by jag, bug 121234, 133503 by neil, bug 206668 by shliang.
not ported: bug 169589, [mac] ctrl-tab no longer moves btwn frames
bug 203960, go back group
bug 104778, remember what user typed when switching tabs.
bug 103720, prefill URI when opening new tab.
2003-08-17 11:11:42 +00:00
|
|
|
var entry = this.openCacheEntry(aURI, Components.interfaces.nsICache.ACCESS_READ_WRITE);
|
|
|
|
if (!entry)
|
|
|
|
return;
|
|
|
|
|
2002-08-10 06:53:22 +00:00
|
|
|
if (entry.accessGranted == Components.interfaces.nsICache.ACCESS_WRITE)
|
|
|
|
// It's a new entry. Just write a bit of metadata in to the entry.
|
|
|
|
entry.setMetaDataElement("Icon", "Missed");
|
|
|
|
entry.markValid();
|
|
|
|
entry.close();
|
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
bug 213228: new toolkit independence bug, part 7: update and use the new toolkit widgetry.
tabbrowser.xml: bug 205341, 112697, 210760 by jag, bug 121234, 133503 by neil, bug 206668 by shliang.
not ported: bug 169589, [mac] ctrl-tab no longer moves btwn frames
bug 203960, go back group
bug 104778, remember what user typed when switching tabs.
bug 103720, prefill URI when opening new tab.
2003-08-17 11:11:42 +00:00
|
|
|
<method name="openCacheEntry">
|
|
|
|
<parameter name="key"/>
|
|
|
|
<parameter name="access"/>
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
|
|
|
try {
|
|
|
|
if (!this.mMissedIconCache) {
|
|
|
|
var cacheService = Components.classes['@mozilla.org/network/cache-service;1'].getService(Components.interfaces.nsICacheService);
|
|
|
|
this.mMissedIconCache = cacheService.createSession("MissedIconCache", Components.interfaces.nsICache.STORE_ANYWHERE, true);
|
|
|
|
if (!this.mMissedIconCache)
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
return this.mMissedIconCache.openCacheEntry(key, access, true);
|
|
|
|
}
|
|
|
|
catch (e) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
2002-08-10 06:53:22 +00:00
|
|
|
<method name="updateTitlebar">
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
|
|
|
var newTitle = "";
|
|
|
|
var docTitle;
|
|
|
|
if (this.docShell.contentViewer)
|
2002-10-11 22:16:19 +00:00
|
|
|
docTitle = this.contentDocument.title;
|
2002-08-10 06:53:22 +00:00
|
|
|
|
2003-08-08 18:59:40 +00:00
|
|
|
if (!docTitle)
|
|
|
|
docTitle = this.ownerDocument.documentElement.getAttribute("titledefault");
|
|
|
|
|
2003-08-12 02:19:28 +00:00
|
|
|
var modifier = this.ownerDocument.documentElement.getAttribute("titlemodifier");
|
2002-08-10 06:53:22 +00:00
|
|
|
if (docTitle) {
|
|
|
|
newTitle += this.ownerDocument.documentElement.getAttribute("titlepreface");
|
|
|
|
newTitle += docTitle;
|
2003-08-12 02:19:28 +00:00
|
|
|
var sep = this.ownerDocument.documentElement.getAttribute("titlemenuseparator");
|
|
|
|
if (modifier)
|
|
|
|
newTitle += sep;
|
2002-08-10 06:53:22 +00:00
|
|
|
}
|
2003-08-12 02:19:28 +00:00
|
|
|
newTitle += modifier;
|
2002-08-10 06:53:22 +00:00
|
|
|
window.title = newTitle;
|
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
bug 213228: new toolkit independence bug, part 7: update and use the new toolkit widgetry.
tabbrowser.xml: bug 205341, 112697, 210760 by jag, bug 121234, 133503 by neil, bug 206668 by shliang.
not ported: bug 169589, [mac] ctrl-tab no longer moves btwn frames
bug 203960, go back group
bug 104778, remember what user typed when switching tabs.
bug 103720, prefill URI when opening new tab.
2003-08-17 11:11:42 +00:00
|
|
|
<method name="updateContextTab">
|
|
|
|
<parameter name="aEvent"/>
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
|
|
|
if (aEvent.originalTarget.localName == "tab")
|
|
|
|
this.mContextTab = aEvent.originalTarget;
|
|
|
|
else
|
|
|
|
this.mContextTab = document.popupNode;
|
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
2002-08-10 06:53:22 +00:00
|
|
|
<method name="updatePopupMenu">
|
|
|
|
<parameter name="aPopupMenu"/>
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
|
|
|
var disabled = this.mPanelContainer.childNodes.length == 1;
|
|
|
|
var menuItems = aPopupMenu.getElementsByAttribute("tbattr", "tabbrowser-multiple");
|
|
|
|
for (var i = 0; i < menuItems.length; i++)
|
|
|
|
menuItems[i].setAttribute("disabled", disabled);
|
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
|
|
|
<method name="updateCurrentBrowser">
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
|
|
|
var newBrowser = this.mPanelContainer.childNodes[this.mPanelContainer.selectedIndex];
|
2002-10-11 21:58:14 +00:00
|
|
|
if (this.mCurrentBrowser == newBrowser)
|
|
|
|
return;
|
|
|
|
|
2003-12-16 00:16:19 +00:00
|
|
|
if (this.mCurrentBrowser) {
|
|
|
|
this.mCurrentBrowser.focusedWindow = document.commandDispatcher.focusedWindow;
|
|
|
|
this.mCurrentBrowser.focusedElement = document.commandDispatcher.focusedElement;
|
2004-07-14 21:44:01 +00:00
|
|
|
if (this.mCurrentBrowser.focusedElement) {
|
|
|
|
// Clear focus outline before we draw on top of it
|
|
|
|
this.mCurrentBrowser.focusedElement.blur();
|
|
|
|
}
|
|
|
|
this.mCurrentBrowser.setAttribute("type", "content");
|
2003-12-16 00:16:19 +00:00
|
|
|
}
|
2002-08-10 06:53:22 +00:00
|
|
|
|
2002-10-11 22:16:19 +00:00
|
|
|
var updatePageReport = false;
|
|
|
|
if ((this.mCurrentBrowser.pageReport && !newBrowser.pageReport) ||
|
|
|
|
(!this.mCurrentBrowser.pageReport && newBrowser.pageReport))
|
|
|
|
updatePageReport = true;
|
|
|
|
|
2002-08-10 06:53:22 +00:00
|
|
|
newBrowser.setAttribute("type", "content-primary");
|
|
|
|
this.mCurrentBrowser = newBrowser;
|
|
|
|
this.mCurrentTab = this.selectedTab;
|
|
|
|
|
2002-10-11 22:16:19 +00:00
|
|
|
if (updatePageReport)
|
|
|
|
this.mCurrentBrowser.updatePageReport();
|
|
|
|
|
2002-08-10 06:53:22 +00:00
|
|
|
// Update the URL bar.
|
|
|
|
var loc = this.mCurrentBrowser.currentURI;
|
2002-10-11 22:16:19 +00:00
|
|
|
if (!loc)
|
|
|
|
loc = ({ spec: "" });
|
|
|
|
|
2002-08-10 06:53:22 +00:00
|
|
|
var webProgress = this.mCurrentBrowser.webProgress;
|
|
|
|
var securityUI = this.mCurrentBrowser.securityUI;
|
|
|
|
var i, p;
|
|
|
|
for (i = 0; i < this.mProgressListeners.length; i++) {
|
|
|
|
p = this.mProgressListeners[i];
|
|
|
|
if (p) {
|
|
|
|
p.onLocationChange(webProgress, null, loc);
|
|
|
|
if (securityUI)
|
|
|
|
p.onSecurityChange(webProgress, null, securityUI.state);
|
|
|
|
var listener = this.mTabListeners[this.mPanelContainer.selectedIndex];
|
|
|
|
if (listener.mIcon)
|
|
|
|
p.onLinkIconAvailable(listener.mIcon);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update the window title.
|
|
|
|
this.updateTitlebar();
|
|
|
|
|
|
|
|
// If the new tab is busy, and our current state is not busy, then
|
|
|
|
// we need to fire a start to all progress listeners.
|
|
|
|
const nsIWebProgressListener = Components.interfaces.nsIWebProgressListener;
|
|
|
|
if (this.mCurrentTab.hasAttribute("busy") && !this.mIsBusy) {
|
|
|
|
this.mIsBusy = true;
|
|
|
|
webProgress = this.mCurrentBrowser.webProgress;
|
|
|
|
for (i = 0; i < this.mProgressListeners.length; i++) {
|
|
|
|
p = this.mProgressListeners[i];
|
|
|
|
if (p)
|
|
|
|
p.onStateChange(webProgress, null, nsIWebProgressListener.STATE_START | nsIWebProgressListener.STATE_IS_NETWORK, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the new tab is not busy, and our current state is busy, then
|
|
|
|
// we need to fire a stop to all progress listeners.
|
|
|
|
if (!this.mCurrentTab.hasAttribute("busy") && this.mIsBusy) {
|
|
|
|
this.mIsBusy = false;
|
|
|
|
webProgress = this.mCurrentBrowser.webProgress;
|
|
|
|
for (i = 0; i < this.mProgressListeners.length; i++) {
|
|
|
|
p = this.mProgressListeners[i];
|
|
|
|
if (p)
|
|
|
|
p.onStateChange(webProgress, null, nsIWebProgressListener.STATE_STOP | nsIWebProgressListener.STATE_IS_NETWORK, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-07-22 13:37:07 +00:00
|
|
|
if (document.commandDispatcher.focusedElement &&
|
|
|
|
document.commandDispatcher.focusedElement.parentNode ==
|
|
|
|
this.mCurrentTab.parentNode) {
|
|
|
|
// The focus is on a tab in the same tab panel
|
|
|
|
return; // If focus was on a tab, switching tabs focuses the new tab
|
2003-12-16 00:16:19 +00:00
|
|
|
}
|
2004-07-14 21:44:01 +00:00
|
|
|
|
|
|
|
var whatToFocus = window.content;
|
2003-12-16 00:16:19 +00:00
|
|
|
|
|
|
|
// Focus the previously focused element or window
|
|
|
|
if (newBrowser.focusedElement) {
|
2004-07-14 21:44:01 +00:00
|
|
|
if (newBrowser.focusedElement.parentNode !=
|
|
|
|
this.mCurrentTab.parentNode) {
|
|
|
|
// Focus the remembered element unless it's in the current tab panel
|
|
|
|
whatToFocus = newBrowser.focusedElement;
|
2003-12-16 00:16:19 +00:00
|
|
|
}
|
|
|
|
}
|
2004-07-14 21:44:01 +00:00
|
|
|
else if (newBrowser.focusedWindow) {
|
|
|
|
whatToFocus = newBrowser.focusedWindow;
|
|
|
|
}
|
|
|
|
|
2004-07-22 13:37:07 +00:00
|
|
|
function setFocus(element) {
|
|
|
|
document.commandDispatcher.suppressFocusScroll = true;
|
|
|
|
Components.lookupMethod(element, "focus").call(element);
|
|
|
|
document.commandDispatcher.suppressFocusScroll = false;
|
|
|
|
}
|
|
|
|
|
2004-07-14 21:44:01 +00:00
|
|
|
// Use setTimeout to avoid focus outline ghosting.
|
|
|
|
setTimeout(setFocus, 0, whatToFocus);
|
2002-08-10 06:53:22 +00:00
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
|
|
|
<method name="onTabClick">
|
|
|
|
<parameter name="event"/>
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
|
|
|
if (event.button != 1 || event.target.localName != 'tab' ||
|
|
|
|
this.mPrefs.getBoolPref("middlemouse.contentLoadURL"))
|
bug 213228: new toolkit independence bug, part 7: update and use the new toolkit widgetry.
tabbrowser.xml: bug 205341, 112697, 210760 by jag, bug 121234, 133503 by neil, bug 206668 by shliang.
not ported: bug 169589, [mac] ctrl-tab no longer moves btwn frames
bug 203960, go back group
bug 104778, remember what user typed when switching tabs.
bug 103720, prefill URI when opening new tab.
2003-08-17 11:11:42 +00:00
|
|
|
return;
|
2002-08-10 06:53:22 +00:00
|
|
|
|
|
|
|
this.removeTab(event.target);
|
|
|
|
event.stopPropagation();
|
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
|
|
|
<method name="onLinkAdded">
|
|
|
|
<parameter name="event"/>
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
2004-05-13 18:34:18 +00:00
|
|
|
// mechanism for reading properties of the underlying XPCOM object
|
|
|
|
// (ignoring potential getters/setters added by malicious content)
|
|
|
|
var safeGetProperty = function(obj, propname) {
|
|
|
|
return Components.lookupMethod(obj, propname).call(obj);
|
|
|
|
};
|
|
|
|
|
2002-08-10 06:53:22 +00:00
|
|
|
var tabBrowser = this.parentNode.parentNode;
|
|
|
|
if (!tabBrowser.mPrefs.getBoolPref("browser.chrome.site_icons"))
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!event.target.rel.match((/(?:^|\s)icon(?:\s|$)/i)))
|
|
|
|
return;
|
|
|
|
|
|
|
|
// We have an icon.
|
|
|
|
var href = event.target.href;
|
|
|
|
if (!href)
|
|
|
|
return;
|
bug 213228: new toolkit independence bug, part 7: update and use the new toolkit widgetry.
tabbrowser.xml: bug 205341, 112697, 210760 by jag, bug 121234, 133503 by neil, bug 206668 by shliang.
not ported: bug 169589, [mac] ctrl-tab no longer moves btwn frames
bug 203960, go back group
bug 104778, remember what user typed when switching tabs.
bug 103720, prefill URI when opening new tab.
2003-08-17 11:11:42 +00:00
|
|
|
|
2004-05-13 18:34:18 +00:00
|
|
|
try {
|
|
|
|
var contentPolicy =
|
|
|
|
Components.classes['@mozilla.org/layout/content-policy;1']
|
|
|
|
.getService(Components.interfaces.nsIContentPolicy);
|
|
|
|
} catch(e) {
|
2002-08-10 06:53:22 +00:00
|
|
|
return; // Refuse to load if we can't do a security check.
|
2004-05-13 18:34:18 +00:00
|
|
|
}
|
bug 213228: new toolkit independence bug, part 7: update and use the new toolkit widgetry.
tabbrowser.xml: bug 205341, 112697, 210760 by jag, bug 121234, 133503 by neil, bug 206668 by shliang.
not ported: bug 169589, [mac] ctrl-tab no longer moves btwn frames
bug 203960, go back group
bug 104778, remember what user typed when switching tabs.
bug 103720, prefill URI when opening new tab.
2003-08-17 11:11:42 +00:00
|
|
|
|
2004-05-13 18:34:18 +00:00
|
|
|
// Verify that the load of this icon is legal.
|
|
|
|
// We check first with the security manager
|
|
|
|
const secMan =
|
|
|
|
Components.classes["@mozilla.org/scriptsecuritymanager;1"]
|
|
|
|
.getService(Components.interfaces.nsIScriptSecurityManager);
|
|
|
|
|
|
|
|
// Get the IOService so we can make URIs
|
|
|
|
const ioService =
|
|
|
|
Components.classes["@mozilla.org/network/io-service;1"]
|
|
|
|
.getService(Components.interfaces.nsIIOService);
|
|
|
|
|
|
|
|
const targetDoc = safeGetProperty(event.target, "ownerDocument");
|
2002-08-10 06:53:22 +00:00
|
|
|
// Make a URI out of our href.
|
2004-05-13 18:34:18 +00:00
|
|
|
var docCharset = safeGetProperty(targetDoc, "characterSet");
|
|
|
|
var uri = ioService.newURI(href, docCharset, null);
|
|
|
|
|
|
|
|
var origURIStr = safeGetProperty(targetDoc, "documentURI");
|
|
|
|
var origURI = ioService.newURI(origURIStr, docCharset, null);
|
|
|
|
|
|
|
|
const nsIScriptSecMan =
|
|
|
|
Components.interfaces.nsIScriptSecurityManager;
|
|
|
|
|
|
|
|
try {
|
|
|
|
secMan.checkLoadURI(origURI, uri, nsIScriptSecMan.STANDARD);
|
|
|
|
} catch(e) {
|
|
|
|
return;
|
|
|
|
}
|
bug 213228: new toolkit independence bug, part 7: update and use the new toolkit widgetry.
tabbrowser.xml: bug 205341, 112697, 210760 by jag, bug 121234, 133503 by neil, bug 206668 by shliang.
not ported: bug 169589, [mac] ctrl-tab no longer moves btwn frames
bug 203960, go back group
bug 104778, remember what user typed when switching tabs.
bug 103720, prefill URI when opening new tab.
2003-08-17 11:11:42 +00:00
|
|
|
|
2002-08-10 06:53:22 +00:00
|
|
|
var notifyListeners = true;
|
|
|
|
var i;
|
bug 213228: new toolkit independence bug, part 7: update and use the new toolkit widgetry.
tabbrowser.xml: bug 205341, 112697, 210760 by jag, bug 121234, 133503 by neil, bug 206668 by shliang.
not ported: bug 169589, [mac] ctrl-tab no longer moves btwn frames
bug 203960, go back group
bug 104778, remember what user typed when switching tabs.
bug 103720, prefill URI when opening new tab.
2003-08-17 11:11:42 +00:00
|
|
|
|
2004-05-13 18:34:18 +00:00
|
|
|
// Security says okay, now ask content policy
|
2002-08-10 06:53:22 +00:00
|
|
|
if (tabBrowser.mTabbedMode) {
|
|
|
|
// We need to update a tab.
|
|
|
|
for (i = 0; i < this.childNodes.length; i++) {
|
|
|
|
if (this.childNodes[i].contentDocument == event.target.ownerDocument) {
|
2004-05-13 18:34:18 +00:00
|
|
|
if (contentPolicy.shouldLoad(Components.interfaces.nsIContentPolicy.TYPE_IMAGE,
|
|
|
|
uri, origURI, event.target,
|
|
|
|
safeGetProperty(event.target, "type"),
|
|
|
|
null) != Components.interfaces.nsIContentPolicy.ACCEPT)
|
2002-08-10 06:53:22 +00:00
|
|
|
return;
|
bug 213228: new toolkit independence bug, part 7: update and use the new toolkit widgetry.
tabbrowser.xml: bug 205341, 112697, 210760 by jag, bug 121234, 133503 by neil, bug 206668 by shliang.
not ported: bug 169589, [mac] ctrl-tab no longer moves btwn frames
bug 203960, go back group
bug 104778, remember what user typed when switching tabs.
bug 103720, prefill URI when opening new tab.
2003-08-17 11:11:42 +00:00
|
|
|
|
2002-08-10 06:53:22 +00:00
|
|
|
var listener = tabBrowser.mTabListeners[i];
|
|
|
|
listener.mIcon = href;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
notifyListeners = (this.childNodes[i] == tabBrowser.mCurrentBrowser);
|
|
|
|
}
|
2004-05-13 18:34:18 +00:00
|
|
|
else if ((this.contentDocument != safeGetProperty(event.originalTarget, "ownerDocument")) ||
|
|
|
|
(contentPolicy.shouldLoad(Components.interfaces.nsIContentPolicy.TYPE_IMAGE,
|
|
|
|
uri, origURI, event.target,
|
|
|
|
safeGetProperty(event.target, "type"),
|
|
|
|
null) != Components.interfaces.nsIContentPolicy.ACCEPT))
|
2002-08-10 06:53:22 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
if (notifyListeners && tabBrowser.mProgressListeners) {
|
|
|
|
for (i = 0; i < tabBrowser.mProgressListeners.length; i++) {
|
|
|
|
var p = tabBrowser.mProgressListeners[i];
|
|
|
|
if (p)
|
|
|
|
p.onLinkIconAvailable(href);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
|
|
|
<method name="onTitleChanged">
|
|
|
|
<parameter name="evt"/>
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
|
|
|
if (evt.target != this.contentDocument)
|
|
|
|
return;
|
|
|
|
|
|
|
|
var i = 0;
|
|
|
|
for ( ; i < this.parentNode.childNodes.length; i++) {
|
|
|
|
if (this.parentNode.childNodes[i] == this)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
var tabBrowser = this.parentNode.parentNode.parentNode;
|
|
|
|
var tab = tabBrowser.mTabContainer.childNodes[i];
|
|
|
|
|
|
|
|
tabBrowser.setTabTitle(tab);
|
|
|
|
|
|
|
|
if (tab == tabBrowser.mCurrentTab)
|
|
|
|
tabBrowser.updateTitlebar();
|
bug 213228: new toolkit independence bug, part 7: update and use the new toolkit widgetry.
tabbrowser.xml: bug 205341, 112697, 210760 by jag, bug 121234, 133503 by neil, bug 206668 by shliang.
not ported: bug 169589, [mac] ctrl-tab no longer moves btwn frames
bug 203960, go back group
bug 104778, remember what user typed when switching tabs.
bug 103720, prefill URI when opening new tab.
2003-08-17 11:11:42 +00:00
|
|
|
]]>
|
2002-08-10 06:53:22 +00:00
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
|
|
|
<method name="setTabTitle">
|
|
|
|
<parameter name="aTab"/>
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
|
|
|
var browser = this.getBrowserForTab(aTab);
|
|
|
|
var crop = "end";
|
2002-10-11 22:16:19 +00:00
|
|
|
var titleViaGetter = browser.contentDocument.__proto__.__lookupGetter__('title').call(browser.contentDocument);
|
|
|
|
var title;
|
|
|
|
if (titleViaGetter)
|
|
|
|
title = titleViaGetter
|
|
|
|
else if (browser.currentURI.spec && browser.currentURI.spec != "about:blank") {
|
|
|
|
title = browser.currentURI.spec;
|
|
|
|
crop = "center";
|
2002-08-10 06:53:22 +00:00
|
|
|
}
|
2002-10-11 22:16:19 +00:00
|
|
|
else
|
|
|
|
title = this.mStringBundle.getString("tabs.untitled");
|
2002-08-10 06:53:22 +00:00
|
|
|
|
|
|
|
aTab.label = title;
|
|
|
|
aTab.setAttribute("crop", crop);
|
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
|
|
|
<method name="setStripVisibilityTo">
|
|
|
|
<parameter name="aShow"/>
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
|
|
|
this.mStrip.collapsed = !aShow;
|
|
|
|
if (aShow) {
|
|
|
|
// XXXdwh temporary unclean dependency on specific menu items in navigator.xul
|
|
|
|
document.getElementById("menu_closeWindow").hidden = false;
|
|
|
|
document.getElementById("menu_close").setAttribute("label", this.mStringBundle.getString("tabs.closeTab"));
|
|
|
|
if (!this.mTabbedMode)
|
|
|
|
this.enterTabbedMode();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// XXXdwh temporary unclean dependency on specific menu items in navigator.xul
|
|
|
|
document.getElementById("menu_closeWindow").hidden = true;
|
|
|
|
document.getElementById("menu_close").setAttribute("label", this.mStringBundle.getString("tabs.close"));
|
|
|
|
}
|
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
|
|
|
<method name="getStripVisibility">
|
|
|
|
<body>
|
|
|
|
return !this.mStrip.collapsed;
|
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
|
|
|
<method name="enterTabbedMode">
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
|
|
|
this.mTabbedMode = true; // Welcome to multi-tabbed mode.
|
|
|
|
|
2002-10-11 22:16:19 +00:00
|
|
|
// Get the first tab all hooked up with a title listener and popup blocking listener.
|
2002-08-10 06:53:22 +00:00
|
|
|
this.mCurrentBrowser.addEventListener("DOMTitleChanged", this.onTitleChanged, false);
|
bug 213228: new toolkit independence bug, part 7: update and use the new toolkit widgetry.
tabbrowser.xml: bug 205341, 112697, 210760 by jag, bug 121234, 133503 by neil, bug 206668 by shliang.
not ported: bug 169589, [mac] ctrl-tab no longer moves btwn frames
bug 203960, go back group
bug 104778, remember what user typed when switching tabs.
bug 103720, prefill URI when opening new tab.
2003-08-17 11:11:42 +00:00
|
|
|
|
2002-08-10 06:53:22 +00:00
|
|
|
this.setTabTitle(this.mCurrentTab);
|
|
|
|
|
|
|
|
// Hook up our favicon.
|
|
|
|
var uri = this.mCurrentBrowser.currentURI;
|
|
|
|
if (this.shouldLoadFavIcon(uri))
|
|
|
|
this.loadFavIcon(uri, "image", this.mCurrentTab);
|
|
|
|
|
|
|
|
var filter;
|
|
|
|
if (this.mTabFilters.length > 0) {
|
|
|
|
// Use the filter hooked up in our addProgressListener
|
|
|
|
filter = this.mTabFilters[0];
|
|
|
|
} else {
|
|
|
|
// create a filter and hook it up to our first browser
|
|
|
|
filter = Components.classes["@mozilla.org/appshell/component/browser-status-filter;1"]
|
|
|
|
.createInstance(Components.interfaces.nsIWebProgress);
|
|
|
|
this.mTabFilters[0] = filter;
|
|
|
|
this.mCurrentBrowser.webProgress.addProgressListener(filter, Components.interfaces.nsIWebProgress.NOTIFY_ALL);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove all our progress listeners from the active browser's filter.
|
|
|
|
if (this.mProgressListeners) {
|
|
|
|
for (var i = 0; i < this.mProgressListeners.length; i++) {
|
|
|
|
var p = this.mProgressListeners[i];
|
|
|
|
if (p)
|
|
|
|
filter.removeProgressListener(p);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Wire up a progress listener to our filter.
|
2003-12-05 05:55:54 +00:00
|
|
|
const listener = this.mTabProgressListener(this.mCurrentTab, this.mCurrentBrowser, false);
|
2002-08-10 06:53:22 +00:00
|
|
|
filter.addProgressListener(listener, Components.interfaces.nsIWebProgress.NOTIFY_ALL);
|
|
|
|
this.mTabListeners[0] = listener;
|
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
|
|
|
<method name="addTab">
|
|
|
|
<parameter name="aURI"/>
|
|
|
|
<parameter name="aReferrerURI"/>
|
2003-07-26 06:42:50 +00:00
|
|
|
<parameter name="aCharset"/>
|
2004-04-20 09:45:12 +00:00
|
|
|
<parameter name="aPostData"/>
|
2002-08-10 06:53:22 +00:00
|
|
|
<body>
|
|
|
|
<![CDATA[
|
|
|
|
var blank = (aURI == "about:blank");
|
|
|
|
|
|
|
|
if (!this.mTabbedMode)
|
|
|
|
this.enterTabbedMode();
|
|
|
|
|
|
|
|
var b = document.createElementNS("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul",
|
|
|
|
"browser");
|
|
|
|
var t = document.createElementNS("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul",
|
|
|
|
"tab");
|
|
|
|
|
|
|
|
if (blank)
|
|
|
|
t.setAttribute("label", this.mStringBundle.getString("tabs.untitled"));
|
|
|
|
else
|
|
|
|
t.setAttribute("label", aURI);
|
bug 213228: new toolkit independence bug, part 7: update and use the new toolkit widgetry.
tabbrowser.xml: bug 205341, 112697, 210760 by jag, bug 121234, 133503 by neil, bug 206668 by shliang.
not ported: bug 169589, [mac] ctrl-tab no longer moves btwn frames
bug 203960, go back group
bug 104778, remember what user typed when switching tabs.
bug 103720, prefill URI when opening new tab.
2003-08-17 11:11:42 +00:00
|
|
|
|
2002-08-10 06:53:22 +00:00
|
|
|
t.setAttribute("crop", "end");
|
|
|
|
t.maxWidth = 250;
|
|
|
|
t.minWidth = 30;
|
|
|
|
t.width = 0;
|
|
|
|
t.setAttribute("flex", "100");
|
|
|
|
t.setAttribute("validate", "never");
|
|
|
|
t.setAttribute("onerror", "this.parentNode.parentNode.parentNode.parentNode.addToMissedIconCache(this.getAttribute('image')); this.removeAttribute('image');");
|
|
|
|
this.mTabContainer.appendChild(t);
|
|
|
|
|
|
|
|
b.setAttribute("type", "content");
|
|
|
|
b.setAttribute("contextmenu", this.getAttribute("contentcontextmenu"));
|
|
|
|
b.setAttribute("tooltip", this.getAttribute("contenttooltip"));
|
2003-02-10 11:19:52 +00:00
|
|
|
b.setAttribute("autocompletepopup", this.getAttribute("autocompletepopup"));
|
2003-08-11 03:57:20 +00:00
|
|
|
|
|
|
|
// To avoid unnecessary string compares on pageload in <browser>, only set the
|
|
|
|
// autocomplete attribute if autocomplete is actually enabled, so we can
|
|
|
|
// just test with |hasAttribute| in <browser>'s load handler.
|
|
|
|
if (this.getAttribute("autocompleteenabled") == "true")
|
|
|
|
b.setAttribute("autocompleteenabled", "true");
|
2002-08-10 06:53:22 +00:00
|
|
|
|
|
|
|
this.mPanelContainer.appendChild(b);
|
|
|
|
|
|
|
|
b.addEventListener("DOMTitleChanged", this.onTitleChanged, false);
|
bug 213228: new toolkit independence bug, part 7: update and use the new toolkit widgetry.
tabbrowser.xml: bug 205341, 112697, 210760 by jag, bug 121234, 133503 by neil, bug 206668 by shliang.
not ported: bug 169589, [mac] ctrl-tab no longer moves btwn frames
bug 203960, go back group
bug 104778, remember what user typed when switching tabs.
bug 103720, prefill URI when opening new tab.
2003-08-17 11:11:42 +00:00
|
|
|
|
2002-08-10 06:53:22 +00:00
|
|
|
if (this.mStrip.collapsed)
|
|
|
|
this.setStripVisibilityTo(true);
|
|
|
|
|
|
|
|
this.mPrefs.setBoolPref("browser.tabs.forceHide", false);
|
bug 213228: new toolkit independence bug, part 7: update and use the new toolkit widgetry.
tabbrowser.xml: bug 205341, 112697, 210760 by jag, bug 121234, 133503 by neil, bug 206668 by shliang.
not ported: bug 169589, [mac] ctrl-tab no longer moves btwn frames
bug 203960, go back group
bug 104778, remember what user typed when switching tabs.
bug 103720, prefill URI when opening new tab.
2003-08-17 11:11:42 +00:00
|
|
|
|
2002-08-10 06:53:22 +00:00
|
|
|
// wire up a progress listener for the new browser object.
|
|
|
|
var position = this.mTabContainer.childNodes.length-1;
|
2003-12-05 05:55:54 +00:00
|
|
|
var tabListener = this.mTabProgressListener(t, b, blank);
|
2002-08-10 06:53:22 +00:00
|
|
|
const filter = Components.classes["@mozilla.org/appshell/component/browser-status-filter;1"]
|
|
|
|
.createInstance(Components.interfaces.nsIWebProgress);
|
|
|
|
filter.addProgressListener(tabListener, Components.interfaces.nsIWebProgress.NOTIFY_ALL);
|
|
|
|
b.webProgress.addProgressListener(filter, Components.interfaces.nsIWebProgress.NOTIFY_ALL);
|
|
|
|
this.mTabListeners[position] = tabListener;
|
|
|
|
this.mTabFilters[position] = filter;
|
|
|
|
|
2004-04-20 09:45:12 +00:00
|
|
|
if (!blank) {
|
|
|
|
if (aPostData === undefined)
|
|
|
|
aPostData = null;
|
2002-08-10 06:53:22 +00:00
|
|
|
b.loadURIWithFlags(aURI, nsIWebNavigation.LOAD_FLAGS_NONE,
|
2004-04-20 09:45:12 +00:00
|
|
|
aReferrerURI, aPostData, null);
|
|
|
|
}
|
2002-08-10 06:53:22 +00:00
|
|
|
|
|
|
|
return t;
|
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
bug 213228: new toolkit independence bug, part 7: update and use the new toolkit widgetry.
tabbrowser.xml: bug 205341, 112697, 210760 by jag, bug 121234, 133503 by neil, bug 206668 by shliang.
not ported: bug 169589, [mac] ctrl-tab no longer moves btwn frames
bug 203960, go back group
bug 104778, remember what user typed when switching tabs.
bug 103720, prefill URI when opening new tab.
2003-08-17 11:11:42 +00:00
|
|
|
|
2003-08-05 07:19:24 +00:00
|
|
|
<method name="removeAllTabsBut">
|
|
|
|
<parameter name="aTab"/>
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
|
|
|
if (aTab.localName != "tab")
|
|
|
|
aTab = this.mCurrentTab;
|
|
|
|
else
|
|
|
|
this.mTabContainer.selectedItem = aTab;
|
|
|
|
|
2004-02-19 21:52:31 +00:00
|
|
|
var childNodes = this.mTabContainer.childNodes;
|
|
|
|
for (var i = childNodes.length - 1; i >= 0; --i) {
|
|
|
|
if (childNodes[i] != aTab)
|
|
|
|
this.removeTab(childNodes[i]);
|
|
|
|
}
|
2003-08-05 07:19:24 +00:00
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
bug 213228: new toolkit independence bug, part 7: update and use the new toolkit widgetry.
tabbrowser.xml: bug 205341, 112697, 210760 by jag, bug 121234, 133503 by neil, bug 206668 by shliang.
not ported: bug 169589, [mac] ctrl-tab no longer moves btwn frames
bug 203960, go back group
bug 104778, remember what user typed when switching tabs.
bug 103720, prefill URI when opening new tab.
2003-08-17 11:11:42 +00:00
|
|
|
|
2002-08-10 06:53:22 +00:00
|
|
|
<method name="removeCurrentTab">
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
|
|
|
return this.removeTab(this.mCurrentTab);
|
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
bug 213228: new toolkit independence bug, part 7: update and use the new toolkit widgetry.
tabbrowser.xml: bug 205341, 112697, 210760 by jag, bug 121234, 133503 by neil, bug 206668 by shliang.
not ported: bug 169589, [mac] ctrl-tab no longer moves btwn frames
bug 203960, go back group
bug 104778, remember what user typed when switching tabs.
bug 103720, prefill URI when opening new tab.
2003-08-17 11:11:42 +00:00
|
|
|
|
2002-08-10 06:53:22 +00:00
|
|
|
<method name="removeTab">
|
|
|
|
<parameter name="aTab"/>
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
|
|
|
if (aTab.localName != "tab")
|
|
|
|
aTab = this.mCurrentTab;
|
|
|
|
|
|
|
|
var l = this.mTabContainer.childNodes.length;
|
|
|
|
if (l == 1) {
|
|
|
|
// hide the tab bar
|
|
|
|
this.mPrefs.setBoolPref("browser.tabs.forceHide", true);
|
|
|
|
this.setStripVisibilityTo(false);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2004-02-19 21:52:31 +00:00
|
|
|
var ds = this.getBrowserForTab(aTab).docShell;
|
|
|
|
|
|
|
|
if (ds.contentViewer && !ds.contentViewer.permitUnload())
|
|
|
|
return;
|
|
|
|
|
2002-08-10 06:53:22 +00:00
|
|
|
if (l == 2) {
|
|
|
|
var autohide = this.mPrefs.getBoolPref("browser.tabs.autoHide");
|
|
|
|
if (autohide)
|
|
|
|
this.setStripVisibilityTo(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
var index = -1;
|
|
|
|
if (this.mCurrentTab == aTab)
|
|
|
|
index = this.mPanelContainer.selectedIndex;
|
|
|
|
else {
|
|
|
|
// Find and locate the tab in our list.
|
|
|
|
for (var i = 0; i < l; i++)
|
|
|
|
if (this.mTabContainer.childNodes[i] == aTab)
|
|
|
|
index = i;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove the tab's filter and progress listener.
|
|
|
|
const filter = this.mTabFilters[index];
|
|
|
|
var oldBrowser = this.mPanelContainer.childNodes[index];
|
|
|
|
oldBrowser.webProgress.removeProgressListener(filter);
|
|
|
|
filter.removeProgressListener(this.mTabListeners[index]);
|
|
|
|
this.mTabFilters.splice(index, 1);
|
|
|
|
this.mTabListeners.splice(index, 1);
|
|
|
|
|
2002-10-11 22:16:19 +00:00
|
|
|
// Remove our title change and blocking listeners
|
2002-08-10 06:53:22 +00:00
|
|
|
oldBrowser.removeEventListener("DOMTitleChanged", this.onTitleChanged, false);
|
bug 213228: new toolkit independence bug, part 7: update and use the new toolkit widgetry.
tabbrowser.xml: bug 205341, 112697, 210760 by jag, bug 121234, 133503 by neil, bug 206668 by shliang.
not ported: bug 169589, [mac] ctrl-tab no longer moves btwn frames
bug 203960, go back group
bug 104778, remember what user typed when switching tabs.
bug 103720, prefill URI when opening new tab.
2003-08-17 11:11:42 +00:00
|
|
|
|
2002-08-10 06:53:22 +00:00
|
|
|
// We are no longer the primary content area.
|
|
|
|
oldBrowser.setAttribute("type", "content");
|
|
|
|
|
|
|
|
// Now select the new tab before nuking the old one.
|
|
|
|
var currentIndex = this.mPanelContainer.selectedIndex;
|
2003-07-23 14:24:05 +00:00
|
|
|
|
2002-08-10 06:53:22 +00:00
|
|
|
var newIndex = -1;
|
|
|
|
if (currentIndex > index)
|
|
|
|
newIndex = currentIndex-1;
|
|
|
|
else if (currentIndex < index)
|
|
|
|
newIndex = currentIndex;
|
2002-10-03 21:15:51 +00:00
|
|
|
else if (index == l - 1)
|
2002-08-10 06:53:22 +00:00
|
|
|
newIndex = index-1;
|
|
|
|
else
|
|
|
|
newIndex = index;
|
|
|
|
|
|
|
|
var oldTab = aTab;
|
bug 213228: new toolkit independence bug, part 7: update and use the new toolkit widgetry.
tabbrowser.xml: bug 205341, 112697, 210760 by jag, bug 121234, 133503 by neil, bug 206668 by shliang.
not ported: bug 169589, [mac] ctrl-tab no longer moves btwn frames
bug 203960, go back group
bug 104778, remember what user typed when switching tabs.
bug 103720, prefill URI when opening new tab.
2003-08-17 11:11:42 +00:00
|
|
|
|
2002-08-10 06:53:22 +00:00
|
|
|
// clean up the before/afterselected attributes before removing the tab
|
|
|
|
oldTab.selected = false;
|
|
|
|
|
2002-10-11 22:16:19 +00:00
|
|
|
// XXX browser's destructor isn't always called, so we force a cleanup ourselves
|
|
|
|
oldBrowser.destroy();
|
|
|
|
|
2002-08-10 06:53:22 +00:00
|
|
|
this.mTabContainer.removeChild(oldTab);
|
|
|
|
this.mPanelContainer.removeChild(oldBrowser);
|
|
|
|
|
|
|
|
this.selectedTab = this.mTabContainer.childNodes[newIndex];
|
2002-10-11 21:58:14 +00:00
|
|
|
this.mPanelContainer.selectedIndex = newIndex;
|
2002-10-11 22:16:19 +00:00
|
|
|
|
2002-10-11 21:58:14 +00:00
|
|
|
this.updateCurrentBrowser();
|
2002-10-11 22:16:19 +00:00
|
|
|
}
|
2002-08-10 06:53:22 +00:00
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
|
|
|
<method name="reloadAllTabs">
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
|
|
|
var l = this.mPanelContainer.childNodes.length;
|
bug 213228: new toolkit independence bug, part 7: update and use the new toolkit widgetry.
tabbrowser.xml: bug 205341, 112697, 210760 by jag, bug 121234, 133503 by neil, bug 206668 by shliang.
not ported: bug 169589, [mac] ctrl-tab no longer moves btwn frames
bug 203960, go back group
bug 104778, remember what user typed when switching tabs.
bug 103720, prefill URI when opening new tab.
2003-08-17 11:11:42 +00:00
|
|
|
for (var i = 0; i < l; i++) {
|
|
|
|
try {
|
|
|
|
this.mPanelContainer.childNodes[i].reload();
|
|
|
|
} catch (e) {
|
|
|
|
// ignore failure to reload so others will be reloaded
|
|
|
|
}
|
|
|
|
}
|
2002-08-10 06:53:22 +00:00
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
|
|
|
<method name="reloadTab">
|
|
|
|
<parameter name="aTab"/>
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
bug 213228: new toolkit independence bug, part 7: update and use the new toolkit widgetry.
tabbrowser.xml: bug 205341, 112697, 210760 by jag, bug 121234, 133503 by neil, bug 206668 by shliang.
not ported: bug 169589, [mac] ctrl-tab no longer moves btwn frames
bug 203960, go back group
bug 104778, remember what user typed when switching tabs.
bug 103720, prefill URI when opening new tab.
2003-08-17 11:11:42 +00:00
|
|
|
if (aTab.localName != "tab")
|
|
|
|
aTab = this.mCurrentTab;
|
|
|
|
|
|
|
|
this.getBrowserForTab(aTab).reload();
|
2002-08-10 06:53:22 +00:00
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
|
|
|
<method name="addProgressListener">
|
|
|
|
<parameter name="aListener"/>
|
|
|
|
<parameter name="aMask"/>
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
|
|
|
if (!this.mProgressListeners) {
|
|
|
|
this.mProgressListeners = [];
|
|
|
|
const autoHide = this.mPrefs.getBoolPref("browser.tabs.autoHide");
|
|
|
|
const forceHide = this.mPrefs.getBoolPref("browser.tabs.forceHide");
|
|
|
|
if (!autoHide && !forceHide)
|
|
|
|
this.setStripVisibilityTo(true);
|
|
|
|
|
|
|
|
// Hook up a listener for <link>s.
|
|
|
|
this.mPanelContainer.addEventListener("DOMLinkAdded", this.onLinkAdded, false);
|
|
|
|
}
|
|
|
|
|
2004-05-06 17:19:00 +00:00
|
|
|
if (!this.mTabbedMode && this.mProgressListeners.length == 1) {
|
|
|
|
// If we are adding a 2nd progress listener, we need to enter tabbed mode
|
|
|
|
// because the browser status filter can only handle one progress listener.
|
|
|
|
// In tabbed mode, mTabProgressListener is used which will iterate over all listeners.
|
|
|
|
this.enterTabbedMode();
|
|
|
|
}
|
|
|
|
|
2002-08-10 06:53:22 +00:00
|
|
|
this.mProgressListeners.push(aListener);
|
|
|
|
|
|
|
|
if (!this.mTabbedMode) {
|
2004-05-06 17:19:00 +00:00
|
|
|
// If someone does this:
|
|
|
|
// addProgressListener, removeProgressListener, addProgressListener
|
|
|
|
// don't create a new filter; reuse the existing filter.
|
|
|
|
if (this.mTabFilters.length == 0) {
|
|
|
|
// hook a filter up to our first browser
|
|
|
|
const filter = Components.classes["@mozilla.org/appshell/component/browser-status-filter;1"]
|
|
|
|
.createInstance(Components.interfaces.nsIWebProgress);
|
|
|
|
this.mTabFilters[0] = filter;
|
|
|
|
this.mCurrentBrowser.webProgress.addProgressListener(filter, Components.interfaces.nsIWebProgress.NOTIFY_ALL);
|
|
|
|
}
|
2002-08-10 06:53:22 +00:00
|
|
|
|
|
|
|
// Directly hook the listener up to the filter for better performance
|
|
|
|
this.mTabFilters[0].addProgressListener(aListener, aMask);
|
|
|
|
}
|
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
|
|
|
<method name="removeProgressListener">
|
|
|
|
<parameter name="aListener"/>
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
|
|
|
if (!this.mProgressListeners) return;
|
|
|
|
for (var i = 0; i < this.mProgressListeners.length; i++) {
|
|
|
|
if (this.mProgressListeners[i] == aListener) {
|
|
|
|
this.mProgressListeners[i] = null;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!this.mTabbedMode)
|
|
|
|
// Don't forget to remove it from the filter we hooked it up to
|
|
|
|
this.mTabFilters[0].removeProgressListener(aListener);
|
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
|
|
|
<method name="getBrowserForTab">
|
|
|
|
<parameter name="aTab"/>
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
|
|
|
if (this.mCurrentTab == aTab)
|
|
|
|
return this.mCurrentBrowser;
|
|
|
|
|
|
|
|
for (var i = 0; i < this.mTabContainer.childNodes.length; i++) {
|
|
|
|
if (this.mTabContainer.childNodes[i] == aTab) {
|
|
|
|
return this.mPanelContainer.childNodes[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
2004-02-19 21:52:31 +00:00
|
|
|
<property name="tabContainer">
|
|
|
|
<getter>
|
|
|
|
return this.mTabContainer;
|
|
|
|
</getter>
|
|
|
|
</property>
|
|
|
|
|
2002-08-10 06:53:22 +00:00
|
|
|
<property name="selectedTab">
|
|
|
|
<getter>
|
|
|
|
return this.mTabBox.selectedTab;
|
|
|
|
</getter>
|
|
|
|
<setter>
|
|
|
|
<![CDATA[
|
|
|
|
// Update the tab
|
|
|
|
this.mTabBox.selectedTab = val;
|
|
|
|
return val;
|
|
|
|
]]>
|
|
|
|
</setter>
|
|
|
|
</property>
|
|
|
|
|
|
|
|
<property name="selectedBrowser"
|
|
|
|
onget="return this.mCurrentBrowser;"
|
|
|
|
readonly="true"/>
|
|
|
|
|
|
|
|
|
|
|
|
<property name="browsers"
|
|
|
|
onget="return this.mPanelContainer.childNodes;"
|
|
|
|
readonly="true"/>
|
|
|
|
|
|
|
|
<!-- Drag and drop observer API -->
|
|
|
|
<!--<method name="onDragStart">
|
|
|
|
<parameter name="aEvent"/>
|
|
|
|
<parameter name="aXferData"/>
|
|
|
|
<parameter name="aDragAction"/>
|
|
|
|
<body/>
|
|
|
|
</method>-->
|
|
|
|
|
|
|
|
<method name="onDragOver">
|
|
|
|
<parameter name="aEvent"/>
|
|
|
|
<parameter name="aFlavour"/>
|
|
|
|
<parameter name="aDragSession"/>
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
|
|
|
return; // Just having this makes our feedback correct.
|
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
|
|
|
<method name="onDrop">
|
|
|
|
<parameter name="aEvent"/>
|
|
|
|
<parameter name="aXferData"/>
|
|
|
|
<parameter name="aDragSession"/>
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
|
|
|
var url = transferUtils.retrieveURLFromData(aXferData.data, aXferData.flavour.contentType);
|
|
|
|
|
|
|
|
// valid urls don't contain spaces ' '; if we have a space it isn't a valid url so bail out
|
bug 213228: new toolkit independence bug, part 7: update and use the new toolkit widgetry.
tabbrowser.xml: bug 205341, 112697, 210760 by jag, bug 121234, 133503 by neil, bug 206668 by shliang.
not ported: bug 169589, [mac] ctrl-tab no longer moves btwn frames
bug 203960, go back group
bug 104778, remember what user typed when switching tabs.
bug 103720, prefill URI when opening new tab.
2003-08-17 11:11:42 +00:00
|
|
|
if (!url || !url.length || url.indexOf(" ", 0) != -1)
|
2002-08-10 06:53:22 +00:00
|
|
|
return;
|
bug 213228: new toolkit independence bug, part 7: update and use the new toolkit widgetry.
tabbrowser.xml: bug 205341, 112697, 210760 by jag, bug 121234, 133503 by neil, bug 206668 by shliang.
not ported: bug 169589, [mac] ctrl-tab no longer moves btwn frames
bug 203960, go back group
bug 104778, remember what user typed when switching tabs.
bug 103720, prefill URI when opening new tab.
2003-08-17 11:11:42 +00:00
|
|
|
|
2002-08-10 06:53:22 +00:00
|
|
|
var bgLoad = this.mPrefs.getBoolPref("browser.tabs.loadInBackground");
|
|
|
|
|
bug 213228: new toolkit independence bug, part 7: update and use the new toolkit widgetry.
tabbrowser.xml: bug 205341, 112697, 210760 by jag, bug 121234, 133503 by neil, bug 206668 by shliang.
not ported: bug 169589, [mac] ctrl-tab no longer moves btwn frames
bug 203960, go back group
bug 104778, remember what user typed when switching tabs.
bug 103720, prefill URI when opening new tab.
2003-08-17 11:11:42 +00:00
|
|
|
var tab = null;
|
|
|
|
if (aEvent.originalTarget.localName != "tab") {
|
2002-08-10 06:53:22 +00:00
|
|
|
// We're adding a new tab.
|
bug 213228: new toolkit independence bug, part 7: update and use the new toolkit widgetry.
tabbrowser.xml: bug 205341, 112697, 210760 by jag, bug 121234, 133503 by neil, bug 206668 by shliang.
not ported: bug 169589, [mac] ctrl-tab no longer moves btwn frames
bug 203960, go back group
bug 104778, remember what user typed when switching tabs.
bug 103720, prefill URI when opening new tab.
2003-08-17 11:11:42 +00:00
|
|
|
tab = this.addTab(getShortcutOrURI(url));
|
2002-08-10 06:53:22 +00:00
|
|
|
}
|
bug 213228: new toolkit independence bug, part 7: update and use the new toolkit widgetry.
tabbrowser.xml: bug 205341, 112697, 210760 by jag, bug 121234, 133503 by neil, bug 206668 by shliang.
not ported: bug 169589, [mac] ctrl-tab no longer moves btwn frames
bug 203960, go back group
bug 104778, remember what user typed when switching tabs.
bug 103720, prefill URI when opening new tab.
2003-08-17 11:11:42 +00:00
|
|
|
else {
|
2002-08-10 06:53:22 +00:00
|
|
|
// Load in an existing tab.
|
bug 213228: new toolkit independence bug, part 7: update and use the new toolkit widgetry.
tabbrowser.xml: bug 205341, 112697, 210760 by jag, bug 121234, 133503 by neil, bug 206668 by shliang.
not ported: bug 169589, [mac] ctrl-tab no longer moves btwn frames
bug 203960, go back group
bug 104778, remember what user typed when switching tabs.
bug 103720, prefill URI when opening new tab.
2003-08-17 11:11:42 +00:00
|
|
|
tab = aEvent.originalTarget;
|
|
|
|
this.getBrowserForTab(tab).loadURI(getShortcutOrURI(url));
|
2002-08-10 06:53:22 +00:00
|
|
|
}
|
bug 213228: new toolkit independence bug, part 7: update and use the new toolkit widgetry.
tabbrowser.xml: bug 205341, 112697, 210760 by jag, bug 121234, 133503 by neil, bug 206668 by shliang.
not ported: bug 169589, [mac] ctrl-tab no longer moves btwn frames
bug 203960, go back group
bug 104778, remember what user typed when switching tabs.
bug 103720, prefill URI when opening new tab.
2003-08-17 11:11:42 +00:00
|
|
|
if (this.mCurrentTab != tab && !bgLoad)
|
|
|
|
this.selectedTab = tab;
|
2002-08-10 06:53:22 +00:00
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
|
|
|
<method name="getSupportedFlavours">
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
|
|
|
var flavourSet = new FlavourSet();
|
|
|
|
flavourSet.appendFlavour("text/x-moz-url");
|
|
|
|
flavourSet.appendFlavour("text/unicode");
|
|
|
|
flavourSet.appendFlavour("application/x-moz-file", "nsIFile");
|
|
|
|
return flavourSet;
|
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
|
|
|
<!-- BEGIN FORWARDED BROWSER PROPERTIES. IF YOU ADD A PROPERTY TO THE BROWSER ELEMENT
|
|
|
|
MAKE SURE TO ADD IT HERE AS WELL. -->
|
|
|
|
<property name="canGoBack"
|
|
|
|
onget="return this.mCurrentBrowser.canGoBack;"
|
|
|
|
readonly="true"/>
|
|
|
|
|
|
|
|
<property name="canGoForward"
|
|
|
|
onget="return this.mCurrentBrowser.canGoForward;"
|
|
|
|
readonly="true"/>
|
|
|
|
|
|
|
|
<method name="goBack">
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
|
|
|
return this.mCurrentBrowser.goBack();
|
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
|
|
|
<method name="goForward">
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
|
|
|
return this.mCurrentBrowser.goForward();
|
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
|
|
|
<method name="reload">
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
|
|
|
return this.mCurrentBrowser.reload();
|
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
|
|
|
<method name="reloadWithFlags">
|
|
|
|
<parameter name="aFlags"/>
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
|
|
|
return this.mCurrentBrowser.reloadWithFlags(aFlags);
|
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
|
|
|
<method name="stop">
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
|
|
|
return this.mCurrentBrowser.stop();
|
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
|
|
|
<!-- throws exception for unknown schemes -->
|
|
|
|
<method name="loadURI">
|
|
|
|
<parameter name="aURI"/>
|
|
|
|
<parameter name="aReferrerURI"/>
|
2003-07-26 06:42:50 +00:00
|
|
|
<parameter name="aCharset"/>
|
2002-08-10 06:53:22 +00:00
|
|
|
<body>
|
|
|
|
<![CDATA[
|
2003-07-26 06:42:50 +00:00
|
|
|
return this.mCurrentBrowser.loadURI(aURI, aReferrerURI, aCharset);
|
2002-08-10 06:53:22 +00:00
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
|
|
|
<!-- throws exception for unknown schemes -->
|
|
|
|
<method name="loadURIWithFlags">
|
|
|
|
<parameter name="aURI"/>
|
|
|
|
<parameter name="aFlags"/>
|
|
|
|
<parameter name="aReferrerURI"/>
|
2003-07-26 06:42:50 +00:00
|
|
|
<parameter name="aCharset"/>
|
2002-08-10 06:53:22 +00:00
|
|
|
<body>
|
|
|
|
<![CDATA[
|
2003-07-26 06:42:50 +00:00
|
|
|
return this.mCurrentBrowser.loadURIWithFlags(aURI, aFlags, aReferrerURI, aCharset);
|
2002-08-10 06:53:22 +00:00
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
|
|
|
<method name="goHome">
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
|
|
|
return this.mCurrentBrowser.goHome();
|
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
|
|
|
<property name="homePage">
|
|
|
|
<getter>
|
|
|
|
<![CDATA[
|
|
|
|
return this.mCurrentBrowser.homePage;
|
|
|
|
]]>
|
|
|
|
</getter>
|
|
|
|
<setter>
|
|
|
|
<![CDATA[
|
|
|
|
this.mCurrentBrowser.homePage = val;
|
|
|
|
return val;
|
|
|
|
]]>
|
|
|
|
</setter>
|
|
|
|
</property>
|
|
|
|
|
|
|
|
<method name="gotoIndex">
|
|
|
|
<parameter name="aIndex"/>
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
|
|
|
return this.mCurrentBrowser.gotoIndex(aIndex);
|
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
2003-02-01 09:11:13 +00:00
|
|
|
|
|
|
|
<method name="attachFormFill">
|
|
|
|
<body><![CDATA[
|
|
|
|
var browsers = this.mPanelContainer.childNodes;
|
2003-08-11 03:57:20 +00:00
|
|
|
for (var i = 0; i < browsers.length; ++i) {
|
|
|
|
var cb = browsers[i];
|
|
|
|
// We can do stuff like this here because we aren't called on every
|
|
|
|
// page load, like <browser>'s |attachFormFill| method is.
|
|
|
|
cb.setAttribute("autocompleteenabled", "true");
|
|
|
|
cb.attachFormFill();
|
|
|
|
}
|
2003-02-01 09:11:13 +00:00
|
|
|
]]></body>
|
|
|
|
</method>
|
|
|
|
|
|
|
|
<method name="detachFormFill">
|
|
|
|
<body><![CDATA[
|
|
|
|
var browsers = this.mPanelContainer.childNodes;
|
2003-08-11 03:57:20 +00:00
|
|
|
for (var i = 0; i < browsers.length; ++i) {
|
|
|
|
var cb = browsers[i];
|
|
|
|
cb.removeAttribute("autocompleteenabled");
|
|
|
|
cb.detachFormFill();
|
|
|
|
}
|
2003-02-01 09:11:13 +00:00
|
|
|
]]></body>
|
|
|
|
</method>
|
2002-08-10 06:53:22 +00:00
|
|
|
|
2002-10-11 22:16:19 +00:00
|
|
|
<property name="pageReport"
|
|
|
|
onget="return this.mCurrentBrowser.pageReport;"
|
|
|
|
readonly="true"/>
|
|
|
|
|
2002-08-10 06:53:22 +00:00
|
|
|
<property name="currentURI"
|
|
|
|
onget="return this.mCurrentBrowser.currentURI;"
|
|
|
|
readonly="true"/>
|
|
|
|
|
|
|
|
<property name="docShell"
|
|
|
|
onget="return this.mCurrentBrowser.docShell"
|
|
|
|
readonly="true"/>
|
|
|
|
|
|
|
|
<property name="webNavigation"
|
|
|
|
onget="return this.mCurrentBrowser.webNavigation"
|
|
|
|
readonly="true"/>
|
|
|
|
|
|
|
|
<property name="webBrowserFind"
|
|
|
|
readonly="true"
|
|
|
|
onget="return this.mCurrentBrowser.webBrowserFind"/>
|
|
|
|
|
|
|
|
<property name="webProgress"
|
|
|
|
readonly="true"
|
|
|
|
onget="return this.mCurrentBrowser.webProgress"/>
|
|
|
|
|
|
|
|
<property name="contentWindow"
|
|
|
|
readonly="true"
|
|
|
|
onget="return this.mCurrentBrowser.contentWindow"/>
|
|
|
|
|
|
|
|
<property name="sessionHistory"
|
|
|
|
onget="return this.mCurrentBrowser.sessionHistory;"
|
|
|
|
readonly="true"/>
|
|
|
|
|
|
|
|
<property name="markupDocumentViewer"
|
|
|
|
onget="return this.mCurrentBrowser.markupDocumentViewer;"
|
|
|
|
readonly="true"/>
|
|
|
|
|
|
|
|
<property name="contentViewerEdit"
|
|
|
|
onget="return this.mCurrentBrowser.contentViewerEdit;"
|
|
|
|
readonly="true"/>
|
|
|
|
|
|
|
|
<property name="contentViewerFile"
|
|
|
|
onget="return this.mCurrentBrowser.contentViewerFile;"
|
|
|
|
readonly="true"/>
|
|
|
|
|
|
|
|
<property name="documentCharsetInfo"
|
|
|
|
onget="return this.mCurrentBrowser.documentCharsetInfo;"
|
|
|
|
readonly="true"/>
|
|
|
|
|
|
|
|
<property name="contentDocument"
|
|
|
|
onget="return this.mCurrentBrowser.contentDocument;"
|
|
|
|
readonly="true"/>
|
|
|
|
|
|
|
|
<property name="securityUI"
|
|
|
|
onget="return this.mCurrentBrowser.securityUI;"
|
|
|
|
readonly="true"/>
|
|
|
|
|
2003-11-20 09:48:16 +00:00
|
|
|
<method name="find">
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
|
|
|
return this.mCurrentBrowser.find();
|
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
|
|
|
<method name="findAgain">
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
|
|
|
return this.mCurrentBrowser.findAgain();
|
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
|
|
|
<method name="findPrevious">
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
|
|
|
return this.mCurrentBrowser.findPrevious();
|
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
|
|
|
<property name="canFindAgain"
|
|
|
|
onget="return this.mCurrentBrowser.canFindAgain;"
|
|
|
|
readonly="true"/>
|
|
|
|
|
2003-12-05 05:55:54 +00:00
|
|
|
<property name="userTypedValue"
|
|
|
|
onget="return this.mCurrentBrowser.userTypedValue;"
|
|
|
|
onset="return this.mCurrentBrowser.userTypedValue = val;"/>
|
|
|
|
|
2002-08-10 06:53:22 +00:00
|
|
|
<constructor>
|
|
|
|
<![CDATA[
|
2003-12-05 05:55:54 +00:00
|
|
|
this.mCurrentBrowser = this.mPanelContainer.firstChild;
|
|
|
|
this.mCurrentTab = this.mTabContainer.firstChild;
|
2004-07-19 15:53:02 +00:00
|
|
|
this.mTabBox.handleCtrlTab = !/Mac/.test(navigator.platform);
|
2002-08-10 06:53:22 +00:00
|
|
|
]]>
|
|
|
|
</constructor>
|
|
|
|
|
|
|
|
<destructor>
|
|
|
|
<![CDATA[
|
|
|
|
for (var i = 0; i < this.mTabListeners.length; ++i) {
|
|
|
|
this.mPanelContainer.childNodes[i].webProgress.removeProgressListener(this.mTabFilters[i]);
|
|
|
|
this.mTabFilters[i].removeProgressListener(this.mTabListeners[i]);
|
|
|
|
this.mTabFilters[i] = null;
|
|
|
|
this.mTabListeners[i] = null;
|
|
|
|
this.mPanelContainer.childNodes[i].removeEventListener("DOMTitleChanged", this.onTitleChanged, false);
|
|
|
|
}
|
|
|
|
this.mPanelContainer.removeEventListener("DOMLinkAdded", this.onLinkAdded, false);
|
|
|
|
]]>
|
|
|
|
</destructor>
|
|
|
|
</implementation>
|
|
|
|
|
|
|
|
<handlers>
|
bug 213228: new toolkit independence bug, part 7: update and use the new toolkit widgetry.
tabbrowser.xml: bug 205341, 112697, 210760 by jag, bug 121234, 133503 by neil, bug 206668 by shliang.
not ported: bug 169589, [mac] ctrl-tab no longer moves btwn frames
bug 203960, go back group
bug 104778, remember what user typed when switching tabs.
bug 103720, prefill URI when opening new tab.
2003-08-17 11:11:42 +00:00
|
|
|
<handler event="keypress" modifiers="control" keycode="VK_F4">
|
|
|
|
<![CDATA[
|
|
|
|
if (this.mTabBox.handleCtrlPageUpDown)
|
|
|
|
this.removeCurrentTab();
|
|
|
|
]]>
|
|
|
|
</handler>
|
2002-08-10 06:53:22 +00:00
|
|
|
|
|
|
|
<handler event="DOMWindowClose">
|
|
|
|
<![CDATA[
|
|
|
|
const browsers = this.browsers;
|
|
|
|
if (browsers.length == 1)
|
|
|
|
return;
|
|
|
|
var i = 0;
|
|
|
|
for (; i < browsers.length; ++i) {
|
|
|
|
if (browsers[i].contentWindow == event.target)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
this.removeTab(this.mTabContainer.childNodes[i]);
|
|
|
|
event.preventDefault();
|
|
|
|
]]>
|
|
|
|
</handler>
|
|
|
|
</handlers>
|
|
|
|
</binding>
|
|
|
|
|
|
|
|
</bindings>
|