2007-08-22 04:58:49 +00:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
|
2007-08-22 04:59:53 +00:00
|
|
|
<!-- ***** BEGIN LICENSE BLOCK *****
|
|
|
|
- Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
2007-08-22 04:58:49 +00:00
|
|
|
-
|
2007-08-22 04:59:53 +00:00
|
|
|
- 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/
|
2007-08-22 04:58:49 +00:00
|
|
|
-
|
2007-08-22 04:59:53 +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.
|
2007-08-22 04:58:49 +00:00
|
|
|
-
|
2007-08-22 04:59:53 +00:00
|
|
|
- The Original Code is this file as it was released on March 28, 2001.
|
|
|
|
-
|
|
|
|
- The Initial Developer of the Original Code is
|
|
|
|
- David Hyatt.
|
|
|
|
- Portions created by the Initial Developer are Copyright (C) 2001
|
|
|
|
- the Initial Developer. All Rights Reserved.
|
2007-08-22 04:58:49 +00:00
|
|
|
-
|
|
|
|
- Contributor(s):
|
|
|
|
- David Hyatt <hyatt@netscape.com> (Original Author of <tabbrowser>)
|
2007-08-22 05:00:10 +00:00
|
|
|
- Mike Connor <mconnor@steelgryphon.com>
|
2007-08-22 05:00:20 +00:00
|
|
|
- Peter Parente <parente@cs.unc.edu>
|
2007-08-22 05:00:21 +00:00
|
|
|
- Giorgio Maone <g.maone@informaction.com>
|
2007-08-22 04:58:49 +00:00
|
|
|
-
|
2007-08-22 04:59:53 +00:00
|
|
|
- Alternatively, the contents of this file may be used under the terms of
|
|
|
|
- either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
- the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
- in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
- of those above. If you wish to allow use of your version of this file only
|
|
|
|
- under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
- use your version of this file under the terms of the MPL, indicate your
|
|
|
|
- decision by deleting the provisions above and replace them with the notice
|
|
|
|
- and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
- the provisions above, a recipient may use your version of this file under
|
|
|
|
- the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
-
|
|
|
|
- ***** END LICENSE BLOCK ***** -->
|
2007-08-22 04:58:49 +00:00
|
|
|
|
|
|
|
<!DOCTYPE bindings [
|
|
|
|
<!ENTITY % tabBrowserDTD SYSTEM "chrome://global/locale/tabbrowser.dtd" >
|
|
|
|
%tabBrowserDTD;
|
2007-08-22 05:00:54 +00:00
|
|
|
<!ENTITY % globalDTD SYSTEM "chrome://global/locale/global.dtd">
|
|
|
|
%globalDTD;
|
2007-08-22 04:58:49 +00:00
|
|
|
]>
|
|
|
|
|
|
|
|
<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.
2007-08-22 04:59:18 +00:00
|
|
|
|
2007-08-22 04:58:49 +00:00
|
|
|
<binding id="tabbrowser">
|
|
|
|
<resources>
|
|
|
|
<stylesheet src="chrome://global/skin/browser.css"/>
|
|
|
|
</resources>
|
|
|
|
|
|
|
|
<content>
|
2007-08-22 05:01:04 +00:00
|
|
|
<xul:stringbundle anonid="tbstringbundle" src="chrome://global/locale/tabbrowser.properties"/>
|
|
|
|
<xul:tabbox anonid="tabbox" flex="1" eventnode="document" xbl:inherits="handleCtrlPageUpDown"
|
2007-08-22 05:01:03 +00:00
|
|
|
onselect="if (!('updateCurrentBrowser' in this.parentNode) || event.target.localName != 'tabpanels') return; this.parentNode.updateCurrentBrowser();">
|
2007-08-22 05:00:40 +00:00
|
|
|
<xul:hbox class="tab-drop-indicator-bar">
|
2007-08-22 05:01:21 +00:00
|
|
|
<xul:hbox class="tab-drop-indicator" mousethrough="always"/>
|
2007-08-22 05:00:55 +00:00
|
|
|
</xul:hbox>
|
2007-08-22 05:00:19 +00:00
|
|
|
<xul:hbox class="tabbrowser-strip" collapsed="true" tooltip="_child" context="_child"
|
2007-08-22 05:01:04 +00:00
|
|
|
anonid="strip"
|
2007-08-22 05:00:10 +00:00
|
|
|
ondraggesture="nsDragAndDrop.startDrag(event, this.parentNode.parentNode); event.stopPropagation();"
|
|
|
|
ondragover="nsDragAndDrop.dragOver(event, this.parentNode.parentNode); event.stopPropagation();"
|
|
|
|
ondragdrop="nsDragAndDrop.drop(event, this.parentNode.parentNode); event.stopPropagation();"
|
|
|
|
ondragexit="nsDragAndDrop.dragExit(event, this.parentNode.parentNode); event.stopPropagation();">
|
2007-08-22 05:00:54 +00:00
|
|
|
<xul:tooltip onpopupshowing="return this.parentNode.parentNode.parentNode.createTooltip(event);"/>
|
2007-08-22 05:00:31 +00:00
|
|
|
<xul:menupopup anonid="tabContextMenu" onpopupshowing="this.parentNode.parentNode.parentNode.updatePopupMenu(this);">
|
2007-08-22 04:58:49 +00:00
|
|
|
<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);"/>
|
2007-08-22 04:59:11 +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);"/>
|
2007-08-22 04:58:49 +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>
|
|
|
|
|
2007-08-22 05:01:04 +00:00
|
|
|
<xul:tabs class="tabbrowser-tabs" flex="1"
|
|
|
|
anonid="tabcontainer"
|
|
|
|
setfocus="false"
|
2007-08-22 04:58:49 +00:00
|
|
|
onclick="this.parentNode.parentNode.parentNode.onTabClick(event);"
|
|
|
|
xbl:inherits="onnewtab"
|
2007-08-22 04:59:34 +00:00
|
|
|
ondblclick="this.parentNode.parentNode.parentNode.onTabBarDblClick(event);"
|
2007-08-22 04:58:49 +00:00
|
|
|
onclosetab="var node = this.parentNode;
|
|
|
|
while (node.localName != 'tabbrowser')
|
|
|
|
node = node.parentNode;
|
|
|
|
node.removeCurrentTab();">
|
2007-08-22 04:59:49 +00:00
|
|
|
<xul:tab selected="true" validate="never"
|
2007-08-22 04:58:49 +00:00
|
|
|
onerror="this.parentNode.parentNode.parentNode.parentNode.addToMissedIconCache(this.getAttribute('image'));
|
|
|
|
this.removeAttribute('image');"
|
2007-08-22 05:01:27 +00:00
|
|
|
maxwidth="250" width="0" minwidth="125" flex="100"
|
2007-08-22 04:58:49 +00:00
|
|
|
class="tabbrowser-tab" label="&untitledTab;" crop="end"/>
|
|
|
|
</xul:tabs>
|
|
|
|
</xul:hbox>
|
2007-08-22 05:01:04 +00:00
|
|
|
<xul:tabpanels flex="1" class="plain" selectedIndex="0" anonid="panelcontainer">
|
2007-08-22 05:01:12 +00:00
|
|
|
<xul:notificationbox flex="1">
|
|
|
|
<xul:browser flex="1" type="content-primary" message="true" disablehistory="true"
|
|
|
|
xbl:inherits="tooltip=contenttooltip,contextmenu=contentcontextmenu,autocompletepopup"/>
|
|
|
|
</xul:notificationbox>
|
2007-08-22 04:58:49 +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>
|
2007-08-22 04:59:55 +00:00
|
|
|
<field name="mURIFixup" readonly="true">
|
|
|
|
Components.classes["@mozilla.org/docshell/urifixup;1"]
|
|
|
|
.getService(Components.interfaces.nsIURIFixup);
|
|
|
|
</field>
|
2007-08-22 05:01:04 +00:00
|
|
|
<field name="mTabBox" readonly="true">
|
|
|
|
document.getAnonymousElementByAttribute(this, "anonid", "tabbox");
|
2007-08-22 04:58:49 +00:00
|
|
|
</field>
|
2007-08-22 05:00:40 +00:00
|
|
|
<field name="mTabDropIndicatorBar">
|
|
|
|
this.mTabBox.childNodes[0]
|
|
|
|
</field>
|
2007-08-22 05:01:04 +00:00
|
|
|
<field name="mStrip" readonly="true">
|
|
|
|
document.getAnonymousElementByAttribute(this, "anonid", "strip");
|
2007-08-22 04:58:49 +00:00
|
|
|
</field>
|
2007-08-22 05:01:04 +00:00
|
|
|
<field name="mTabContainer" readonly="true">
|
|
|
|
document.getAnonymousElementByAttribute(this, "anonid", "tabcontainer");
|
2007-08-22 04:58:49 +00:00
|
|
|
</field>
|
2007-08-22 05:01:04 +00:00
|
|
|
<field name="mPanelContainer" readonly="true">
|
|
|
|
document.getAnonymousElementByAttribute(this, "anonid", "panelcontainer");
|
2007-08-22 05:00:10 +00:00
|
|
|
</field>
|
2007-08-22 05:01:04 +00:00
|
|
|
<field name="mTabs" readonly="true">
|
2007-08-22 05:00:10 +00:00
|
|
|
this.mTabContainer.childNodes
|
2007-08-22 04:58:49 +00:00
|
|
|
</field>
|
|
|
|
<field name="mStringBundle">
|
2007-08-22 05:01:04 +00:00
|
|
|
document.getAnonymousElementByAttribute(this, "anonid", "tbstringbundle");
|
2007-08-22 04:58:49 +00:00
|
|
|
</field>
|
|
|
|
<field name="mCurrentTab">
|
|
|
|
null
|
|
|
|
</field>
|
|
|
|
<field name="mCurrentBrowser">
|
|
|
|
null
|
|
|
|
</field>
|
|
|
|
<field name="mProgressListeners">
|
2007-08-22 05:01:04 +00:00
|
|
|
[]
|
2007-08-22 04:58:49 +00:00
|
|
|
</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>
|
2007-08-22 04:59:40 +00:00
|
|
|
<field name="mModalDialogShowing">
|
|
|
|
false
|
|
|
|
</field>
|
2007-08-22 05:00:10 +00:00
|
|
|
<field name="arrowKeysShouldWrap" readonly="true">
|
|
|
|
#ifdef XP_MACOSX
|
|
|
|
true
|
|
|
|
#else
|
|
|
|
false
|
|
|
|
#endif
|
2007-08-22 05:00:55 +00:00
|
|
|
</field>
|
2007-08-22 05:00:37 +00:00
|
|
|
<field name="mAddProgressListenerWasCalled">
|
|
|
|
false
|
|
|
|
</field>
|
2007-08-22 05:01:17 +00:00
|
|
|
<field name="_browsers">
|
|
|
|
null
|
|
|
|
</field>
|
2007-08-22 05:00:10 +00:00
|
|
|
|
2007-08-22 04:59:41 +00:00
|
|
|
<method name="getBrowserAtIndex">
|
|
|
|
<parameter name="aIndex"/>
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
2007-08-22 05:00:10 +00:00
|
|
|
return this.mTabContainer.childNodes[aIndex].linkedBrowser;
|
2007-08-22 04:59:41 +00:00
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
|
|
|
<method name="getBrowserIndexForDocument">
|
|
|
|
<parameter name="aDocument"/>
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
|
|
|
for (var i = 0; i < this.mPanelContainer.childNodes.length; i++) {
|
|
|
|
if (this.getBrowserAtIndex(i).contentDocument == aDocument) {
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
2007-08-22 05:00:55 +00:00
|
|
|
|
2007-08-22 05:01:15 +00:00
|
|
|
<method name="getBrowserForDocument">
|
|
|
|
<parameter name="aDocument"/>
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
|
|
|
var index = this.getBrowserIndexForDocument(aDocument);
|
|
|
|
if (index < 0)
|
|
|
|
return null;
|
|
|
|
return this.getBrowserAtIndex(index);
|
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
2007-08-22 05:01:12 +00:00
|
|
|
<method name="getNotificationBox">
|
2007-08-22 04:59:41 +00:00
|
|
|
<parameter name="aBrowser"/>
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
2007-08-22 05:01:12 +00:00
|
|
|
if (aBrowser)
|
|
|
|
return aBrowser.parentNode;
|
|
|
|
else if (this.mCurrentBrowser)
|
|
|
|
return this.mCurrentBrowser.parentNode;
|
|
|
|
return null;
|
2007-08-22 04:59:41 +00:00
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
2007-08-22 04:58:49 +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.
2007-08-22 04:59:18 +00:00
|
|
|
<!-- A web progress listener object definition for a given tab. -->
|
2007-08-22 04:58:49 +00:00
|
|
|
<method name="mTabProgressListener">
|
|
|
|
<parameter name="aTab"/>
|
2007-08-22 04:59:22 +00:00
|
|
|
<parameter name="aBrowser"/>
|
2007-08-22 04:58:49 +00:00
|
|
|
<parameter name="aStartsBlank"/>
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
|
|
|
return ({
|
2007-08-22 04:59:22 +00:00
|
|
|
mTabBrowser: this,
|
2007-08-22 04:58:49 +00:00
|
|
|
mTab: aTab,
|
2007-08-22 04:59:22 +00:00
|
|
|
mBrowser: aBrowser,
|
2007-08-22 04:58:49 +00:00
|
|
|
mBlank: aStartsBlank,
|
2007-08-22 04:59:41 +00:00
|
|
|
mLastURI: null,
|
2007-08-22 04:58:49 +00:00
|
|
|
|
2007-08-22 05:01:05 +00:00
|
|
|
// cache flags for correct status bar update after tab switching
|
|
|
|
mStateFlags: 0,
|
|
|
|
mStatus: 0,
|
|
|
|
mMessage: "",
|
|
|
|
mTotalProgress: 0,
|
|
|
|
|
2007-08-22 05:01:09 +00:00
|
|
|
// count of open requests (should always be 0 or 1)
|
|
|
|
mRequestCount: 0,
|
|
|
|
|
2007-08-22 04:58:49 +00:00
|
|
|
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.
2007-08-22 04:59:18 +00:00
|
|
|
aCurTotalProgress, aMaxTotalProgress)
|
|
|
|
{
|
2007-08-22 04:58:49 +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);
|
|
|
|
}
|
|
|
|
}
|
2007-08-22 05:01:05 +00:00
|
|
|
|
|
|
|
this.mTotalProgress = aMaxTotalProgress ? aCurTotalProgress / aMaxTotalProgress : 0;
|
2007-08-22 04:58:49 +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.
2007-08-22 04:59:18 +00:00
|
|
|
|
2007-08-22 04:58:49 +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;
|
|
|
|
|
2007-08-22 05:01:09 +00:00
|
|
|
if (aStateFlags & nsIWebProgressListener.STATE_START) {
|
|
|
|
this.mRequestCount++;
|
|
|
|
}
|
|
|
|
else if (aStateFlags & nsIWebProgressListener.STATE_STOP) {
|
|
|
|
const NS_ERROR_UNKNOWN_HOST = 2152398878;
|
|
|
|
if (--this.mRequestCount > 0 && aStatus == NS_ERROR_UNKNOWN_HOST) {
|
|
|
|
// to prevent bug 235825: wait for the request handled
|
|
|
|
// by the automatic keyword resolver
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// since we (try to) only handle STATE_STOP of the last request,
|
|
|
|
// the count of open requests should now be 0
|
|
|
|
this.mRequestCount = 0;
|
|
|
|
}
|
|
|
|
|
2007-08-22 04:59:43 +00:00
|
|
|
if (aStateFlags & nsIWebProgressListener.STATE_START &&
|
2007-08-22 04:59:22 +00:00
|
|
|
aStateFlags & nsIWebProgressListener.STATE_IS_NETWORK) {
|
2007-08-22 04:59:31 +00:00
|
|
|
// It's okay to clear what the user typed when we start
|
2007-08-22 05:00:35 +00:00
|
|
|
// loading a document. If the user types, this counter gets
|
|
|
|
// set to zero, if the document load ends without an
|
|
|
|
// onLocationChange, this counter gets decremented
|
|
|
|
// (so we keep it while switching tabs after failed loads)
|
2007-08-22 04:59:22 +00:00
|
|
|
if (aWebProgress.DOMWindow == this.mBrowser.contentWindow)
|
2007-08-22 05:00:35 +00:00
|
|
|
this.mBrowser.userTypedClear++;
|
2007-08-22 04:59:22 +00:00
|
|
|
|
|
|
|
if (!this.mBlank) {
|
|
|
|
this.mTab.setAttribute("busy", "true");
|
2007-08-22 05:00:14 +00:00
|
|
|
this.mTabBrowser.updateIcon(this.mTab);
|
2007-08-22 05:00:36 +00:00
|
|
|
this.mTabBrowser.setTabTitleLoading(this.mTab);
|
2007-08-22 04:59:22 +00:00
|
|
|
|
|
|
|
if (this.mTabBrowser.mCurrentTab == this.mTab)
|
|
|
|
this.mTabBrowser.mIsBusy = true;
|
|
|
|
}
|
2007-08-22 04:58:49 +00:00
|
|
|
}
|
|
|
|
else if (aStateFlags & nsIWebProgressListener.STATE_STOP &&
|
|
|
|
aStateFlags & nsIWebProgressListener.STATE_IS_NETWORK) {
|
2007-08-22 05:00:14 +00:00
|
|
|
if (aWebProgress.DOMWindow == this.mBrowser.contentWindow) {
|
2007-08-22 05:00:35 +00:00
|
|
|
// The document is done loading, we no longer want the
|
|
|
|
// value cleared.
|
|
|
|
if (this.mBrowser.userTypedClear > 0)
|
|
|
|
this.mBrowser.userTypedClear--;
|
2007-08-22 04:59:31 +00:00
|
|
|
|
2007-08-22 05:00:14 +00:00
|
|
|
if (!this.mBrowser.mIconURL)
|
|
|
|
this.mTabBrowser.useDefaultIcon(this.mTab);
|
|
|
|
}
|
|
|
|
|
2007-08-22 04:58:49 +00:00
|
|
|
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.
2007-08-22 04:59:18 +00:00
|
|
|
|
2007-08-22 04:58:49 +00:00
|
|
|
this.mTab.removeAttribute("busy");
|
2007-08-22 05:00:14 +00:00
|
|
|
this.mTabBrowser.updateIcon(this.mTab);
|
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.
2007-08-22 04:59:18 +00:00
|
|
|
|
2007-08-22 04:58:49 +00:00
|
|
|
var location = aRequest.QueryInterface(nsIChannel).URI;
|
2007-08-22 04:59:41 +00:00
|
|
|
|
|
|
|
// For keyword URIs clear the user typed value since they will be changed into real URIs
|
|
|
|
if (location.scheme == "keyword")
|
|
|
|
this.mBrowser.userTypedValue = null;
|
|
|
|
|
2007-08-22 04:58:49 +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;
|
|
|
|
}
|
|
|
|
|
2007-08-22 05:01:19 +00:00
|
|
|
if (this.mTabBrowser.mCurrentTab == this.mTab) {
|
2007-08-22 04:58:49 +00:00
|
|
|
for (var i = 0; i < this.mTabBrowser.mProgressListeners.length; i++) {
|
|
|
|
var p = this.mTabBrowser.mProgressListeners[i];
|
2007-08-22 05:01:19 +00:00
|
|
|
if (p && !oldBlank)
|
2007-08-22 04:58:49 +00:00
|
|
|
p.onStateChange(aWebProgress, aRequest, aStateFlags, aStatus);
|
2007-08-22 05:01:19 +00:00
|
|
|
// make sure that the visible status of new blank tabs is correctly set
|
|
|
|
else if (p && "onUpdateCurrentBrowser" in p)
|
|
|
|
p.onUpdateCurrentBrowser(aStateFlags, aStatus, "", 0);
|
2007-08-22 04:58:49 +00:00
|
|
|
}
|
|
|
|
}
|
2007-08-22 05:01:05 +00:00
|
|
|
|
|
|
|
if (aStateFlags & (nsIWebProgressListener.STATE_START |
|
|
|
|
nsIWebProgressListener.STATE_STOP)) {
|
|
|
|
// reset cached temporary values at beginning and end
|
|
|
|
this.mMessage = "";
|
|
|
|
this.mTotalProgress = 0;
|
|
|
|
}
|
|
|
|
this.mStateFlags = aStateFlags;
|
|
|
|
this.mStatus = aStatus;
|
2007-08-22 04:59:43 +00:00
|
|
|
},
|
2007-08-22 04:58:49 +00:00
|
|
|
|
2007-08-22 04:59:43 +00:00
|
|
|
onLocationChange : function(aWebProgress, aRequest, aLocation)
|
|
|
|
{
|
2007-08-22 04:59:31 +00:00
|
|
|
// The document loaded correctly, clear the value if we should
|
2007-08-22 05:00:50 +00:00
|
|
|
if (this.mBrowser.userTypedClear > 0 && aRequest)
|
2007-08-22 04:59:31 +00:00
|
|
|
this.mBrowser.userTypedValue = null;
|
|
|
|
|
2007-08-22 05:00:39 +00:00
|
|
|
if (aWebProgress.DOMWindow == this.mBrowser.contentWindow &&
|
|
|
|
aWebProgress.isLoadingDocument)
|
2007-08-22 05:00:14 +00:00
|
|
|
this.mTabBrowser.setIcon(this.mTab, null);
|
|
|
|
|
2007-08-22 05:01:14 +00:00
|
|
|
// changing location, clear out the missing plugins list
|
|
|
|
this.mTab.missingPlugins = null;
|
|
|
|
|
2007-08-22 04:58:49 +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.onLocationChange(aWebProgress, aRequest, aLocation);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2007-08-22 04:59:43 +00:00
|
|
|
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.
2007-08-22 04:59:18 +00:00
|
|
|
if (this.mBlank)
|
2007-08-22 04:58:49 +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.
2007-08-22 04:59:18 +00:00
|
|
|
|
2007-08-22 04:58:49 +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);
|
|
|
|
}
|
|
|
|
}
|
2007-08-22 05:01:05 +00:00
|
|
|
|
|
|
|
this.mMessage = aMessage;
|
2007-08-22 04:58:49 +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.
2007-08-22 04:59:18 +00:00
|
|
|
onSecurityChange : function(aWebProgress, aRequest, aState)
|
|
|
|
{
|
2007-08-22 04:58:49 +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;
|
|
|
|
}
|
2007-08-22 04:59:43 +00:00
|
|
|
});
|
2007-08-22 04:58:49 +00:00
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
2007-08-22 05:00:55 +00:00
|
|
|
|
2007-08-22 05:00:14 +00:00
|
|
|
<method name="setIcon">
|
|
|
|
<parameter name="aTab"/>
|
2007-08-22 04:58:49 +00:00
|
|
|
<parameter name="aURI"/>
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
2007-08-22 05:00:14 +00:00
|
|
|
var browser = this.getBrowserForTab(aTab);
|
|
|
|
browser.mIconURL = aURI;
|
|
|
|
|
|
|
|
this.updateIcon(aTab);
|
|
|
|
|
|
|
|
for (var i = 0; i < this.mProgressListeners.length; i++) {
|
|
|
|
var p = this.mProgressListeners[i];
|
|
|
|
if ('onLinkIconAvailable' in p)
|
|
|
|
p.onLinkIconAvailable(browser);
|
|
|
|
}
|
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
|
|
|
<method name="updateIcon">
|
|
|
|
<parameter name="aTab"/>
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
|
|
|
var browser = this.getBrowserForTab(aTab);
|
|
|
|
if (!aTab.hasAttribute("busy") && browser.mIconURL)
|
|
|
|
aTab.setAttribute("image", browser.mIconURL);
|
|
|
|
else
|
|
|
|
aTab.removeAttribute("image");
|
2007-08-22 04:58:49 +00:00
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
|
|
|
<method name="shouldLoadFavIcon">
|
|
|
|
<parameter name="aURI"/>
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
|
|
|
return (aURI && this.mPrefs.getBoolPref("browser.chrome.site_icons") &&
|
2007-08-22 04:59:43 +00:00
|
|
|
this.mPrefs.getBoolPref("browser.chrome.favicons") &&
|
2007-08-22 04:58:49 +00:00
|
|
|
("schemeIs" in aURI) && (aURI.schemeIs("http") || aURI.schemeIs("https")));
|
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
2007-08-22 05:00:14 +00:00
|
|
|
<method name="useDefaultIcon">
|
|
|
|
<parameter name="aTab"/>
|
2007-08-22 04:58:49 +00:00
|
|
|
<body>
|
|
|
|
<![CDATA[
|
2007-08-22 05:00:14 +00:00
|
|
|
var browser = this.getBrowserForTab(aTab);
|
|
|
|
if (browser.contentDocument instanceof ImageDocument) {
|
2007-08-22 05:00:32 +00:00
|
|
|
if (this.mPrefs.getBoolPref("browser.chrome.site_icons")) {
|
|
|
|
try {
|
|
|
|
var sz = this.mPrefs.getIntPref("browser.chrome.image_icons.max_size");
|
|
|
|
if (!sz)
|
|
|
|
return;
|
|
|
|
|
|
|
|
var req = browser.contentDocument.imageRequest;
|
|
|
|
if (!req || !req.image ||
|
|
|
|
req.image.width > sz ||
|
|
|
|
req.image.height > sz)
|
|
|
|
return;
|
|
|
|
|
|
|
|
this.setIcon(aTab, browser.currentURI.spec);
|
|
|
|
} catch (e) { }
|
|
|
|
}
|
2007-08-22 05:00:14 +00:00
|
|
|
}
|
|
|
|
else if (this.shouldLoadFavIcon(browser.currentURI)) {
|
|
|
|
var url = browser.currentURI.prePath + "/favicon.ico";
|
|
|
|
if (!this.isIconKnownMissing(url))
|
|
|
|
this.setIcon(aTab, url);
|
|
|
|
}
|
2007-08-22 04:58:49 +00:00
|
|
|
]]>
|
|
|
|
</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.
2007-08-22 04:59:18 +00:00
|
|
|
var entry = this.openCacheEntry(aURI, Components.interfaces.nsICache.ACCESS_READ_WRITE);
|
|
|
|
if (!entry)
|
|
|
|
return;
|
|
|
|
|
2007-08-22 04:58:49 +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.
2007-08-22 04:59:18 +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>
|
|
|
|
|
2007-08-22 05:00:14 +00:00
|
|
|
<method name="isIconKnownMissing">
|
2007-08-22 04:59:41 +00:00
|
|
|
<parameter name="key"/>
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
|
|
|
var e = this.openCacheEntry(key, Components.interfaces.nsICache.ACCESS_READ);
|
|
|
|
if (e) {
|
|
|
|
e.close();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
2007-08-22 04:58:49 +00:00
|
|
|
<method name="updateTitlebar">
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
|
|
|
var newTitle = "";
|
|
|
|
var docTitle;
|
2007-08-22 05:00:43 +00:00
|
|
|
var docElement = this.ownerDocument.documentElement;
|
|
|
|
var sep = docElement.getAttribute("titlemenuseparator");
|
|
|
|
|
2007-08-22 04:58:49 +00:00
|
|
|
if (this.docShell.contentViewer)
|
2007-08-22 04:59:35 +00:00
|
|
|
docTitle = this.contentTitle;
|
2007-08-22 05:00:55 +00:00
|
|
|
|
2007-08-22 04:59:45 +00:00
|
|
|
if (!docTitle)
|
2007-08-22 05:00:43 +00:00
|
|
|
docTitle = docElement.getAttribute("titledefault");
|
2007-08-22 04:59:37 +00:00
|
|
|
|
2007-08-22 05:00:43 +00:00
|
|
|
var modifier = docElement.getAttribute("titlemodifier");
|
2007-08-22 04:58:49 +00:00
|
|
|
if (docTitle) {
|
2007-08-22 05:00:43 +00:00
|
|
|
newTitle += docElement.getAttribute("titlepreface");
|
2007-08-22 04:58:49 +00:00
|
|
|
newTitle += docTitle;
|
2007-08-22 04:59:37 +00:00
|
|
|
if (modifier)
|
|
|
|
newTitle += sep;
|
2007-08-22 04:58:49 +00:00
|
|
|
}
|
2007-08-22 04:59:16 +00:00
|
|
|
newTitle += modifier;
|
2007-08-22 05:00:55 +00:00
|
|
|
|
2007-08-22 05:00:43 +00:00
|
|
|
// If location bar is hidden and the URL type supports a host,
|
|
|
|
// add the scheme and host to the title to prevent spoofing.
|
|
|
|
// XXX https://bugzilla.mozilla.org/show_bug.cgi?id=22183#c239
|
2007-08-22 05:00:46 +00:00
|
|
|
// (only for schemes that support a host)
|
2007-08-22 05:00:43 +00:00
|
|
|
try {
|
|
|
|
if (docElement.getAttribute("chromehidden").indexOf("location") != -1) {
|
2007-08-22 05:00:46 +00:00
|
|
|
var uri = this.mURIFixup.createExposableURI(
|
|
|
|
this.mCurrentBrowser.currentURI);
|
|
|
|
if (uri.host)
|
|
|
|
newTitle = uri.prePath + sep + newTitle;
|
2007-08-22 05:00:43 +00:00
|
|
|
}
|
|
|
|
} catch (e) {}
|
2007-08-22 05:00:55 +00:00
|
|
|
|
2007-08-22 04:59:42 +00:00
|
|
|
this.ownerDocument.title = newTitle;
|
2007-08-22 04:59:41 +00:00
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
2007-08-22 04:58:49 +00:00
|
|
|
<method name="updatePopupMenu">
|
|
|
|
<parameter name="aPopupMenu"/>
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
2007-08-22 04:59:45 +00:00
|
|
|
this.mContextTab = document.popupNode;
|
2007-08-22 04:58:49 +00:00
|
|
|
var disabled = this.mPanelContainer.childNodes.length == 1;
|
|
|
|
var menuItems = aPopupMenu.getElementsByAttribute("tbattr", "tabbrowser-multiple");
|
|
|
|
for (var i = 0; i < menuItems.length; i++)
|
2007-08-22 05:00:04 +00:00
|
|
|
menuItems[i].disabled = disabled;
|
2007-08-22 04:58:49 +00:00
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
|
|
|
<method name="updateCurrentBrowser">
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
2007-08-22 05:00:10 +00:00
|
|
|
var newBrowser = this.getBrowserAtIndex(this.mTabContainer.selectedIndex);
|
2007-08-22 04:58:59 +00:00
|
|
|
if (this.mCurrentBrowser == newBrowser)
|
|
|
|
return;
|
|
|
|
|
2007-08-22 04:59:23 +00:00
|
|
|
if (this.mCurrentBrowser) {
|
2007-08-22 05:00:00 +00:00
|
|
|
// Only save the focused element if it is in our content window
|
|
|
|
// or in an ancestor window.
|
|
|
|
var focusedWindow = document.commandDispatcher.focusedWindow;
|
|
|
|
var saveFocus = false;
|
|
|
|
|
2007-08-22 05:00:23 +00:00
|
|
|
if (focusedWindow && focusedWindow.top == window.content) {
|
2007-08-22 05:00:00 +00:00
|
|
|
saveFocus = true;
|
|
|
|
} else {
|
|
|
|
var contentWindow = window;
|
|
|
|
|
|
|
|
while (contentWindow) {
|
|
|
|
if (contentWindow == focusedWindow) {
|
|
|
|
saveFocus = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (contentWindow.parent == contentWindow) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
contentWindow = contentWindow.parent;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (saveFocus) {
|
|
|
|
// Preserve the currently-focused element or DOM window for
|
|
|
|
// this tab.
|
|
|
|
|
|
|
|
this.mCurrentBrowser.focusedWindow = focusedWindow;
|
|
|
|
this.mCurrentBrowser.focusedElement = document.commandDispatcher.focusedElement;
|
|
|
|
}
|
|
|
|
|
2007-08-22 04:59:44 +00:00
|
|
|
if (this.mCurrentBrowser.focusedElement) {
|
|
|
|
// Clear focus outline before we draw on top of it
|
|
|
|
this.mCurrentBrowser.focusedElement.blur();
|
|
|
|
}
|
2007-08-22 05:01:01 +00:00
|
|
|
this.mCurrentBrowser.setAttribute("type", "content-targetable");
|
2007-08-22 04:59:23 +00:00
|
|
|
}
|
2007-08-22 05:00:55 +00:00
|
|
|
|
2007-08-22 04:59:00 +00:00
|
|
|
var updatePageReport = false;
|
|
|
|
if ((this.mCurrentBrowser.pageReport && !newBrowser.pageReport) ||
|
|
|
|
(!this.mCurrentBrowser.pageReport && newBrowser.pageReport))
|
|
|
|
updatePageReport = true;
|
|
|
|
|
2007-08-22 04:58:49 +00:00
|
|
|
newBrowser.setAttribute("type", "content-primary");
|
|
|
|
this.mCurrentBrowser = newBrowser;
|
|
|
|
this.mCurrentTab = this.selectedTab;
|
2007-08-22 05:00:55 +00:00
|
|
|
|
2007-08-22 04:59:00 +00:00
|
|
|
if (updatePageReport)
|
|
|
|
this.mCurrentBrowser.updatePageReport();
|
|
|
|
|
2007-08-22 04:58:49 +00:00
|
|
|
// Update the URL bar.
|
|
|
|
var loc = this.mCurrentBrowser.currentURI;
|
2007-08-22 05:00:12 +00:00
|
|
|
if (!loc)
|
|
|
|
loc = ({ spec: "" });
|
2007-08-22 04:59:00 +00:00
|
|
|
|
2007-08-22 04:58:49 +00:00
|
|
|
var webProgress = this.mCurrentBrowser.webProgress;
|
|
|
|
var securityUI = this.mCurrentBrowser.securityUI;
|
2007-08-22 05:00:50 +00:00
|
|
|
|
2007-08-22 04:58:49 +00:00
|
|
|
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);
|
2007-08-22 05:01:05 +00:00
|
|
|
|
|
|
|
// make sure that all status indicators are properly updated
|
|
|
|
if ("onUpdateCurrentBrowser" in p) {
|
|
|
|
var listener = this.mTabListeners[this.mTabContainer.selectedIndex] || null;
|
|
|
|
if (listener && listener.mStateFlags)
|
|
|
|
p.onUpdateCurrentBrowser(listener.mStateFlags, listener.mStatus,
|
|
|
|
listener.mMessage, listener.mTotalProgress);
|
|
|
|
}
|
2007-08-22 04:58:49 +00:00
|
|
|
}
|
|
|
|
}
|
2007-08-22 05:00:50 +00:00
|
|
|
|
2007-08-22 04:59:41 +00:00
|
|
|
this._fastFind.setDocShell(this.mCurrentBrowser.docShell);
|
2007-08-22 04:58:49 +00:00
|
|
|
|
|
|
|
// Update the window title.
|
|
|
|
this.updateTitlebar();
|
2007-08-22 04:59:43 +00:00
|
|
|
|
2007-08-22 04:58:49 +00:00
|
|
|
// 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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-08-22 04:59:44 +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
|
2007-08-22 04:59:23 +00:00
|
|
|
}
|
|
|
|
|
2007-08-22 04:59:44 +00:00
|
|
|
var whatToFocus = window.content;
|
|
|
|
|
2007-08-22 04:59:23 +00:00
|
|
|
// Focus the previously focused element or window
|
|
|
|
if (newBrowser.focusedElement) {
|
2007-08-22 04:59:44 +00:00
|
|
|
if (newBrowser.focusedElement.parentNode !=
|
|
|
|
this.mCurrentTab.parentNode) {
|
|
|
|
// Focus the remembered element unless it's in the current tab panel
|
|
|
|
whatToFocus = newBrowser.focusedElement;
|
2007-08-22 04:59:23 +00:00
|
|
|
}
|
|
|
|
}
|
2007-08-22 04:59:44 +00:00
|
|
|
else if (newBrowser.focusedWindow) {
|
|
|
|
whatToFocus = newBrowser.focusedWindow;
|
|
|
|
}
|
|
|
|
|
|
|
|
function setFocus(element) {
|
|
|
|
document.commandDispatcher.suppressFocusScroll = true;
|
2007-08-22 05:00:24 +00:00
|
|
|
element.focus();
|
2007-08-22 04:59:47 +00:00
|
|
|
document.commandDispatcher.suppressFocusScroll = false;
|
2007-08-22 04:59:44 +00:00
|
|
|
}
|
|
|
|
|
2007-08-22 04:59:47 +00:00
|
|
|
// Use setTimeout to avoid focus outline ghosting.
|
|
|
|
setTimeout(setFocus, 0, whatToFocus);
|
2007-08-22 04:58:49 +00:00
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
|
|
|
<method name="onTabClick">
|
|
|
|
<parameter name="event"/>
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
2007-08-22 05:00:51 +00:00
|
|
|
if (event.button != 1 || event.target.localName != '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.
2007-08-22 04:59:18 +00:00
|
|
|
return;
|
2007-08-22 04:58:49 +00:00
|
|
|
|
|
|
|
this.removeTab(event.target);
|
|
|
|
event.stopPropagation();
|
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
|
|
|
<method name="onLinkAdded">
|
|
|
|
<parameter name="event"/>
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
2007-08-22 05:01:04 +00:00
|
|
|
if (!this.mPrefs.getBoolPref("browser.chrome.site_icons"))
|
2007-08-22 04:58:49 +00:00
|
|
|
return;
|
|
|
|
|
2007-08-22 05:00:38 +00:00
|
|
|
if (!event.originalTarget.rel.match((/(?:^|\s)icon(?:\s|$)/i)))
|
2007-08-22 04:58:49 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
// We have an icon.
|
2007-08-22 05:00:38 +00:00
|
|
|
var href = event.originalTarget.href;
|
2007-08-22 04:58:49 +00:00
|
|
|
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.
2007-08-22 04:59:18 +00:00
|
|
|
|
2007-08-22 04:59:33 +00:00
|
|
|
const nsIContentPolicy = Components.interfaces.nsIContentPolicy;
|
2007-08-22 04:59:27 +00:00
|
|
|
try {
|
|
|
|
var contentPolicy =
|
|
|
|
Components.classes['@mozilla.org/layout/content-policy;1']
|
2007-08-22 04:59:33 +00:00
|
|
|
.getService(nsIContentPolicy);
|
2007-08-22 04:59:27 +00:00
|
|
|
} catch(e) {
|
2007-08-22 04:58:49 +00:00
|
|
|
return; // Refuse to load if we can't do a security check.
|
2007-08-22 04:59:27 +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.
2007-08-22 04:59:18 +00:00
|
|
|
|
2007-08-22 04:59:27 +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);
|
|
|
|
|
2007-08-22 05:00:24 +00:00
|
|
|
const targetDoc = event.target.ownerDocument;
|
2007-08-22 04:58:49 +00:00
|
|
|
// Make a URI out of our href.
|
2007-08-22 05:00:24 +00:00
|
|
|
var uri = ioService.newURI(href, targetDoc.characterSet, null);
|
2007-08-22 04:59:27 +00:00
|
|
|
|
2007-08-22 05:00:24 +00:00
|
|
|
var origURI = ioService.newURI(targetDoc.documentURI, targetDoc.characterSet, null);
|
2007-08-22 04:59:27 +00:00
|
|
|
|
|
|
|
const nsIScriptSecMan =
|
|
|
|
Components.interfaces.nsIScriptSecurityManager;
|
|
|
|
|
|
|
|
try {
|
2007-08-22 05:00:30 +00:00
|
|
|
// error pages can load their favicon
|
|
|
|
// to be on the safe side, only allow chrome:// favicons
|
|
|
|
const aboutNeterr = "about:neterror?";
|
|
|
|
if (origURI.spec.substr(0, aboutNeterr.length) != aboutNeterr ||
|
|
|
|
!uri.schemeIs("chrome"))
|
|
|
|
secMan.checkLoadURI(origURI, uri,
|
|
|
|
nsIScriptSecMan.DISALLOW_SCRIPT);
|
2007-08-22 04:59:27 +00:00
|
|
|
} 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.
2007-08-22 04:59:18 +00:00
|
|
|
|
2007-08-22 04:59:27 +00:00
|
|
|
// Security says okay, now ask content policy
|
2007-08-22 04:59:33 +00:00
|
|
|
if (contentPolicy.shouldLoad(nsIContentPolicy.TYPE_IMAGE,
|
|
|
|
uri, origURI, event.target,
|
2007-08-22 05:00:24 +00:00
|
|
|
event.target.type,
|
2007-08-22 04:59:33 +00:00
|
|
|
null) != nsIContentPolicy.ACCEPT)
|
|
|
|
return;
|
|
|
|
|
2007-08-22 05:01:04 +00:00
|
|
|
var browserIndex = this.getBrowserIndexForDocument(targetDoc);
|
2007-08-22 04:59:33 +00:00
|
|
|
// no browser? no favicon.
|
|
|
|
if (browserIndex == -1)
|
2007-08-22 04:58:49 +00:00
|
|
|
return;
|
2007-08-22 05:00:55 +00:00
|
|
|
|
2007-08-22 05:01:04 +00:00
|
|
|
var tab = this.mTabContainer.childNodes[browserIndex];
|
|
|
|
this.setIcon(tab, href);
|
2007-08-22 04:58:49 +00:00
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
|
|
|
<method name="onTitleChanged">
|
|
|
|
<parameter name="evt"/>
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
|
|
|
if (evt.target != this.contentDocument)
|
|
|
|
return;
|
|
|
|
|
|
|
|
var i = 0;
|
2007-08-22 04:59:41 +00:00
|
|
|
for ( ; i < this.parentNode.parentNode.childNodes.length; i++) {
|
2007-08-22 05:01:12 +00:00
|
|
|
if (this.parentNode.parentNode.childNodes[i].firstChild == this)
|
2007-08-22 04:58:49 +00:00
|
|
|
break;
|
|
|
|
}
|
2007-08-22 05:00:55 +00:00
|
|
|
|
2007-08-22 04:59:41 +00:00
|
|
|
var tabBrowser = this.parentNode.parentNode.parentNode.parentNode;
|
2007-08-22 04:58:49 +00:00
|
|
|
|
2007-08-22 05:00:10 +00:00
|
|
|
var tab = document.getAnonymousElementByAttribute(tabBrowser, "linkedpanel", this.parentNode.id);
|
2007-08-22 04:58:49 +00:00
|
|
|
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.
2007-08-22 04:59:18 +00:00
|
|
|
]]>
|
2007-08-22 04:58:49 +00:00
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
2007-08-22 05:00:36 +00:00
|
|
|
<method name="setTabTitleLoading">
|
|
|
|
<parameter name="aTab"/>
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
|
|
|
aTab.label = this.mStringBundle.getString("tabs.loading");
|
|
|
|
aTab.setAttribute("crop", "end");
|
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
2007-08-22 04:58:49 +00:00
|
|
|
<method name="setTabTitle">
|
|
|
|
<parameter name="aTab"/>
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
|
|
|
var browser = this.getBrowserForTab(aTab);
|
|
|
|
var crop = "end";
|
2007-08-22 05:00:12 +00:00
|
|
|
var title = browser.contentDocument.title;
|
2007-08-22 05:00:55 +00:00
|
|
|
|
2007-08-22 04:59:55 +00:00
|
|
|
if (!title) {
|
|
|
|
if (browser.currentURI.spec) {
|
|
|
|
try {
|
|
|
|
title = this.mURIFixup.createExposableURI(browser.currentURI).spec;
|
|
|
|
} catch(ex) {
|
|
|
|
title = browser.currentURI.spec;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (title && title != "about:blank") {
|
|
|
|
// At this point, we now have a URI.
|
|
|
|
// Let's try to unescape it using a character set
|
|
|
|
// in case the URI is not ASCII.
|
|
|
|
try {
|
2007-08-22 05:00:24 +00:00
|
|
|
var characterSet = browser.contentDocument.characterSet;
|
2007-08-22 04:59:55 +00:00
|
|
|
const textToSubURI = Components.classes["@mozilla.org/intl/texttosuburi;1"]
|
|
|
|
.getService(Components.interfaces.nsITextToSubURI);
|
|
|
|
title = textToSubURI.unEscapeNonAsciiURI(characterSet, title);
|
|
|
|
} catch(ex) { /* Do nothing. */ }
|
|
|
|
|
|
|
|
crop = "center";
|
|
|
|
|
|
|
|
} else // Still no title? Fall back to our untitled string.
|
|
|
|
title = this.mStringBundle.getString("tabs.untitled");
|
2007-08-22 04:58:49 +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.
|
|
|
|
|
2007-08-22 04:59:00 +00:00
|
|
|
// Get the first tab all hooked up with a title listener and popup blocking listener.
|
2007-08-22 05:01:16 +00:00
|
|
|
this.mCurrentBrowser.addEventListener("DOMTitleChanged", this.onTitleChanged, true);
|
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.
2007-08-22 04:59:18 +00:00
|
|
|
|
2007-08-22 05:00:36 +00:00
|
|
|
var throbberElement = document.getElementById("navigator-throbber");
|
|
|
|
if (throbberElement && throbberElement.hasAttribute("busy")) {
|
|
|
|
this.mCurrentTab.setAttribute("busy", "true");
|
|
|
|
this.mIsBusy = true;
|
|
|
|
this.setTabTitleLoading(this.mCurrentTab);
|
|
|
|
this.updateIcon(this.mCurrentTab);
|
|
|
|
} else {
|
|
|
|
this.setTabTitle(this.mCurrentTab);
|
|
|
|
this.setIcon(this.mCurrentTab, this.mCurrentBrowser.mIconURL);
|
|
|
|
}
|
2007-08-22 04:58:49 +00:00
|
|
|
|
|
|
|
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.
|
2007-08-22 05:00:33 +00:00
|
|
|
for (var i = 0; i < this.mProgressListeners.length; i++) {
|
|
|
|
var p = this.mProgressListeners[i];
|
|
|
|
if (p)
|
|
|
|
filter.removeProgressListener(p);
|
2007-08-22 04:58:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Wire up a progress listener to our filter.
|
2007-08-22 04:59:43 +00:00
|
|
|
const listener = this.mTabProgressListener(this.mCurrentTab,
|
|
|
|
this.mCurrentBrowser,
|
|
|
|
false);
|
2007-08-22 04:58:49 +00:00
|
|
|
filter.addProgressListener(listener, Components.interfaces.nsIWebProgress.NOTIFY_ALL);
|
|
|
|
this.mTabListeners[0] = listener;
|
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
2007-08-22 05:00:55 +00:00
|
|
|
|
2007-08-22 05:00:28 +00:00
|
|
|
<method name="loadOneTab">
|
|
|
|
<parameter name="aURI"/>
|
|
|
|
<parameter name="aReferrerURI"/>
|
|
|
|
<parameter name="aCharset"/>
|
|
|
|
<parameter name="aPostData"/>
|
|
|
|
<parameter name="aLoadInBackground"/>
|
2007-08-22 05:01:08 +00:00
|
|
|
<parameter name="aAllowThirdPartyFixup"/>
|
2007-08-22 05:00:28 +00:00
|
|
|
<body>
|
|
|
|
<![CDATA[
|
2007-08-22 05:00:54 +00:00
|
|
|
var owner = aLoadInBackground ? null : this.selectedTab;
|
2007-08-22 05:01:08 +00:00
|
|
|
var tab = this.addTab(aURI, aReferrerURI, aCharset, aPostData, owner,
|
|
|
|
aAllowThirdPartyFixup);
|
2007-08-22 05:01:13 +00:00
|
|
|
var bgLoad = (aLoadInBackground != null) ? aLoadInBackground :
|
2007-08-22 05:00:28 +00:00
|
|
|
this.mPrefs.getBoolPref("browser.tabs.loadInBackground");
|
|
|
|
// Set newly selected tab after quick timeout, otherwise hideous focus problems
|
|
|
|
// can occur when "browser.tabs.loadInBackground" is false and presshell is not ready
|
|
|
|
if (!bgLoad) {
|
|
|
|
function selectNewForegroundTab(browser, tab) {
|
2007-08-22 05:00:29 +00:00
|
|
|
browser.selectedTab = tab;
|
2007-08-22 05:00:28 +00:00
|
|
|
}
|
|
|
|
setTimeout(selectNewForegroundTab, 0, getBrowser(), tab);
|
|
|
|
}
|
2007-08-22 05:00:54 +00:00
|
|
|
if (!bgLoad)
|
|
|
|
this.selectedTab = tab;
|
2007-08-22 05:00:28 +00:00
|
|
|
return tab;
|
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
2007-08-22 05:00:55 +00:00
|
|
|
|
2007-08-22 05:00:54 +00:00
|
|
|
<method name="loadTabs">
|
|
|
|
<parameter name="aURIs"/>
|
|
|
|
<parameter name="aLoadInBackground"/>
|
|
|
|
<parameter name="aReplace"/>
|
|
|
|
<body><![CDATA[
|
2007-08-22 05:00:55 +00:00
|
|
|
// The tab selected after this new tab is closed (i.e. the new tab's
|
2007-08-22 05:00:54 +00:00
|
|
|
// "owner") is the next adjacent tab (i.e. not the previously viewed tab)
|
|
|
|
// when several urls are opened here (i.e. closing the first should select
|
|
|
|
// the next of many URLs opened) or if the pref to have UI links opened in
|
|
|
|
// the background is set (i.e. the link is not being opened modally)
|
|
|
|
//
|
|
|
|
// i.e.
|
|
|
|
// Number of URLs Load UI Links in BG Focus Last Viewed?
|
|
|
|
// == 1 false YES
|
|
|
|
// == 1 true NO
|
|
|
|
// > 1 false/true NO
|
|
|
|
var owner = (aURIs.length > 1) || aLoadInBackground ? null : gBrowser.selectedTab;
|
|
|
|
var firstTabAdded = null;
|
2007-08-22 05:00:55 +00:00
|
|
|
if (aReplace)
|
2007-08-22 05:00:54 +00:00
|
|
|
this.loadURI(aURIs[0], null, null);
|
|
|
|
else
|
2007-08-22 05:01:08 +00:00
|
|
|
firstTabAdded = gBrowser.addTab(aURIs[0], null, null, null, owner, false);
|
2007-08-22 05:00:54 +00:00
|
|
|
|
|
|
|
for (var i = 1; i < aURIs.length; ++i)
|
|
|
|
gBrowser.addTab(aURIs[i]);
|
|
|
|
if (!aLoadInBackground) {
|
|
|
|
if (firstTabAdded) {
|
|
|
|
// .selectedTab setter focuses the content area
|
|
|
|
this.selectedTab = firstTabAdded;
|
|
|
|
}
|
2007-08-22 05:00:55 +00:00
|
|
|
else
|
2007-08-22 05:00:54 +00:00
|
|
|
window.content.focus();
|
|
|
|
}
|
|
|
|
]]></body>
|
|
|
|
</method>
|
2007-08-22 05:00:28 +00:00
|
|
|
|
2007-08-22 04:58:49 +00:00
|
|
|
<method name="addTab">
|
|
|
|
<parameter name="aURI"/>
|
|
|
|
<parameter name="aReferrerURI"/>
|
2007-08-22 04:59:09 +00:00
|
|
|
<parameter name="aCharset"/>
|
2007-08-22 04:59:25 +00:00
|
|
|
<parameter name="aPostData"/>
|
2007-08-22 05:00:54 +00:00
|
|
|
<parameter name="aOwner"/>
|
2007-08-22 05:01:08 +00:00
|
|
|
<parameter name="aAllowThirdPartyFixup"/>
|
2007-08-22 04:58:49 +00:00
|
|
|
<body>
|
|
|
|
<![CDATA[
|
2007-08-22 05:01:17 +00:00
|
|
|
this._browsers = null; // invalidate cache
|
|
|
|
|
2007-08-22 04:58:49 +00:00
|
|
|
if (!this.mTabbedMode)
|
|
|
|
this.enterTabbedMode();
|
|
|
|
|
2007-08-22 05:01:25 +00:00
|
|
|
// if we're adding tabs, we're past interrupt mode, ditch the owner
|
|
|
|
if (this.mCurrentTab.owner)
|
|
|
|
this.mCurrentTab.owner = null;
|
|
|
|
|
2007-08-22 04:58:49 +00:00
|
|
|
var t = document.createElementNS("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul",
|
|
|
|
"tab");
|
|
|
|
|
2007-08-22 04:59:43 +00:00
|
|
|
var blank = (aURI == "about:blank");
|
|
|
|
|
2007-08-22 04:58:49 +00:00
|
|
|
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.
2007-08-22 04:59:18 +00:00
|
|
|
|
2007-08-22 04:58:49 +00:00
|
|
|
t.setAttribute("crop", "end");
|
|
|
|
t.maxWidth = 250;
|
2007-08-22 05:01:27 +00:00
|
|
|
t.minWidth = this.mTabContainer.mTabMinWidth;
|
2007-08-22 04:58:49 +00:00
|
|
|
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');");
|
2007-08-22 05:00:54 +00:00
|
|
|
t.className = "tabbrowser-tab";
|
2007-08-22 05:01:25 +00:00
|
|
|
|
2007-08-22 04:58:49 +00:00
|
|
|
this.mTabContainer.appendChild(t);
|
2007-08-22 05:01:25 +00:00
|
|
|
// invalidate cache, because mTabContainer is about to change
|
|
|
|
this._browsers = null;
|
|
|
|
|
2007-08-22 05:00:54 +00:00
|
|
|
// If this new tab is owned by another, assert that relationship
|
|
|
|
if (aOwner !== undefined && aOwner !== null) {
|
|
|
|
t.owner = aOwner;
|
2007-08-22 05:00:55 +00:00
|
|
|
|
2007-08-22 05:00:54 +00:00
|
|
|
var self = this;
|
|
|
|
function attrChanged(event) {
|
|
|
|
if (event.attrName == "selectedIndex" &&
|
|
|
|
event.prevValue != event.newValue)
|
|
|
|
self.resetOwner(parseInt(event.prevValue));
|
|
|
|
}
|
|
|
|
if (!this.mTabChangedListenerAdded) {
|
|
|
|
this.mTabBox.addEventListener("DOMAttrModified", attrChanged, false);
|
|
|
|
this.mTabChangedListenerAdded = true;
|
|
|
|
}
|
|
|
|
}
|
2007-08-22 04:58:49 +00:00
|
|
|
|
2007-08-22 04:59:43 +00:00
|
|
|
var b = document.createElementNS("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul",
|
|
|
|
"browser");
|
2007-08-22 05:01:01 +00:00
|
|
|
b.setAttribute("type", "content-targetable");
|
2007-08-22 04:59:41 +00:00
|
|
|
b.setAttribute("message", "true");
|
2007-08-22 04:58:49 +00:00
|
|
|
b.setAttribute("contextmenu", this.getAttribute("contentcontextmenu"));
|
|
|
|
b.setAttribute("tooltip", this.getAttribute("contenttooltip"));
|
2007-08-22 05:00:48 +00:00
|
|
|
if (this.hasAttribute("autocompletepopup"))
|
|
|
|
b.setAttribute("autocompletepopup", this.getAttribute("autocompletepopup"));
|
2007-08-22 04:59:49 +00:00
|
|
|
|
2007-08-22 05:00:55 +00:00
|
|
|
// Add the Message and the Browser to the box
|
2007-08-22 05:01:12 +00:00
|
|
|
var notificationbox = document.createElementNS(
|
|
|
|
"http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul",
|
|
|
|
"notificationbox");
|
|
|
|
notificationbox.setAttribute("flex", "1");
|
|
|
|
notificationbox.appendChild(b);
|
2007-08-22 04:59:41 +00:00
|
|
|
b.setAttribute("flex", "1");
|
2007-08-22 05:01:12 +00:00
|
|
|
this.mPanelContainer.appendChild(notificationbox);
|
2007-08-22 04:58:49 +00:00
|
|
|
|
2007-08-22 05:01:16 +00:00
|
|
|
b.addEventListener("DOMTitleChanged", this.onTitleChanged, true);
|
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.
2007-08-22 04:59:18 +00:00
|
|
|
|
2007-08-22 04:58:49 +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.
2007-08-22 04:59:18 +00:00
|
|
|
|
2007-08-22 04:58:49 +00:00
|
|
|
// wire up a progress listener for the new browser object.
|
|
|
|
var position = this.mTabContainer.childNodes.length-1;
|
2007-08-22 04:59:22 +00:00
|
|
|
var tabListener = this.mTabProgressListener(t, b, blank);
|
2007-08-22 04:58:49 +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;
|
2007-08-22 05:00:55 +00:00
|
|
|
|
2007-08-22 04:59:41 +00:00
|
|
|
b._fastFind = this.fastFind;
|
2007-08-22 04:58:49 +00:00
|
|
|
|
2007-08-22 05:00:10 +00:00
|
|
|
var uniqueId = "panel" + Date.now() + position;
|
|
|
|
this.mPanelContainer.lastChild.id = uniqueId;
|
|
|
|
t.linkedPanel = uniqueId;
|
|
|
|
t.linkedBrowser = b;
|
|
|
|
t._tPos = position;
|
2007-08-22 05:00:55 +00:00
|
|
|
if (t.previousSibling.selected)
|
2007-08-22 05:00:10 +00:00
|
|
|
t.setAttribute("afterselected", true);
|
2007-08-22 05:00:55 +00:00
|
|
|
|
2007-08-22 04:59:25 +00:00
|
|
|
if (!blank) {
|
2007-08-22 04:59:31 +00:00
|
|
|
// pretend the user typed this so it'll be available till
|
|
|
|
// the document successfully loads
|
|
|
|
b.userTypedValue = aURI;
|
|
|
|
|
2007-08-22 04:59:25 +00:00
|
|
|
if (aPostData === undefined)
|
|
|
|
aPostData = null;
|
2007-08-22 05:01:08 +00:00
|
|
|
const nsIWebNavigation = Components.interfaces.nsIWebNavigation;
|
|
|
|
var flags = nsIWebNavigation.LOAD_FLAGS_NONE;
|
|
|
|
if (aAllowThirdPartyFixup) {
|
|
|
|
flags = nsIWebNavigation.LOAD_FLAGS_ALLOW_THIRD_PARTY_FIXUP;
|
|
|
|
}
|
|
|
|
b.loadURIWithFlags(aURI, flags, aReferrerURI, aCharset, aPostData);
|
2007-08-22 04:59:25 +00:00
|
|
|
}
|
2007-08-22 04:58:49 +00:00
|
|
|
|
2007-08-22 05:01:25 +00:00
|
|
|
// Dispatch a new tab notification. We do this once we're
|
|
|
|
// entirely done, so that things are in a consistent state
|
|
|
|
// even if the event listener opens or closes tabs.
|
|
|
|
var evt = document.createEvent("Events");
|
|
|
|
evt.initEvent("TabOpen", true, false);
|
|
|
|
t.dispatchEvent(evt);
|
|
|
|
|
2007-08-22 04:58:49 +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.
2007-08-22 04:59:18 +00:00
|
|
|
|
2007-08-22 04:59:41 +00:00
|
|
|
<method name="warnAboutClosingTabs">
|
|
|
|
<parameter name="aAll"/>
|
|
|
|
<body>
|
2007-08-22 05:00:55 +00:00
|
|
|
<![CDATA[
|
2007-08-22 04:59:41 +00:00
|
|
|
var numTabs = this.mTabContainer.childNodes.length;
|
|
|
|
var reallyClose = true;
|
|
|
|
if (numTabs <= 1)
|
|
|
|
return reallyClose;
|
2007-08-22 05:00:55 +00:00
|
|
|
|
2007-08-22 04:59:41 +00:00
|
|
|
const pref = "browser.tabs.warnOnClose";
|
|
|
|
var shouldPrompt = this.mPrefs.getBoolPref(pref);
|
|
|
|
|
|
|
|
if (shouldPrompt) {
|
|
|
|
var promptService = Components.classes["@mozilla.org/embedcomp/prompt-service;1"]
|
|
|
|
.getService(Components.interfaces.nsIPromptService);
|
|
|
|
|
|
|
|
//default to true: if it were false, we wouldn't get this far
|
|
|
|
var warnOnClose = { value:true };
|
|
|
|
var bundle = this.mStringBundle;
|
|
|
|
var tabsToClose = numTabs; //number of tabs to be removed
|
|
|
|
if (!aAll)
|
2007-08-22 05:00:55 +00:00
|
|
|
--tabsToClose;
|
2007-08-22 04:59:41 +00:00
|
|
|
|
|
|
|
var messageKey = (tabsToClose == 1) ? "tabs.closeWarningOne" : "tabs.closeWarningMultiple";
|
|
|
|
var closeKey = (tabsToClose == 1) ? "tabs.closeButtonOne" : "tabs.closeButtonMultiple";
|
|
|
|
var buttonPressed = promptService.confirmEx(window,
|
|
|
|
bundle.getString('tabs.closeWarningTitle'),
|
|
|
|
bundle.getFormattedString(messageKey, [tabsToClose]),
|
|
|
|
(promptService.BUTTON_TITLE_IS_STRING * promptService.BUTTON_POS_0)
|
|
|
|
+ (promptService.BUTTON_TITLE_CANCEL * promptService.BUTTON_POS_1),
|
|
|
|
bundle.getString(closeKey),
|
|
|
|
null, null,
|
|
|
|
bundle.getString('tabs.closeWarningPromptMe'),
|
|
|
|
warnOnClose);
|
|
|
|
reallyClose = (buttonPressed == 0);
|
|
|
|
// don't set the pref unless they press OK and it's false
|
|
|
|
if (reallyClose && !warnOnClose.value)
|
|
|
|
this.mPrefs.setBoolPref(pref, false);
|
|
|
|
}
|
|
|
|
return reallyClose;
|
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
2007-08-22 05:00:55 +00:00
|
|
|
|
2007-08-22 04:59:10 +00:00
|
|
|
<method name="removeAllTabsBut">
|
|
|
|
<parameter name="aTab"/>
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
2007-08-22 04:59:41 +00:00
|
|
|
if (this.warnAboutClosingTabs(false)) {
|
|
|
|
if (aTab.localName != "tab")
|
|
|
|
aTab = this.mCurrentTab;
|
|
|
|
else
|
|
|
|
this.mTabContainer.selectedItem = aTab;
|
|
|
|
|
|
|
|
var childNodes = this.mTabContainer.childNodes;
|
2007-08-22 04:59:10 +00:00
|
|
|
|
2007-08-22 04:59:41 +00:00
|
|
|
for (var i = childNodes.length - 1; i >= 0; --i) {
|
|
|
|
if (childNodes[i] != aTab)
|
|
|
|
this.removeTab(childNodes[i]);
|
|
|
|
}
|
|
|
|
}
|
2007-08-22 04:59:24 +00:00
|
|
|
}
|
2007-08-22 04:59:10 +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.
2007-08-22 04:59:18 +00:00
|
|
|
|
2007-08-22 04:58:49 +00:00
|
|
|
<method name="removeCurrentTab">
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
|
|
|
return this.removeTab(this.mCurrentTab);
|
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
2007-08-22 05:00:55 +00:00
|
|
|
|
2007-08-22 05:00:54 +00:00
|
|
|
<method name="resetOwner">
|
|
|
|
<parameter name="oldIndex"/>
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
|
|
|
// Reset the owner property, since we're leaving the modally opened
|
|
|
|
// tab for another.
|
2007-08-22 05:00:55 +00:00
|
|
|
if (oldIndex < this.mTabContainer.childNodes.length) {
|
2007-08-22 05:00:54 +00:00
|
|
|
var tab = this.mTabContainer.childNodes[oldIndex];
|
|
|
|
tab.owner = null;
|
|
|
|
}
|
|
|
|
]]>
|
|
|
|
</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.
2007-08-22 04:59:18 +00:00
|
|
|
|
2007-08-22 04:58:49 +00:00
|
|
|
<method name="removeTab">
|
|
|
|
<parameter name="aTab"/>
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
2007-08-22 05:01:17 +00:00
|
|
|
this._browsers = null; // invalidate cache
|
2007-08-22 04:58:49 +00:00
|
|
|
if (aTab.localName != "tab")
|
|
|
|
aTab = this.mCurrentTab;
|
|
|
|
|
|
|
|
var l = this.mTabContainer.childNodes.length;
|
2007-08-22 05:01:20 +00:00
|
|
|
if (l == 1 && this.mPrefs.getBoolPref("browser.tabs.autoHide")) {
|
2007-08-22 04:58:49 +00:00
|
|
|
// hide the tab bar
|
|
|
|
this.mPrefs.setBoolPref("browser.tabs.forceHide", true);
|
|
|
|
this.setStripVisibilityTo(false);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2007-08-22 04:59:24 +00:00
|
|
|
var ds = this.getBrowserForTab(aTab).docShell;
|
|
|
|
if (ds.contentViewer && !ds.contentViewer.permitUnload())
|
|
|
|
return;
|
|
|
|
|
2007-08-22 05:01:25 +00:00
|
|
|
// We're committed to closing the tab now.
|
|
|
|
// Dispatch a notification.
|
|
|
|
// We dispatch it before any teardown so that event listeners can
|
|
|
|
// inspect the tab that's about to close.
|
|
|
|
var evt = document.createEvent("Events");
|
|
|
|
evt.initEvent("TabClose", true, false);
|
|
|
|
aTab.dispatchEvent(evt);
|
|
|
|
|
2007-08-22 05:01:20 +00:00
|
|
|
if (l == 1) {
|
|
|
|
// add a new blank tab to replace the one being closed
|
|
|
|
// (this ensures that the remaining tab is as good as new)
|
|
|
|
this.addTab("about:blank");
|
|
|
|
l++;
|
|
|
|
}
|
|
|
|
else if (l == 2) {
|
2007-08-22 04:58:49 +00:00
|
|
|
var autohide = this.mPrefs.getBoolPref("browser.tabs.autoHide");
|
2007-08-22 05:00:19 +00:00
|
|
|
var tabStripHide = !window.toolbar.visible;
|
|
|
|
if (autohide || tabStripHide)
|
2007-08-22 04:58:49 +00:00
|
|
|
this.setStripVisibilityTo(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
var index = -1;
|
|
|
|
if (this.mCurrentTab == aTab)
|
2007-08-22 05:00:10 +00:00
|
|
|
index = this.mTabContainer.selectedIndex;
|
2007-08-22 04:58:49 +00:00
|
|
|
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];
|
2007-08-22 04:59:41 +00:00
|
|
|
var oldBrowser = this.getBrowserAtIndex(index);
|
2007-08-22 04:58:49 +00:00
|
|
|
oldBrowser.webProgress.removeProgressListener(filter);
|
|
|
|
filter.removeProgressListener(this.mTabListeners[index]);
|
|
|
|
this.mTabFilters.splice(index, 1);
|
|
|
|
this.mTabListeners.splice(index, 1);
|
|
|
|
|
2007-08-22 04:59:00 +00:00
|
|
|
// Remove our title change and blocking listeners
|
2007-08-22 05:01:16 +00:00
|
|
|
oldBrowser.removeEventListener("DOMTitleChanged", this.onTitleChanged, true);
|
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.
2007-08-22 04:59:18 +00:00
|
|
|
|
2007-08-22 04:58:49 +00:00
|
|
|
// We are no longer the primary content area.
|
2007-08-22 05:01:01 +00:00
|
|
|
oldBrowser.setAttribute("type", "content-targetable");
|
2007-08-22 04:58:49 +00:00
|
|
|
|
2007-08-22 05:00:55 +00:00
|
|
|
// Get the index of the tab we're removing before unselecting it
|
2007-08-22 05:00:10 +00:00
|
|
|
var currentIndex = this.mTabContainer.selectedIndex;
|
2007-08-22 04:59:08 +00:00
|
|
|
|
2007-08-22 04:58:49 +00:00
|
|
|
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.
2007-08-22 04:59:18 +00:00
|
|
|
|
2007-08-22 04:58:49 +00:00
|
|
|
// clean up the before/afterselected attributes before removing the tab
|
|
|
|
oldTab.selected = false;
|
2007-08-22 05:00:55 +00:00
|
|
|
|
2007-08-22 05:00:54 +00:00
|
|
|
// Remove this tab as the owner of any other tabs, since it's going away.
|
|
|
|
for (i = 0; i < this.mTabContainer.childNodes.length; ++i) {
|
2007-08-22 05:00:55 +00:00
|
|
|
var tab = this.mTabContainer.childNodes[i];
|
|
|
|
if ("owner" in tab && tab.owner == oldTab)
|
2007-08-22 05:00:56 +00:00
|
|
|
// |tab| is a child of the tab we're removing, make it an orphan
|
2007-08-22 05:00:54 +00:00
|
|
|
tab.owner = null;
|
|
|
|
}
|
2007-08-22 04:58:49 +00:00
|
|
|
|
2007-08-22 04:59:56 +00:00
|
|
|
// Because of the way XBL works (fields just set JS
|
|
|
|
// properties on the element) and the code we have in place
|
|
|
|
// to preserve the JS objects for any elements that have
|
|
|
|
// JS properties set on them, the browser element won't be
|
|
|
|
// destroyed until the document goes away. So we force a
|
|
|
|
// cleanup ourselves.
|
2007-08-22 04:59:58 +00:00
|
|
|
// This has to happen before we remove the child so that the
|
2007-08-22 04:59:56 +00:00
|
|
|
// XBL implementation of nsIObserver still works. But
|
|
|
|
// clearing focusedWindow happens below because it gets
|
|
|
|
// reset by updateCurrentBrowser.
|
2007-08-22 04:59:00 +00:00
|
|
|
oldBrowser.destroy();
|
2007-08-22 05:00:55 +00:00
|
|
|
|
|
|
|
// Remove the tab
|
2007-08-22 04:58:49 +00:00
|
|
|
this.mTabContainer.removeChild(oldTab);
|
2007-08-22 05:01:25 +00:00
|
|
|
// invalidate cache, because mTabContainer is about to change
|
|
|
|
this._browsers = null;
|
2007-08-22 05:00:10 +00:00
|
|
|
this.mPanelContainer.removeChild(oldBrowser.parentNode);
|
2007-08-22 04:58:49 +00:00
|
|
|
|
2007-08-22 05:00:55 +00:00
|
|
|
// Find the tab to select
|
|
|
|
var newIndex = -1;
|
|
|
|
if (currentIndex > index)
|
|
|
|
newIndex = currentIndex-1;
|
|
|
|
else if (currentIndex < index)
|
|
|
|
newIndex = currentIndex;
|
|
|
|
else {
|
|
|
|
if ("owner" in oldTab && oldTab.owner &&
|
|
|
|
this.mPrefs.getBoolPref("browser.tabs.selectOwnerOnClose")) {
|
|
|
|
for (i = 0; i < this.mTabContainer.childNodes.length; ++i) {
|
|
|
|
tab = this.mTabContainer.childNodes[i];
|
|
|
|
if (tab == oldTab.owner) {
|
|
|
|
newIndex = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (newIndex == -1)
|
|
|
|
newIndex = (index == l - 1) ? index - 1 : index;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Select the new tab
|
2007-08-22 04:58:49 +00:00
|
|
|
this.selectedTab = this.mTabContainer.childNodes[newIndex];
|
2007-08-22 05:00:55 +00:00
|
|
|
|
|
|
|
for (i = oldTab._tPos; i < this.mTabContainer.childNodes.length; i++) {
|
2007-08-22 05:00:10 +00:00
|
|
|
this.mTabContainer.childNodes[i]._tPos = i;
|
|
|
|
}
|
|
|
|
this.mTabBox.selectedPanel = this.getBrowserForTab(this.mCurrentTab).parentNode;
|
|
|
|
this.mCurrentTab.selected = true;
|
|
|
|
|
2007-08-22 04:58:59 +00:00
|
|
|
this.updateCurrentBrowser();
|
2007-08-22 04:59:56 +00:00
|
|
|
|
|
|
|
// see comment above destroy above
|
|
|
|
oldBrowser.focusedWindow = null;
|
2007-08-22 04:59:57 +00:00
|
|
|
oldBrowser.focusedElement = null;
|
2007-08-22 04:59:00 +00:00
|
|
|
}
|
2007-08-22 04:58:49 +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.
2007-08-22 04:59:18 +00:00
|
|
|
for (var i = 0; i < l; i++) {
|
|
|
|
try {
|
2007-08-22 04:59:41 +00:00
|
|
|
this.getBrowserAtIndex(i).reload();
|
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.
2007-08-22 04:59:18 +00:00
|
|
|
} catch (e) {
|
|
|
|
// ignore failure to reload so others will be reloaded
|
|
|
|
}
|
|
|
|
}
|
2007-08-22 04:58:49 +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.
2007-08-22 04:59:18 +00:00
|
|
|
if (aTab.localName != "tab")
|
|
|
|
aTab = this.mCurrentTab;
|
|
|
|
|
|
|
|
this.getBrowserForTab(aTab).reload();
|
2007-08-22 04:58:49 +00:00
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
2007-08-22 04:59:34 +00:00
|
|
|
<method name="onTabBarDblClick">
|
|
|
|
<parameter name="aEvent"/>
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
2007-08-22 05:00:53 +00:00
|
|
|
if (aEvent.button == 0 &&
|
2007-08-22 05:01:25 +00:00
|
|
|
aEvent.originalTarget.localName == "box") {
|
|
|
|
// xxx this needs to check that we're in the empty area of the tabstrip
|
2007-08-22 05:00:16 +00:00
|
|
|
var e = document.createEvent("Events");
|
2007-08-22 05:01:03 +00:00
|
|
|
e.initEvent("NewTab", true, true);
|
2007-08-22 05:00:16 +00:00
|
|
|
this.dispatchEvent(e);
|
|
|
|
}
|
2007-08-22 04:59:34 +00:00
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
2007-08-22 05:00:55 +00:00
|
|
|
|
2007-08-22 04:58:49 +00:00
|
|
|
<method name="addProgressListener">
|
|
|
|
<parameter name="aListener"/>
|
|
|
|
<parameter name="aMask"/>
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
2007-08-22 05:00:37 +00:00
|
|
|
if (!this.mAddProgressListenerWasCalled) {
|
|
|
|
this.mAddProgressListenerWasCalled = true;
|
|
|
|
var autoHide = this.mPrefs.getBoolPref("browser.tabs.autoHide");
|
|
|
|
var forceHide = this.mPrefs.getBoolPref("browser.tabs.forceHide");
|
|
|
|
var tabStripHide = !window.toolbar.visible;
|
|
|
|
if (!autoHide && !forceHide && !tabStripHide)
|
|
|
|
this.setStripVisibilityTo(true);
|
|
|
|
}
|
|
|
|
|
2007-08-22 04:59:26 +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();
|
|
|
|
}
|
|
|
|
|
2007-08-22 04:58:49 +00:00
|
|
|
this.mProgressListeners.push(aListener);
|
|
|
|
|
|
|
|
if (!this.mTabbedMode) {
|
2007-08-22 04:59:26 +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);
|
|
|
|
}
|
2007-08-22 04:58:49 +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[
|
|
|
|
for (var i = 0; i < this.mProgressListeners.length; i++) {
|
|
|
|
if (this.mProgressListeners[i] == aListener) {
|
2007-08-22 05:00:26 +00:00
|
|
|
this.mProgressListeners.splice(i, 1);
|
2007-08-22 04:58:49 +00:00
|
|
|
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[
|
2007-08-22 05:00:10 +00:00
|
|
|
return aTab.linkedBrowser;
|
2007-08-22 04:58:49 +00:00
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
2007-08-22 04:59:24 +00:00
|
|
|
<property name="tabContainer">
|
|
|
|
<getter>
|
|
|
|
return this.mTabContainer;
|
|
|
|
</getter>
|
|
|
|
</property>
|
|
|
|
|
2007-08-22 04:58:49 +00:00
|
|
|
<property name="selectedTab">
|
|
|
|
<getter>
|
|
|
|
return this.mTabBox.selectedTab;
|
|
|
|
</getter>
|
|
|
|
<setter>
|
|
|
|
<![CDATA[
|
2007-08-22 05:00:27 +00:00
|
|
|
// Update the tab
|
|
|
|
this.mTabBox.selectedTab = val;
|
|
|
|
return val;
|
2007-08-22 04:58:49 +00:00
|
|
|
]]>
|
|
|
|
</setter>
|
|
|
|
</property>
|
|
|
|
|
|
|
|
<property name="selectedBrowser"
|
|
|
|
onget="return this.mCurrentBrowser;"
|
|
|
|
readonly="true"/>
|
|
|
|
|
|
|
|
|
2007-08-22 05:00:10 +00:00
|
|
|
<property name="browsers" readonly="true">
|
|
|
|
<getter>
|
|
|
|
<![CDATA[
|
2007-08-22 05:01:17 +00:00
|
|
|
if (!this._browsers) {
|
|
|
|
var browsers = [];
|
|
|
|
var i;
|
|
|
|
browsers.item = function(i) {return this[i];}
|
|
|
|
for (i = 0; i < this.mTabContainer.childNodes.length; i++)
|
|
|
|
browsers.push(this.mTabContainer.childNodes[i].linkedBrowser);
|
|
|
|
this._browsers = browsers;
|
|
|
|
}
|
|
|
|
return this._browsers;
|
2007-08-22 05:00:10 +00:00
|
|
|
]]>
|
|
|
|
</getter>
|
|
|
|
</property>
|
2007-08-22 04:58:49 +00:00
|
|
|
|
|
|
|
<!-- Drag and drop observer API -->
|
2007-08-22 05:00:10 +00:00
|
|
|
<method name="onDragStart">
|
2007-08-22 04:58:49 +00:00
|
|
|
<parameter name="aEvent"/>
|
|
|
|
<parameter name="aXferData"/>
|
|
|
|
<parameter name="aDragAction"/>
|
2007-08-22 05:00:10 +00:00
|
|
|
<body>
|
|
|
|
<![CDATA[
|
2007-08-22 05:00:55 +00:00
|
|
|
if (aEvent.target.localName == "tab" &&
|
2007-08-22 05:00:54 +00:00
|
|
|
aEvent.originalTarget.localName != "toolbarbutton") {
|
2007-08-22 05:00:10 +00:00
|
|
|
aXferData.data = new TransferData();
|
2007-08-22 05:00:55 +00:00
|
|
|
|
2007-08-22 05:00:10 +00:00
|
|
|
var URI = this.getBrowserForTab(aEvent.target).currentURI;
|
|
|
|
if (URI) {
|
|
|
|
aXferData.data.addDataForFlavour("text/x-moz-url", URI.spec + "\n" + aEvent.target.label);
|
2007-08-22 05:01:11 +00:00
|
|
|
aXferData.data.addDataForFlavour("text/unicode", URI.spec);
|
2007-08-22 05:00:10 +00:00
|
|
|
aXferData.data.addDataForFlavour("text/html", '<a href="' + URI.spec + '">' + aEvent.target.label + '</a>');
|
2007-08-22 05:00:42 +00:00
|
|
|
} else {
|
|
|
|
aXferData.data.addDataForFlavour("text/unicode", "about:blank");
|
2007-08-22 05:00:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
2007-08-22 04:58:49 +00:00
|
|
|
|
|
|
|
<method name="onDragOver">
|
|
|
|
<parameter name="aEvent"/>
|
|
|
|
<parameter name="aFlavour"/>
|
|
|
|
<parameter name="aDragSession"/>
|
|
|
|
<body>
|
2007-08-22 05:00:10 +00:00
|
|
|
<![CDATA[
|
2007-08-22 05:01:25 +00:00
|
|
|
if (aDragSession.canDrop && aDragSession.sourceNode) {
|
|
|
|
// autoscroll the tab strip if we drag over the autorepeat
|
|
|
|
// buttons, even if we aren't dragging a tab, but then
|
|
|
|
// return to avoid drawing the drop indicator
|
|
|
|
var isTabDrag = (aDragSession.sourceNode.parentNode == this.mTabContainer);
|
|
|
|
var pixelsToScroll = 0;
|
|
|
|
var tabStrip = this.mTabContainer.mTabstrip;
|
|
|
|
if (aEvent.originalTarget.localName == "autorepeatbutton") {
|
|
|
|
if (aEvent.originalTarget.getAttribute("class") ==
|
|
|
|
"autorepeatbutton-up")
|
|
|
|
pixelsToScroll = tabStrip.scrollIncrement * -1;
|
|
|
|
else
|
|
|
|
pixelsToScroll = tabStrip.scrollIncrement;
|
|
|
|
tabStrip.scrollByPixels(pixelsToScroll);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!isTabDrag)
|
|
|
|
return;
|
|
|
|
|
2007-08-22 05:00:10 +00:00
|
|
|
var newIndex = this.getNewIndex(aEvent);
|
|
|
|
|
2007-08-22 05:00:40 +00:00
|
|
|
var ib = this.mTabDropIndicatorBar;
|
|
|
|
var ind = ib.firstChild;
|
2007-08-22 05:00:10 +00:00
|
|
|
ib.setAttribute('dragging','true');
|
2007-08-22 05:00:55 +00:00
|
|
|
|
2007-08-22 05:01:25 +00:00
|
|
|
var tabStripBoxObject = tabStrip.scrollBoxObject;
|
|
|
|
var halfIndWidth = Math.floor((ind.boxObject.width + 1) / 2);
|
|
|
|
if (window.getComputedStyle(this.parentNode, null)
|
|
|
|
.direction == "ltr") {
|
|
|
|
var newMarginLeft;
|
|
|
|
var minMarginLeft = tabStripBoxObject.x - halfIndWidth;
|
|
|
|
// make sure we don't place the tab drop indicator past the
|
|
|
|
// edge, or the containing box will flex and stretch
|
|
|
|
// the tab drop indicator bar, which will flex the url bar.
|
|
|
|
// XXX todo
|
|
|
|
// just use first value if you can figure out how to get
|
|
|
|
// the tab drop indicator to crop instead of flex and stretch
|
|
|
|
// the tab drop indicator bar.
|
|
|
|
var maxMarginLeft = Math.min(
|
|
|
|
(minMarginLeft + tabStripBoxObject.width),
|
|
|
|
(ib.boxObject.x + ib.boxObject.width - ind.boxObject.width));
|
|
|
|
|
|
|
|
// if we are scrolling, put the drop indicator at the edge
|
|
|
|
// so that it doesn't jump while scrolling
|
|
|
|
if (pixelsToScroll > 0)
|
|
|
|
newMarginLeft = maxMarginLeft;
|
|
|
|
else if (pixelsToScroll < 0)
|
|
|
|
newMarginLeft = minMarginLeft;
|
|
|
|
else {
|
2007-08-22 05:00:10 +00:00
|
|
|
if (newIndex == this.mTabs.length) {
|
2007-08-22 05:01:25 +00:00
|
|
|
newMarginLeft = this.mTabs[newIndex-1].boxObject.screenX +
|
|
|
|
this.mTabs[newIndex-1].boxObject.width -
|
|
|
|
this.boxObject.screenX - halfIndWidth;
|
2007-08-22 05:00:10 +00:00
|
|
|
} else {
|
2007-08-22 05:01:25 +00:00
|
|
|
newMarginLeft = this.mTabs[newIndex].boxObject.screenX -
|
|
|
|
this.boxObject.screenX - halfIndWidth;
|
2007-08-22 05:00:10 +00:00
|
|
|
}
|
2007-08-22 05:01:25 +00:00
|
|
|
|
|
|
|
// ensure we never place the drop indicator beyond
|
|
|
|
// our limits
|
|
|
|
if (newMarginLeft < minMarginLeft)
|
|
|
|
newMarginLeft = minMarginLeft;
|
|
|
|
else if (newMarginLeft > maxMarginLeft)
|
|
|
|
newMarginLeft = maxMarginLeft;
|
|
|
|
}
|
|
|
|
ind.style.marginLeft = newMarginLeft + 'px';
|
2007-08-22 05:00:10 +00:00
|
|
|
} else {
|
2007-08-22 05:01:25 +00:00
|
|
|
var newMarginRight;
|
|
|
|
var minMarginRight = tabStripBoxObject.x - halfIndWidth;
|
|
|
|
// make sure we don't place the tab drop indicator past the
|
|
|
|
// edge, or the containing box will flex and stretch
|
|
|
|
// the tab drop indicator bar, which will flex the url bar.
|
|
|
|
// XXX todo
|
|
|
|
// just use first value if you can figure out how to get
|
|
|
|
// the tab drop indicator to crop instead of flex and stretch
|
|
|
|
// the tab drop indicator bar.
|
|
|
|
var maxMarginRight = Math.min(
|
|
|
|
(minMarginRight + tabStripBoxObject.width),
|
|
|
|
(ib.boxObject.x + ib.boxObject.width - ind.boxObject.width));
|
|
|
|
|
|
|
|
// if we are scrolling, put the drop indicator at the edge
|
|
|
|
// so that it doesn't jump while scrolling
|
|
|
|
if (pixelsToScroll > 0)
|
|
|
|
newMarginRight = maxMarginRight;
|
|
|
|
else if (pixelsToScroll < 0)
|
|
|
|
newMarginRight = minMarginRight;
|
|
|
|
else {
|
2007-08-22 05:00:49 +00:00
|
|
|
if (newIndex == this.mTabs.length) {
|
2007-08-22 05:01:25 +00:00
|
|
|
newMarginRight = this.boxObject.width +
|
|
|
|
this.boxObject.screenX -
|
|
|
|
this.mTabs[newIndex-1].boxObject.screenX -
|
|
|
|
halfIndWidth;
|
2007-08-22 05:00:49 +00:00
|
|
|
} else {
|
2007-08-22 05:01:25 +00:00
|
|
|
newMarginRight = this.boxObject.width +
|
|
|
|
this.boxObject.screenX -
|
|
|
|
this.mTabs[newIndex].boxObject.screenX -
|
|
|
|
this.mTabs[newIndex].boxObject.width -
|
|
|
|
halfIndWidth;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ensure we never place the drop indicator beyond
|
|
|
|
// our limits
|
|
|
|
if (newMarginRight < minMarginRight)
|
|
|
|
newMarginRight = minMarginRight;
|
|
|
|
else if (newMarginRight > maxMarginRight)
|
|
|
|
newMarginRight = maxMarginRight;
|
2007-08-22 05:00:10 +00:00
|
|
|
}
|
2007-08-22 05:01:25 +00:00
|
|
|
ind.style.marginRight = newMarginRight + 'px';
|
2007-08-22 05:00:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
]]>
|
2007-08-22 04:58:49 +00:00
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
|
|
|
<method name="onDrop">
|
|
|
|
<parameter name="aEvent"/>
|
|
|
|
<parameter name="aXferData"/>
|
|
|
|
<parameter name="aDragSession"/>
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
2007-08-22 05:00:13 +00:00
|
|
|
if (aDragSession.sourceNode && aDragSession.sourceNode.parentNode == this.mTabContainer) {
|
2007-08-22 05:00:10 +00:00
|
|
|
var newIndex = this.getNewIndex(aEvent);
|
2007-08-22 05:00:42 +00:00
|
|
|
var oldIndex = aDragSession.sourceNode._tPos;
|
|
|
|
|
2007-08-22 05:00:55 +00:00
|
|
|
if (newIndex > oldIndex)
|
2007-08-22 05:00:10 +00:00
|
|
|
newIndex--;
|
2007-08-22 05:00:55 +00:00
|
|
|
if (newIndex != oldIndex)
|
2007-08-22 05:00:42 +00:00
|
|
|
this.moveTabTo(this.mTabs[oldIndex], newIndex);
|
2007-08-22 05:00:10 +00:00
|
|
|
} else {
|
|
|
|
var url = transferUtils.retrieveURLFromData(aXferData.data, aXferData.flavour.contentType);
|
2007-08-22 04:58:49 +00:00
|
|
|
|
2007-08-22 05:00:10 +00:00
|
|
|
// valid urls don't contain spaces ' '; if we have a space it isn't a valid url.
|
|
|
|
// Also disallow dropping javascript: or data: urls--bail out
|
|
|
|
if (!url || !url.length || url.indexOf(" ", 0) != -1 ||
|
|
|
|
/^\s*(javascript|data):/.test(url))
|
|
|
|
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.
2007-08-22 04:59:18 +00:00
|
|
|
|
2007-08-22 05:00:10 +00:00
|
|
|
this.dragDropSecurityCheck(aEvent, aDragSession, url);
|
2007-08-22 05:00:02 +00:00
|
|
|
|
2007-08-22 05:00:45 +00:00
|
|
|
var bgLoad = true;
|
|
|
|
try {
|
|
|
|
bgLoad = this.mPrefs.getBoolPref("browser.tabs.loadInBackground");
|
|
|
|
}
|
|
|
|
catch (e) { }
|
|
|
|
|
|
|
|
if (aEvent.shiftKey)
|
|
|
|
bgLoad = !bgLoad;
|
|
|
|
|
2007-08-22 05:01:00 +00:00
|
|
|
if (document.getBindingParent(aEvent.originalTarget).localName != "tab") {
|
2007-08-22 05:00:10 +00:00
|
|
|
// We're adding a new tab.
|
2007-08-22 05:01:08 +00:00
|
|
|
this.loadOneTab(getShortcutOrURI(url), null, null, null, bgLoad, false);
|
2007-08-22 05:00:10 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
// Load in an existing tab.
|
2007-08-22 05:00:54 +00:00
|
|
|
var tab = aEvent.target;
|
2007-08-22 05:01:23 +00:00
|
|
|
try {
|
|
|
|
this.getBrowserForTab(tab).loadURI(getShortcutOrURI(url));
|
|
|
|
if (this.mCurrentTab != tab && !bgLoad)
|
|
|
|
this.selectedTab = tab;
|
|
|
|
} catch(ex) {
|
|
|
|
// Just ignore invalid urls
|
|
|
|
}
|
2007-08-22 05:00:10 +00:00
|
|
|
}
|
2007-08-22 04:58:49 +00:00
|
|
|
}
|
2007-08-22 05:00:10 +00:00
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
|
|
|
<method name="onDragExit">
|
|
|
|
<parameter name="aEvent"/>
|
|
|
|
<parameter name="aDragSession"/>
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
2007-08-22 05:00:40 +00:00
|
|
|
this.mTabDropIndicatorBar.setAttribute('dragging','false');
|
2007-08-22 04:58:49 +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>
|
2007-08-22 05:00:55 +00:00
|
|
|
|
2007-08-22 05:00:10 +00:00
|
|
|
<method name="moveTabTo">
|
|
|
|
<parameter name="aTab"/>
|
|
|
|
<parameter name="aIndex"/>
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
2007-08-22 05:01:17 +00:00
|
|
|
this._browsers = null; // invalidate cache
|
2007-08-22 05:00:10 +00:00
|
|
|
this.mTabFilters.splice(aIndex, 0, this.mTabFilters.splice(aTab._tPos, 1)[0]);
|
|
|
|
this.mTabListeners.splice(aIndex, 0, this.mTabListeners.splice(aTab._tPos, 1)[0]);
|
|
|
|
|
2007-08-22 05:01:25 +00:00
|
|
|
var oldPosition = aTab._tPos;
|
|
|
|
|
2007-08-22 05:00:10 +00:00
|
|
|
aIndex = aIndex < aTab._tPos ? aIndex: aIndex+1;
|
|
|
|
this.mCurrentTab.selected = false;
|
2007-08-22 05:01:06 +00:00
|
|
|
this.mTabContainer.insertBefore(aTab, this.mTabContainer.childNodes[aIndex]);
|
2007-08-22 05:01:25 +00:00
|
|
|
// invalidate cache, because mTabContainer is about to change
|
|
|
|
this._browsers = null;
|
2007-08-22 05:00:44 +00:00
|
|
|
|
2007-08-22 05:00:10 +00:00
|
|
|
var i;
|
|
|
|
for (i = 0; i < this.mTabContainer.childNodes.length; i++) {
|
|
|
|
this.mTabContainer.childNodes[i]._tPos = i;
|
|
|
|
}
|
|
|
|
this.mCurrentTab.selected = true;
|
2007-08-22 05:01:25 +00:00
|
|
|
|
|
|
|
var evt = document.createEvent("UIEvents");
|
|
|
|
evt.initUIEvent("TabMove", true, false, window, oldPosition);
|
|
|
|
aTab.dispatchEvent(evt);
|
|
|
|
|
2007-08-22 05:00:10 +00:00
|
|
|
return aTab;
|
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
|
|
|
<method name="getNewIndex">
|
|
|
|
<parameter name="aEvent"/>
|
|
|
|
<body>
|
2007-08-22 05:00:55 +00:00
|
|
|
<![CDATA[
|
2007-08-22 05:00:10 +00:00
|
|
|
var i;
|
|
|
|
if (window.getComputedStyle(this.parentNode, null).direction == "ltr") {
|
|
|
|
for (i = aEvent.target.localName == "tab" ? aEvent.target._tPos : 0; i < this.mTabs.length; i++)
|
2007-08-22 05:01:25 +00:00
|
|
|
if (aEvent.screenX < this.mTabs[i].boxObject.screenX + this.mTabs[i].boxObject.width / 2)
|
2007-08-22 05:00:10 +00:00
|
|
|
return i;
|
|
|
|
} else {
|
|
|
|
for (i = aEvent.target.localName == "tab" ? aEvent.target._tPos : 0; i < this.mTabs.length; i++)
|
2007-08-22 05:01:25 +00:00
|
|
|
if (aEvent.screenX > this.mTabs[i].boxObject.screenX + this.mTabs[i].boxObject.width / 2)
|
2007-08-22 05:00:10 +00:00
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
return this.mTabs.length;
|
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
|
|
|
|
|
|
|
<method name="moveTabForward">
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
|
|
|
var tabPos = this.mCurrentTab._tPos;
|
|
|
|
if (tabPos < this.browsers.length - 1) {
|
|
|
|
this.moveTabTo(this.mCurrentTab, tabPos + 1);
|
|
|
|
this.mCurrentTab.focus();
|
|
|
|
}
|
|
|
|
else if (this.arrowKeysShouldWrap)
|
|
|
|
this.moveTabToStart();
|
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
|
|
|
<method name="moveTabBackward">
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
|
|
|
var tabPos = this.mCurrentTab._tPos;
|
|
|
|
if (tabPos > 0) {
|
|
|
|
this.moveTabTo(this.mCurrentTab, tabPos - 1);
|
|
|
|
this.mCurrentTab.focus();
|
|
|
|
}
|
|
|
|
else if (this.arrowKeysShouldWrap)
|
|
|
|
this.moveTabToEnd();
|
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
|
|
|
<method name="moveTabToStart">
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
|
|
|
var tabPos = this.mCurrentTab._tPos;
|
|
|
|
if (tabPos > 0) {
|
|
|
|
this.moveTabTo(this.mCurrentTab, 0);
|
|
|
|
this.mCurrentTab.focus();
|
|
|
|
}
|
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
2007-08-22 05:00:55 +00:00
|
|
|
|
2007-08-22 05:00:10 +00:00
|
|
|
<method name="moveTabToEnd">
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
|
|
|
var tabPos = this.mCurrentTab._tPos;
|
|
|
|
if (tabPos < this.browsers.length - 1) {
|
2007-08-22 05:00:55 +00:00
|
|
|
this.moveTabTo(this.mCurrentTab,
|
2007-08-22 05:00:10 +00:00
|
|
|
this.browsers.length - 1);
|
|
|
|
this.mCurrentTab.focus();
|
|
|
|
}
|
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
2007-08-22 05:00:55 +00:00
|
|
|
|
2007-08-22 05:00:10 +00:00
|
|
|
<method name="moveTabOver">
|
|
|
|
<parameter name="aEvent"/>
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
|
|
|
var direction = window.getComputedStyle(this.parentNode, null).direction;
|
|
|
|
if ((direction == "ltr" && aEvent.keyCode == KeyEvent.DOM_VK_RIGHT) ||
|
|
|
|
(direction == "rtl" && aEvent.keyCode == KeyEvent.DOM_VK_LEFT))
|
|
|
|
this.moveTabForward();
|
|
|
|
else
|
|
|
|
this.moveTabBackward();
|
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
2007-08-22 05:00:55 +00:00
|
|
|
|
2007-08-22 04:58:49 +00:00
|
|
|
<!-- 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"/>
|
2007-08-22 04:59:09 +00:00
|
|
|
<parameter name="aCharset"/>
|
2007-08-22 04:58:49 +00:00
|
|
|
<body>
|
|
|
|
<![CDATA[
|
2007-08-22 04:59:09 +00:00
|
|
|
return this.mCurrentBrowser.loadURI(aURI, aReferrerURI, aCharset);
|
2007-08-22 04:58:49 +00:00
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
|
|
|
<!-- throws exception for unknown schemes -->
|
|
|
|
<method name="loadURIWithFlags">
|
|
|
|
<parameter name="aURI"/>
|
|
|
|
<parameter name="aFlags"/>
|
|
|
|
<parameter name="aReferrerURI"/>
|
2007-08-22 04:59:09 +00:00
|
|
|
<parameter name="aCharset"/>
|
2007-08-22 04:58:49 +00:00
|
|
|
<body>
|
|
|
|
<![CDATA[
|
2007-08-22 04:59:09 +00:00
|
|
|
return this.mCurrentBrowser.loadURIWithFlags(aURI, aFlags, aReferrerURI, aCharset);
|
2007-08-22 04:58:49 +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>
|
2007-08-22 05:00:55 +00:00
|
|
|
|
2007-08-22 04:59:06 +00:00
|
|
|
<method name="attachFormFill">
|
|
|
|
<body><![CDATA[
|
2007-08-22 04:59:41 +00:00
|
|
|
for (var i = 0; i < this.mPanelContainer.childNodes.length; ++i) {
|
|
|
|
var cb = this.getBrowserAtIndex(i);
|
2007-08-22 04:59:15 +00:00
|
|
|
cb.attachFormFill();
|
|
|
|
}
|
2007-08-22 04:59:06 +00:00
|
|
|
]]></body>
|
|
|
|
</method>
|
|
|
|
|
|
|
|
<method name="detachFormFill">
|
|
|
|
<body><![CDATA[
|
2007-08-22 04:59:41 +00:00
|
|
|
for (var i = 0; i < this.mPanelContainer.childNodes.length; ++i) {
|
|
|
|
var cb = this.getBrowserAtIndex(i);
|
2007-08-22 04:59:15 +00:00
|
|
|
cb.detachFormFill();
|
|
|
|
}
|
2007-08-22 04:59:06 +00:00
|
|
|
]]></body>
|
|
|
|
</method>
|
2007-08-22 04:58:49 +00:00
|
|
|
|
2007-08-22 04:59:00 +00:00
|
|
|
<property name="pageReport"
|
|
|
|
onget="return this.mCurrentBrowser.pageReport;"
|
|
|
|
readonly="true"/>
|
|
|
|
|
2007-08-22 04:58:49 +00:00
|
|
|
<property name="currentURI"
|
|
|
|
onget="return this.mCurrentBrowser.currentURI;"
|
|
|
|
readonly="true"/>
|
|
|
|
|
2007-08-22 04:59:41 +00:00
|
|
|
<field name="_fastFind">null</field>
|
|
|
|
<property name="fastFind"
|
|
|
|
readonly="true">
|
|
|
|
<getter>
|
|
|
|
<![CDATA[
|
|
|
|
if (!this._fastFind) {
|
|
|
|
this._fastFind = Components.classes["@mozilla.org/typeaheadfind;1"]
|
2007-08-22 05:00:55 +00:00
|
|
|
.createInstance(Components.interfaces.nsITypeAheadFind);
|
2007-08-22 04:59:41 +00:00
|
|
|
this._fastFind.init(this.docShell);
|
|
|
|
}
|
|
|
|
return this._fastFind;
|
|
|
|
]]>
|
|
|
|
</getter>
|
|
|
|
</property>
|
2007-08-22 05:00:55 +00:00
|
|
|
|
2007-08-22 04:59:41 +00:00
|
|
|
<property name="findString"
|
|
|
|
onget="return this.mCurrentBrowser.findString;"
|
|
|
|
readonly="true"/>
|
2007-08-22 05:00:55 +00:00
|
|
|
|
2007-08-22 04:58:49 +00:00
|
|
|
<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"/>
|
|
|
|
|
2007-08-22 04:59:35 +00:00
|
|
|
<property name="contentTitle"
|
|
|
|
onget="return this.mCurrentBrowser.contentTitle;"
|
|
|
|
readonly="true"/>
|
|
|
|
|
2007-08-22 04:58:49 +00:00
|
|
|
<property name="securityUI"
|
|
|
|
onget="return this.mCurrentBrowser.securityUI;"
|
|
|
|
readonly="true"/>
|
|
|
|
|
2007-08-22 04:59:21 +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>
|
2007-08-22 05:00:02 +00:00
|
|
|
|
|
|
|
<method name="dragDropSecurityCheck">
|
|
|
|
<parameter name="aEvent"/>
|
|
|
|
<parameter name="aDragSession"/>
|
2007-08-22 05:00:22 +00:00
|
|
|
<parameter name="aUri"/>
|
2007-08-22 05:00:02 +00:00
|
|
|
<body>
|
|
|
|
<![CDATA[
|
|
|
|
// Do a security check for drag n' drop. Make sure the
|
|
|
|
// source document can load the dragged link.
|
|
|
|
var sourceDoc = aDragSession.sourceDocument;
|
|
|
|
|
|
|
|
if (sourceDoc) {
|
2007-08-22 05:00:22 +00:00
|
|
|
// Strip leading and trailing whitespace, then try to
|
|
|
|
// create a URI from the dropped string. If that
|
|
|
|
// succeeds, we're dropping a URI and we need to do a
|
|
|
|
// security check to make sure the source document can
|
|
|
|
// load the dropped URI. We don't so much care about
|
|
|
|
// creating the real URI here (i.e. encoding differences
|
|
|
|
// etc don't matter), we just want to know if aUri
|
|
|
|
// really is a URI.
|
|
|
|
|
|
|
|
var uriStr = aUri.replace(/^\s*|\s*$/g, '');
|
|
|
|
var uri = null;
|
2007-08-22 05:00:02 +00:00
|
|
|
|
|
|
|
try {
|
2007-08-22 05:00:22 +00:00
|
|
|
uri = Components.classes["@mozilla.org/network/io-service;1"]
|
|
|
|
.getService(Components.interfaces.nsIIOService)
|
|
|
|
.newURI(uriStr, null, null);
|
2007-08-22 05:00:02 +00:00
|
|
|
} catch (e) {
|
2007-08-22 05:00:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (uri) {
|
|
|
|
// aUri is a URI, do the security check.
|
|
|
|
var sourceURI = sourceDoc.documentURI;
|
|
|
|
|
|
|
|
const nsIScriptSecurityManager =
|
|
|
|
Components.interfaces.nsIScriptSecurityManager;
|
|
|
|
var secMan =
|
|
|
|
Components.classes["@mozilla.org/scriptsecuritymanager;1"]
|
|
|
|
.getService(nsIScriptSecurityManager);
|
2007-08-22 05:00:02 +00:00
|
|
|
|
2007-08-22 05:00:22 +00:00
|
|
|
try {
|
|
|
|
secMan.checkLoadURIStr(sourceURI, uriStr,
|
|
|
|
nsIScriptSecurityManager.STANDARD);
|
|
|
|
} catch (e) {
|
|
|
|
// Stop event propagation right here.
|
|
|
|
aEvent.stopPropagation();
|
|
|
|
|
|
|
|
throw "Drop of " + aUri + " denied.";
|
|
|
|
}
|
2007-08-22 05:00:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
2007-08-22 04:59:41 +00:00
|
|
|
<field name="_keyEventHandler" readonly="true">
|
|
|
|
<![CDATA[({
|
|
|
|
tabbrowser: this,
|
|
|
|
handleEvent: function handleEvent(aEvent) {
|
2007-08-22 05:00:10 +00:00
|
|
|
if (!aEvent.isTrusted) {
|
|
|
|
// Don't let untrusted events mess with tabs.
|
|
|
|
return;
|
|
|
|
}
|
2007-08-22 05:00:17 +00:00
|
|
|
|
|
|
|
if (('shiftKey' in aEvent && aEvent.shiftKey) ||
|
|
|
|
('altKey' in aEvent && aEvent.altKey))
|
|
|
|
return;
|
2007-08-22 05:00:10 +00:00
|
|
|
#ifdef XP_MACOSX
|
|
|
|
if ('metaKey' in aEvent && aEvent.metaKey) {
|
|
|
|
#else
|
2007-08-22 05:00:17 +00:00
|
|
|
if (('ctrlKey' in aEvent && aEvent.ctrlKey) &&
|
|
|
|
!('metaKey' in aEvent && aEvent.metaKey)) {
|
2007-08-22 05:00:55 +00:00
|
|
|
if (aEvent.keyCode == KeyEvent.DOM_VK_F4 &&
|
2007-08-22 05:00:10 +00:00
|
|
|
this.tabbrowser.mTabBox.handleCtrlPageUpDown) {
|
|
|
|
this.tabbrowser.removeCurrentTab();
|
2007-08-22 05:01:10 +00:00
|
|
|
|
|
|
|
aEvent.stopPropagation();
|
|
|
|
aEvent.preventDefault();
|
2007-08-22 05:00:10 +00:00
|
|
|
return;
|
|
|
|
}
|
2007-08-22 04:59:48 +00:00
|
|
|
#endif
|
2007-08-22 05:00:10 +00:00
|
|
|
if (aEvent.target.localName == "tabbrowser") {
|
|
|
|
switch (aEvent.keyCode) {
|
|
|
|
case KeyEvent.DOM_VK_UP:
|
|
|
|
this.tabbrowser.moveTabBackward();
|
|
|
|
break;
|
|
|
|
case KeyEvent.DOM_VK_DOWN:
|
|
|
|
this.tabbrowser.moveTabForward();
|
|
|
|
break;
|
|
|
|
case KeyEvent.DOM_VK_RIGHT:
|
|
|
|
case KeyEvent.DOM_VK_LEFT:
|
|
|
|
this.tabbrowser.moveTabOver(aEvent);
|
|
|
|
break;
|
|
|
|
case KeyEvent.DOM_VK_HOME:
|
|
|
|
this.tabbrowser.moveTabToStart();
|
|
|
|
break;
|
|
|
|
case KeyEvent.DOM_VK_END:
|
|
|
|
this.tabbrowser.moveTabToEnd();
|
|
|
|
break;
|
|
|
|
default:
|
2007-08-22 05:00:55 +00:00
|
|
|
// Stop the keypress event for the above keyboard
|
2007-08-22 05:00:17 +00:00
|
|
|
// shortcuts only.
|
|
|
|
return;
|
2007-08-22 05:00:10 +00:00
|
|
|
}
|
2007-08-22 05:00:17 +00:00
|
|
|
aEvent.stopPropagation();
|
|
|
|
aEvent.preventDefault();
|
2007-08-22 05:00:10 +00:00
|
|
|
}
|
|
|
|
}
|
2007-08-22 04:59:41 +00:00
|
|
|
}
|
|
|
|
})]]>
|
2007-08-22 05:00:55 +00:00
|
|
|
</field>
|
2007-08-22 04:59:21 +00:00
|
|
|
|
2007-08-22 04:59:31 +00:00
|
|
|
<property name="userTypedClear"
|
|
|
|
onget="return this.mCurrentBrowser.userTypedClear;"
|
|
|
|
onset="return this.mCurrentBrowser.userTypedClear = val;"/>
|
|
|
|
|
2007-08-22 04:59:22 +00:00
|
|
|
<property name="userTypedValue"
|
|
|
|
onget="return this.mCurrentBrowser.userTypedValue;"
|
|
|
|
onset="return this.mCurrentBrowser.userTypedValue = val;"/>
|
|
|
|
|
2007-08-22 04:59:40 +00:00
|
|
|
<property name="forceSyncURLBarUpdate"
|
|
|
|
onget="return this.mModalDialogShowing;"/>
|
2007-08-22 05:00:55 +00:00
|
|
|
|
2007-08-22 05:00:54 +00:00
|
|
|
<method name="createTooltip">
|
|
|
|
<parameter name="event"/>
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
2007-08-22 05:01:07 +00:00
|
|
|
event.stopPropagation();
|
2007-08-22 05:00:54 +00:00
|
|
|
var tn = document.tooltipNode;
|
|
|
|
if (tn.localName != "tab")
|
|
|
|
return false; // Not a tab, so cancel the tooltip
|
|
|
|
if ("mOverCloseButton" in tn && tn.mOverCloseButton) {
|
|
|
|
event.target.setAttribute("label", tn.getAttribute("closetabtext"));
|
|
|
|
return true;
|
|
|
|
}
|
2007-08-22 05:00:55 +00:00
|
|
|
if (tn.hasAttribute("label")) {
|
|
|
|
event.target.setAttribute("label", tn.getAttribute("label"));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
2007-08-22 05:00:54 +00:00
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
2007-08-22 04:59:40 +00:00
|
|
|
|
2007-08-22 04:58:49 +00:00
|
|
|
<constructor>
|
|
|
|
<![CDATA[
|
2007-08-22 05:01:12 +00:00
|
|
|
this.mCurrentBrowser = this.mPanelContainer.childNodes[0].firstChild;
|
2007-08-22 04:59:22 +00:00
|
|
|
this.mCurrentTab = this.mTabContainer.firstChild;
|
2007-08-22 04:59:41 +00:00
|
|
|
document.addEventListener("keypress", this._keyEventHandler, false);
|
2007-08-22 05:00:10 +00:00
|
|
|
|
|
|
|
var uniqueId = "panel" + Date.now();
|
|
|
|
this.mPanelContainer.childNodes[0].id = uniqueId;
|
|
|
|
this.mTabContainer.childNodes[0].linkedPanel = uniqueId;
|
|
|
|
this.mTabContainer.childNodes[0]._tPos = 0;
|
2007-08-22 05:01:12 +00:00
|
|
|
this.mTabContainer.childNodes[0].linkedBrowser = this.mPanelContainer.childNodes[0].firstChild;
|
2007-08-22 04:58:49 +00:00
|
|
|
]]>
|
|
|
|
</constructor>
|
|
|
|
|
|
|
|
<destructor>
|
|
|
|
<![CDATA[
|
|
|
|
for (var i = 0; i < this.mTabListeners.length; ++i) {
|
2007-08-22 04:59:41 +00:00
|
|
|
this.getBrowserAtIndex(i).webProgress.removeProgressListener(this.mTabFilters[i]);
|
2007-08-22 04:58:49 +00:00
|
|
|
this.mTabFilters[i].removeProgressListener(this.mTabListeners[i]);
|
|
|
|
this.mTabFilters[i] = null;
|
|
|
|
this.mTabListeners[i] = null;
|
2007-08-22 05:01:16 +00:00
|
|
|
this.getBrowserAtIndex(i).removeEventListener("DOMTitleChanged", this.onTitleChanged, true);
|
2007-08-22 04:58:49 +00:00
|
|
|
}
|
2007-08-22 04:59:41 +00:00
|
|
|
document.removeEventListener("keypress", this._keyEventHandler, false);
|
2007-08-22 04:58:49 +00:00
|
|
|
]]>
|
|
|
|
</destructor>
|
|
|
|
</implementation>
|
|
|
|
|
|
|
|
<handlers>
|
2007-08-22 05:01:16 +00:00
|
|
|
<handler event="DOMLinkAdded" phase="capturing" action="this.onLinkAdded(event);"/>
|
2007-08-22 05:01:04 +00:00
|
|
|
|
2007-08-22 05:01:16 +00:00
|
|
|
<handler event="DOMWindowClose" phase="capturing">
|
2007-08-22 04:58:49 +00:00
|
|
|
<![CDATA[
|
2007-08-22 04:59:39 +00:00
|
|
|
if (!event.isTrusted)
|
|
|
|
return;
|
|
|
|
|
2007-08-22 04:59:41 +00:00
|
|
|
const browsers = this.mPanelContainer.childNodes;
|
|
|
|
if (browsers.length == 1) {
|
|
|
|
// There's only one browser left. If a window is being
|
|
|
|
// closed and the window is *not* the window in the
|
|
|
|
// browser that's still around, prevent the event's default
|
|
|
|
// action to prevent closing a window that's being closed
|
|
|
|
// already.
|
|
|
|
if (this.getBrowserAtIndex(0).contentWindow != event.target)
|
|
|
|
event.preventDefault();
|
|
|
|
|
2007-08-22 04:58:49 +00:00
|
|
|
return;
|
2007-08-22 04:59:41 +00:00
|
|
|
}
|
|
|
|
|
2007-08-22 04:58:49 +00:00
|
|
|
var i = 0;
|
|
|
|
for (; i < browsers.length; ++i) {
|
2007-08-22 04:59:41 +00:00
|
|
|
if (this.getBrowserAtIndex(i).contentWindow == event.target) {
|
|
|
|
this.removeTab(this.mTabContainer.childNodes[i]);
|
|
|
|
event.preventDefault();
|
|
|
|
|
2007-08-22 04:58:49 +00:00
|
|
|
break;
|
2007-08-22 04:59:41 +00:00
|
|
|
}
|
2007-08-22 04:58:49 +00:00
|
|
|
}
|
|
|
|
]]>
|
|
|
|
</handler>
|
2007-08-22 05:01:16 +00:00
|
|
|
<handler event="DOMWillOpenModalDialog" phase="capturing">
|
2007-08-22 04:59:40 +00:00
|
|
|
<![CDATA[
|
|
|
|
if (!event.isTrusted)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// We're about to open a modal dialog, make sure the opening
|
|
|
|
// tab is brought to the front.
|
|
|
|
|
2007-08-22 05:00:09 +00:00
|
|
|
var targetTop = event.target.top;
|
2007-08-22 04:59:52 +00:00
|
|
|
|
2007-08-22 04:59:40 +00:00
|
|
|
for (var i = 0; i < browsers.length; ++i) {
|
2007-08-22 04:59:52 +00:00
|
|
|
if (this.getBrowserAtIndex(i).contentWindow == targetTop) {
|
2007-08-22 04:59:40 +00:00
|
|
|
this.mModalDialogShowing = true;
|
|
|
|
this.selectedTab = this.mTabContainer.childNodes[i];
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]]>
|
|
|
|
</handler>
|
2007-08-22 05:01:16 +00:00
|
|
|
<handler event="DOMModalDialogClosed" phase="capturing">
|
2007-08-22 04:59:40 +00:00
|
|
|
<![CDATA[
|
|
|
|
if (!event.isTrusted)
|
|
|
|
return;
|
|
|
|
|
|
|
|
this.mModalDialogShowing = false;
|
|
|
|
]]>
|
|
|
|
</handler>
|
2007-08-22 04:58:49 +00:00
|
|
|
</handlers>
|
|
|
|
</binding>
|
2007-08-22 05:00:55 +00:00
|
|
|
|
|
|
|
<binding id="tabbrowser-tabs"
|
2007-08-22 05:00:54 +00:00
|
|
|
extends="chrome://global/content/bindings/tabbox.xml#tabs">
|
|
|
|
<content>
|
2007-08-22 05:01:25 +00:00
|
|
|
<xul:arrowscrollbox anonid="arrowscrollbox" orient="horizontal" flex="1" style="min-width: 1px;" clicktoscroll="true">
|
2007-08-22 05:00:54 +00:00
|
|
|
<children includes="tab"/>
|
2007-08-22 05:01:25 +00:00
|
|
|
</xul:arrowscrollbox>
|
|
|
|
<xul:hbox class="tabs-closebutton-box" align="center" pack="end" anonid="tabstrip-closebutton">
|
|
|
|
<xul:toolbarbutton ondblclick="event.stopPropagation();"
|
|
|
|
class="close-button tabs-closebutton"
|
2007-08-22 05:01:26 +00:00
|
|
|
oncommand="this.parentNode.parentNode.parentNode.parentNode.parentNode.removeCurrentTab()"/>
|
2007-08-22 05:00:54 +00:00
|
|
|
</xul:hbox>
|
|
|
|
</content>
|
2007-08-22 05:01:22 +00:00
|
|
|
<implementation>
|
2007-08-22 05:00:54 +00:00
|
|
|
<constructor>
|
2007-08-22 05:01:27 +00:00
|
|
|
<![CDATA[
|
|
|
|
var pb2 =
|
|
|
|
Components.classes['@mozilla.org/preferences-service;1'].
|
|
|
|
getService(Components.interfaces.nsIPrefBranch2);
|
|
|
|
try {
|
|
|
|
this.mTabMinWidth = pb2.getIntPref("browser.tabs.tabMinWidth");
|
|
|
|
this.mTabClipWidth = pb2.getIntPref("browser.tabs.tabClipWidth");
|
|
|
|
this.mCloseButtons = pb2.getIntPref("browser.tabs.closeButtons");
|
|
|
|
}
|
|
|
|
catch (e) {
|
|
|
|
}
|
2007-08-22 05:00:55 +00:00
|
|
|
|
2007-08-22 05:01:27 +00:00
|
|
|
this.firstChild.minWidth = this.mTabMinWidth;
|
|
|
|
this._updateDisableBackgroundClose();
|
|
|
|
this.adjustTabstrip(false);
|
2007-08-22 05:01:25 +00:00
|
|
|
|
2007-08-22 05:01:27 +00:00
|
|
|
pb2.addObserver("browser.tabs.disableBackgroundClose", this._prefObserver, true);
|
|
|
|
pb2.addObserver("browser.tabs.closeButtons", this._prefObserver, true);
|
2007-08-22 05:00:55 +00:00
|
|
|
|
2007-08-22 05:01:27 +00:00
|
|
|
var self = this;
|
|
|
|
function onResize() {
|
2007-08-22 05:01:28 +00:00
|
|
|
var width = self.mTabstrip.boxObject.width;
|
|
|
|
if (width != self.mTabstripWidth) {
|
|
|
|
self.adjustTabstrip(false);
|
|
|
|
self.mTabstrip.scrollByIndex(1);
|
|
|
|
self.mTabstrip.scrollBoxObject
|
|
|
|
.ensureElementIsVisible(self.selectedItem);
|
|
|
|
self.mTabstripWidth = width;
|
|
|
|
}
|
2007-08-22 05:01:27 +00:00
|
|
|
}
|
|
|
|
window.addEventListener("resize", onResize, false);
|
|
|
|
]]>
|
2007-08-22 05:00:54 +00:00
|
|
|
</constructor>
|
2007-08-22 05:00:55 +00:00
|
|
|
|
2007-08-22 05:01:28 +00:00
|
|
|
<field name="mTabstripWidth">0</field>
|
|
|
|
|
2007-08-22 05:01:25 +00:00
|
|
|
<field name="mTabstrip">
|
|
|
|
document.getAnonymousElementByAttribute(this, "anonid", "arrowscrollbox");
|
|
|
|
</field>
|
|
|
|
|
|
|
|
<field name="mTabstripClosebutton">
|
|
|
|
document.getAnonymousElementByAttribute(this, "anonid", "tabstrip-closebutton");
|
|
|
|
</field>
|
|
|
|
|
2007-08-22 05:00:54 +00:00
|
|
|
<method name="_updateDisableBackgroundClose">
|
|
|
|
<body><![CDATA[
|
2007-08-22 05:00:55 +00:00
|
|
|
var prefs =
|
2007-08-22 05:00:54 +00:00
|
|
|
Components.classes['@mozilla.org/preferences-service;1'].
|
|
|
|
getService(Components.interfaces.nsIPrefBranch);
|
|
|
|
try {
|
|
|
|
if (prefs.getBoolPref("browser.tabs.disableBackgroundClose"))
|
|
|
|
this.setAttribute("disablebackgroundclose", "true");
|
|
|
|
else
|
|
|
|
this.removeAttribute("disablebackgroundclose");
|
|
|
|
}
|
|
|
|
catch (e) {
|
|
|
|
this.setAttribute("disablebackgroundclose", "true");
|
|
|
|
}
|
|
|
|
]]></body>
|
|
|
|
</method>
|
2007-08-22 05:01:25 +00:00
|
|
|
|
2007-08-22 05:01:22 +00:00
|
|
|
<field name="_prefObserver">({
|
|
|
|
tabbox: this,
|
|
|
|
|
|
|
|
observe: function(subject, topic, data)
|
|
|
|
{
|
2007-08-22 05:01:25 +00:00
|
|
|
if (topic == "nsPref:changed") {
|
|
|
|
switch (data) {
|
|
|
|
case "browser.tabs.disableBackgroundClose":
|
2007-08-22 05:01:26 +00:00
|
|
|
this.tabbox._updateDisableBackgroundClose();
|
2007-08-22 05:01:25 +00:00
|
|
|
break;
|
|
|
|
case "browser.tabs.closeButtons":
|
|
|
|
var pb2 =
|
|
|
|
Components.classes['@mozilla.org/preferences-service;1'].
|
|
|
|
getService(Components.interfaces.nsIPrefBranch2);
|
2007-08-22 05:01:26 +00:00
|
|
|
this.tabbox.mCloseButtons = pb2.getIntPref("browser.tabs.closeButtons");
|
|
|
|
this.tabbox.adjustTabstrip(false);
|
2007-08-22 05:01:25 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2007-08-22 05:01:22 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
QueryInterface : function(aIID)
|
|
|
|
{
|
|
|
|
if (aIID.equals(Components.interfaces.nsIObserver) ||
|
|
|
|
aIID.equals(Components.interfaces.nsISupportsWeakReference) ||
|
|
|
|
aIID.equals(Components.interfaces.nsISupports))
|
|
|
|
return this;
|
|
|
|
throw Components.results.NS_NOINTERFACE;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</field>
|
2007-08-22 05:01:27 +00:00
|
|
|
<field name="mTabMinWidth">125</field>
|
|
|
|
<field name="mTabClipWidth">115</field>
|
2007-08-22 05:01:25 +00:00
|
|
|
<field name="mCloseButtons">1</field>
|
|
|
|
|
|
|
|
<method name="adjustTabstrip">
|
|
|
|
<parameter name="aRemovingTab"/>
|
2007-08-22 05:00:54 +00:00
|
|
|
<body><![CDATA[
|
2007-08-22 05:01:25 +00:00
|
|
|
// modes for tabstrip
|
|
|
|
// 0 - activetab = close button on active tab only
|
|
|
|
// 1 - alltabs = close buttons on all tabs
|
|
|
|
// 2 - noclose = no close buttons at all
|
|
|
|
// 3 - closeatend = close button at the end of the tabstrip
|
|
|
|
switch (this.mCloseButtons) {
|
|
|
|
case 0:
|
|
|
|
// TabClose fires before the tab closes, so if we have two tabs
|
|
|
|
// and we're removing the tab we should go to no closebutton
|
|
|
|
if ((aRemovingTab && this.childNodes.length == 2) ||
|
|
|
|
this.childNodes.length == 1)
|
|
|
|
this.setAttribute("closebuttons", "noclose");
|
2007-08-22 05:00:54 +00:00
|
|
|
else
|
2007-08-22 05:01:25 +00:00
|
|
|
this.setAttribute("closebuttons", "activetab");
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
try {
|
|
|
|
// if we have only one tab, hide the closebutton
|
|
|
|
if ((aRemovingTab && this.childNodes.length == 2) ||
|
|
|
|
this.childNodes.length == 1)
|
|
|
|
this.setAttribute("closebuttons", "noclose");
|
|
|
|
else {
|
2007-08-22 05:01:27 +00:00
|
|
|
var width = this.firstChild.boxObject.width;
|
|
|
|
// 0 width is an invalid value and indicates
|
|
|
|
// an item without display, so ignore.
|
|
|
|
if (width > this.mTabClipWidth || width == 0)
|
2007-08-22 05:01:25 +00:00
|
|
|
this.setAttribute("closebuttons", "alltabs");
|
2007-08-22 05:01:27 +00:00
|
|
|
else
|
2007-08-22 05:01:25 +00:00
|
|
|
this.setAttribute("closebuttons", "activetab");
|
|
|
|
}
|
2007-08-22 05:01:27 +00:00
|
|
|
}
|
|
|
|
catch (e) {
|
|
|
|
}
|
2007-08-22 05:01:25 +00:00
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
case 3:
|
|
|
|
this.setAttribute("closebuttons", "noclose");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
this.mTabstripClosebutton.collapsed = this.mCloseButtons != 3;
|
|
|
|
if (aRemovingTab) {
|
|
|
|
// if we're at the end of the tabstrip, we need to ensure
|
|
|
|
// that we stay completely scrolled to the end
|
|
|
|
// this is a hack to determine if that's where we are already
|
|
|
|
var tabWidth = this.firstChild.boxObject.width;
|
|
|
|
var scrollPos = {};
|
|
|
|
this.mTabstrip.scrollBoxObject.getPosition(scrollPos, {});
|
|
|
|
if (scrollPos.value + this.mTabstrip.boxObject.width > tabWidth * (this.childNodes.length - 1))
|
|
|
|
this.mTabstrip.scrollByPixels(-1 * this.firstChild.boxObject.width);
|
|
|
|
}
|
|
|
|
]]></body>
|
|
|
|
</method>
|
|
|
|
|
|
|
|
<field name="_mPrefs">null</field>
|
|
|
|
<property name="mPrefs" readonly="true">
|
|
|
|
<getter>
|
|
|
|
<![CDATA[
|
|
|
|
if (!this._mPrefs) {
|
|
|
|
this._mPrefs =
|
|
|
|
Components.classes['@mozilla.org/preferences-service;1'].
|
|
|
|
getService(Components.interfaces.nsIPrefBranch2);
|
|
|
|
}
|
|
|
|
return this._mPrefs;
|
|
|
|
]]>
|
|
|
|
</getter>
|
|
|
|
</property>
|
|
|
|
|
|
|
|
<method name="_handleTabSelect">
|
|
|
|
<body><![CDATA[
|
|
|
|
this.mTabstrip.scrollBoxObject.ensureElementIsVisible(this.selectedItem);
|
|
|
|
]]></body>
|
|
|
|
</method>
|
|
|
|
|
2007-08-22 05:00:54 +00:00
|
|
|
</implementation>
|
2007-08-22 05:01:25 +00:00
|
|
|
|
2007-08-22 05:00:54 +00:00
|
|
|
<handlers>
|
2007-08-22 05:01:25 +00:00
|
|
|
<handler event="TabOpen" action="this.adjustTabstrip(false);"/>
|
|
|
|
<handler event="TabClose" action="this.adjustTabstrip(true);"/>
|
2007-08-22 05:01:28 +00:00
|
|
|
<handler event="TabSelect" action="this._handleTabSelect();"/>
|
2007-08-22 05:00:54 +00:00
|
|
|
</handlers>
|
2007-08-22 05:00:55 +00:00
|
|
|
</binding>
|
|
|
|
|
2007-08-22 05:00:54 +00:00
|
|
|
<binding id="tabbrowser-tab" display="xul:box"
|
|
|
|
extends="chrome://global/content/bindings/tabbox.xml#tab">
|
2007-08-22 05:00:57 +00:00
|
|
|
<content chromedir="&locale.dir;"
|
2007-08-22 05:00:54 +00:00
|
|
|
closetabtext="&closeTab.label;">
|
|
|
|
<xul:hbox class="tab-middle box-inherit" xbl:inherits="align,dir,pack,orient,selected" flex="1">
|
|
|
|
<xul:image class="tab-icon" xbl:inherits="validate,src=image"/>
|
|
|
|
<xul:label class="tab-text" xbl:inherits="value=label,accesskey,crop,disabled" flex="1"/>
|
|
|
|
</xul:hbox>
|
|
|
|
<xul:image anonid="close-button-placeholder" class="tab-close-button-placeholder"/>
|
|
|
|
<xul:toolbarbutton anonid="close-button" class="tab-close-button"/>
|
|
|
|
</content>
|
2007-08-22 05:00:55 +00:00
|
|
|
|
2007-08-22 05:00:54 +00:00
|
|
|
<implementation>
|
|
|
|
<field name="mOverCloseButton">false</field>
|
|
|
|
</implementation>
|
|
|
|
|
|
|
|
<handlers>
|
|
|
|
<handler event="mouseover">
|
|
|
|
var anonid = event.originalTarget.getAttribute("anonid");
|
|
|
|
if (anonid == "close-button")
|
|
|
|
this.mOverCloseButton = true;
|
|
|
|
</handler>
|
|
|
|
<handler event="mouseout">
|
|
|
|
var anonid = event.originalTarget.getAttribute("anonid");
|
|
|
|
if (anonid == "close-button")
|
|
|
|
this.mOverCloseButton = false;
|
|
|
|
</handler>
|
|
|
|
<handler event="command">
|
|
|
|
<![CDATA[
|
|
|
|
var anonid = event.originalTarget.getAttribute("anonid");
|
|
|
|
if (anonid == "close-button")
|
|
|
|
this.parentNode.parentNode.parentNode.parentNode.removeTab(this);
|
|
|
|
]]>
|
|
|
|
</handler>
|
|
|
|
<handler event="mousedown" button="0" phase="capturing">
|
|
|
|
<![CDATA[
|
|
|
|
if (this.mOverCloseButton)
|
|
|
|
event.stopPropagation();
|
|
|
|
]]>
|
|
|
|
</handler>
|
|
|
|
</handlers>
|
|
|
|
</binding>
|
2007-08-22 04:58:49 +00:00
|
|
|
|
|
|
|
</bindings>
|