mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
1140 lines
53 KiB
XML
1140 lines
53 KiB
XML
#filter substitution
|
|
<?xml version="1.0"?>
|
|
# -*- Mode: HTML -*-
|
|
#
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
<?xml-stylesheet href="chrome://browser/content/browser.css" type="text/css"?>
|
|
<?xml-stylesheet href="chrome://browser/content/places/places.css" type="text/css"?>
|
|
<?xml-stylesheet href="chrome://browser/skin/devtools/common.css" type="text/css"?>
|
|
<?xml-stylesheet href="chrome://browser/skin/customizableui/panelUIOverlay.css" type="text/css"?>
|
|
<?xml-stylesheet href="chrome://browser/skin/" type="text/css"?>
|
|
<?xml-stylesheet href="chrome://browser/skin/browser-lightweightTheme.css" type="text/css"?>
|
|
|
|
<?xul-overlay href="chrome://global/content/editMenuOverlay.xul"?>
|
|
<?xul-overlay href="chrome://browser/content/baseMenuOverlay.xul"?>
|
|
<?xul-overlay href="chrome://browser/content/places/placesOverlay.xul"?>
|
|
|
|
# All DTD information is stored in a separate file so that it can be shared by
|
|
# hiddenWindow.xul.
|
|
#include browser-doctype.inc
|
|
|
|
<window id="main-window"
|
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
xmlns:svg="http://www.w3.org/2000/svg"
|
|
xmlns:html="http://www.w3.org/1999/xhtml"
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
onload="gBrowserInit.onLoad()" onunload="gBrowserInit.onUnload()" onclose="return WindowIsClosing();"
|
|
title="&mainWindow.title;@PRE_RELEASE_SUFFIX@"
|
|
title_normal="&mainWindow.title;@PRE_RELEASE_SUFFIX@"
|
|
#ifdef XP_MACOSX
|
|
title_privatebrowsing="&mainWindow.title;@PRE_RELEASE_SUFFIX@&mainWindow.titlemodifiermenuseparator;&mainWindow.titlePrivateBrowsingSuffix;"
|
|
titledefault="&mainWindow.title;@PRE_RELEASE_SUFFIX@"
|
|
titlemodifier=""
|
|
titlemodifier_normal=""
|
|
titlemodifier_privatebrowsing="&mainWindow.titlePrivateBrowsingSuffix;"
|
|
#else
|
|
title_privatebrowsing="&mainWindow.titlemodifier;@PRE_RELEASE_SUFFIX@ &mainWindow.titlePrivateBrowsingSuffix;"
|
|
titlemodifier="&mainWindow.titlemodifier;@PRE_RELEASE_SUFFIX@"
|
|
titlemodifier_normal="&mainWindow.titlemodifier;@PRE_RELEASE_SUFFIX@"
|
|
titlemodifier_privatebrowsing="&mainWindow.titlemodifier;@PRE_RELEASE_SUFFIX@ &mainWindow.titlePrivateBrowsingSuffix;"
|
|
#endif
|
|
#ifdef CAN_DRAW_IN_TITLEBAR
|
|
#ifdef XP_WIN
|
|
chromemargin="0,2,2,2"
|
|
#else
|
|
chromemargin="0,-1,-1,-1"
|
|
#endif
|
|
tabsintitlebar="true"
|
|
#endif
|
|
titlemenuseparator="&mainWindow.titlemodifiermenuseparator;"
|
|
lightweightthemes="true"
|
|
lightweightthemesfooter="browser-bottombox"
|
|
windowtype="navigator:browser"
|
|
macanimationtype="document"
|
|
screenX="4" screenY="4"
|
|
fullscreenbutton="true"
|
|
sizemode="normal"
|
|
persist="screenX screenY width height sizemode">
|
|
|
|
# All JS files which are not content (only) dependent that browser.xul
|
|
# wishes to include *must* go into the global-scripts.inc file
|
|
# so that they can be shared by macBrowserOverlay.xul.
|
|
#include global-scripts.inc
|
|
<script type="application/javascript" src="chrome://browser/content/nsContextMenu.js"/>
|
|
|
|
<script type="application/javascript" src="chrome://global/content/contentAreaUtils.js"/>
|
|
|
|
<script type="application/javascript" src="chrome://browser/content/places/editBookmarkOverlay.js"/>
|
|
|
|
# All sets except for popupsets (commands, keys, stringbundles and broadcasters) *must* go into the
|
|
# browser-sets.inc file for sharing with hiddenWindow.xul.
|
|
#define FULL_BROWSER_WINDOW
|
|
#include browser-sets.inc
|
|
#undef FULL_BROWSER_WINDOW
|
|
|
|
<popupset id="mainPopupSet">
|
|
<menupopup id="tabContextMenu"
|
|
onpopupshowing="if (event.target == this) TabContextMenu.updateContextMenu(this);"
|
|
onpopuphidden="if (event.target == this) TabContextMenu.contextTab = null;">
|
|
<menuitem id="context_reloadTab" label="&reloadTab.label;" accesskey="&reloadTab.accesskey;"
|
|
oncommand="gBrowser.reloadTab(TabContextMenu.contextTab);"/>
|
|
<menuseparator/>
|
|
<menuitem id="context_pinTab" label="&pinTab.label;"
|
|
accesskey="&pinTab.accesskey;"
|
|
oncommand="gBrowser.pinTab(TabContextMenu.contextTab);"/>
|
|
<menuitem id="context_unpinTab" label="&unpinTab.label;" hidden="true"
|
|
accesskey="&unpinTab.accesskey;"
|
|
oncommand="gBrowser.unpinTab(TabContextMenu.contextTab);"/>
|
|
<menu id="context_tabViewMenu" label="&moveToGroup.label;"
|
|
accesskey="&moveToGroup.accesskey;">
|
|
<menupopup id="context_tabViewMenuPopup"
|
|
onpopupshowing="if (event.target == this) TabView.moveToGroupPopupShowing(event);">
|
|
<menuseparator id="context_tabViewNamedGroups" hidden="true"/>
|
|
<menuitem id="context_tabViewNewGroup" label="&moveToNewGroup.label;"
|
|
oncommand="TabView.moveTabTo(TabContextMenu.contextTab, null);"/>
|
|
</menupopup>
|
|
</menu>
|
|
<menuitem id="context_openTabInWindow" label="&moveToNewWindow.label;"
|
|
accesskey="&moveToNewWindow.accesskey;"
|
|
tbattr="tabbrowser-multiple"
|
|
oncommand="gBrowser.replaceTabWithWindow(TabContextMenu.contextTab);"/>
|
|
<menuseparator/>
|
|
<menuitem id="context_reloadAllTabs" label="&reloadAllTabs.label;" accesskey="&reloadAllTabs.accesskey;"
|
|
tbattr="tabbrowser-multiple-visible"
|
|
oncommand="gBrowser.reloadAllTabs();"/>
|
|
<menuitem id="context_bookmarkAllTabs"
|
|
label="&bookmarkAllTabs.label;"
|
|
accesskey="&bookmarkAllTabs.accesskey;"
|
|
command="Browser:BookmarkAllTabs"/>
|
|
<menuitem id="context_closeTabsToTheEnd" label="&closeTabsToTheEnd.label;" accesskey="&closeTabsToTheEnd.accesskey;"
|
|
oncommand="gBrowser.removeTabsToTheEndFrom(TabContextMenu.contextTab);"/>
|
|
<menuitem id="context_closeOtherTabs" label="&closeOtherTabs.label;" accesskey="&closeOtherTabs.accesskey;"
|
|
oncommand="gBrowser.removeAllTabsBut(TabContextMenu.contextTab);"/>
|
|
<menuseparator/>
|
|
<menuitem id="context_undoCloseTab"
|
|
singletablabel="&undoCloseTab.label;"
|
|
multipletablabel="&undoCloseTabs.label;"
|
|
accesskey="&undoCloseTab.accesskey;"
|
|
observes="History:UndoCloseTab"/>
|
|
<menuitem id="context_closeTab" label="&closeTab.label;" accesskey="&closeTab.accesskey;"
|
|
oncommand="gBrowser.removeTab(TabContextMenu.contextTab, { animate: true });"/>
|
|
</menupopup>
|
|
|
|
<!-- bug 415444/582485: event.stopPropagation is here for the cloned version
|
|
of this menupopup -->
|
|
<menupopup id="backForwardMenu"
|
|
onpopupshowing="return FillHistoryMenu(event.target);"
|
|
oncommand="gotoHistoryIndex(event); event.stopPropagation();"
|
|
onclick="checkForMiddleClick(this, event);"/>
|
|
<tooltip id="aHTMLTooltip" page="true"/>
|
|
|
|
<!-- for search and content formfill/pw manager -->
|
|
<panel type="autocomplete" id="PopupAutoComplete" noautofocus="true" hidden="true"/>
|
|
|
|
<!-- for url bar autocomplete -->
|
|
<panel type="autocomplete-richlistbox" id="PopupAutoCompleteRichResult" noautofocus="true" hidden="true"/>
|
|
|
|
<!-- for select dropdowns -->
|
|
<menupopup id="ContentSelectDropdown" rolluponmousewheel="true" hidden="true"/>
|
|
|
|
<!-- for invalid form error message -->
|
|
<panel id="invalid-form-popup" type="arrow" orient="vertical" noautofocus="true" hidden="true" level="parent">
|
|
<description/>
|
|
</panel>
|
|
|
|
<panel id="editBookmarkPanel"
|
|
type="arrow"
|
|
footertype="promobox"
|
|
orient="vertical"
|
|
ignorekeys="true"
|
|
consumeoutsideclicks="true"
|
|
hidden="true"
|
|
onpopupshown="StarUI.panelShown(event);"
|
|
aria-labelledby="editBookmarkPanelTitle">
|
|
<row id="editBookmarkPanelHeader" align="center" hidden="true">
|
|
<vbox align="center">
|
|
<image id="editBookmarkPanelStarIcon"/>
|
|
</vbox>
|
|
<vbox>
|
|
<label id="editBookmarkPanelTitle"/>
|
|
<description id="editBookmarkPanelDescription"/>
|
|
<hbox>
|
|
<button id="editBookmarkPanelRemoveButton"
|
|
class="editBookmarkPanelHeaderButton"
|
|
oncommand="StarUI.removeBookmarkButtonCommand();"
|
|
accesskey="&editBookmark.removeBookmark.accessKey;"/>
|
|
</hbox>
|
|
</vbox>
|
|
</row>
|
|
<vbox id="editBookmarkPanelContent" flex="1" hidden="true"/>
|
|
<hbox id="editBookmarkPanelBottomButtons" pack="end">
|
|
#ifndef XP_UNIX
|
|
<button id="editBookmarkPanelDoneButton"
|
|
class="editBookmarkPanelBottomButton"
|
|
label="&editBookmark.done.label;"
|
|
default="true"
|
|
oncommand="StarUI.panel.hidePopup();"/>
|
|
<button id="editBookmarkPanelDeleteButton"
|
|
class="editBookmarkPanelBottomButton"
|
|
label="&editBookmark.cancel.label;"
|
|
oncommand="StarUI.cancelButtonOnCommand();"/>
|
|
#else
|
|
<button id="editBookmarkPanelDeleteButton"
|
|
class="editBookmarkPanelBottomButton"
|
|
label="&editBookmark.cancel.label;"
|
|
oncommand="StarUI.cancelButtonOnCommand();"/>
|
|
<button id="editBookmarkPanelDoneButton"
|
|
class="editBookmarkPanelBottomButton"
|
|
label="&editBookmark.done.label;"
|
|
default="true"
|
|
oncommand="StarUI.panel.hidePopup();"/>
|
|
#endif
|
|
</hbox>
|
|
</panel>
|
|
|
|
<panel id="socialActivatedNotification"
|
|
type="arrow"
|
|
hidden="true"
|
|
consumeoutsideclicks="true"
|
|
align="start"
|
|
orient="horizontal"
|
|
role="alert">
|
|
<image id="social-activation-icon" class="popup-notification-icon"/>
|
|
<vbox flex="1">
|
|
<description id="social-activation-message" class="popup-notification-description">&social.activated.description;</description>
|
|
<spacer flex="1"/>
|
|
<hbox pack="start" align="center" class="popup-notification-button-container">
|
|
<label id="social-undoactivation-button"
|
|
class="text-link"
|
|
value="&social.activated.undo.label;"
|
|
accesskey="&social.activated.undo.accesskey;"
|
|
onclick="SocialUI.undoActivation(this);"/>
|
|
<spacer flex="1"/>
|
|
<button id="social-activation-button"
|
|
default="true"
|
|
autofocus="autofocus"
|
|
label="&social.ok.label;"
|
|
accesskey="&social.ok.accesskey;"
|
|
oncommand="SocialUI.activationPanel.hidePopup();"/>
|
|
</hbox>
|
|
</vbox>
|
|
</panel>
|
|
|
|
<panel id="social-share-panel"
|
|
class="social-panel"
|
|
type="arrow"
|
|
orient="horizontal"
|
|
onpopupshowing="SocialShare.onShowing()"
|
|
onpopuphidden="SocialShare.onHidden()"
|
|
consumeoutsideclicks="true"
|
|
hidden="true">
|
|
<vbox class="social-share-toolbar">
|
|
<vbox id="social-share-provider-buttons" flex="1"/>
|
|
</vbox>
|
|
</panel>
|
|
|
|
<panel id="social-notification-panel"
|
|
class="social-panel"
|
|
type="arrow"
|
|
hidden="true"
|
|
noautofocus="true"/>
|
|
<panel id="social-flyout-panel"
|
|
class="social-panel"
|
|
onpopupshown="SocialFlyout.onShown()"
|
|
onpopuphidden="SocialFlyout.onHidden()"
|
|
side="right"
|
|
type="arrow"
|
|
hidden="true"
|
|
flip="slide"
|
|
rolluponmousewheel="true"
|
|
consumeoutsideclicks="false"
|
|
noautofocus="true"
|
|
position="topcenter topright"/>
|
|
|
|
<menupopup id="toolbar-context-menu"
|
|
onpopupshowing="onViewToolbarsPopupShowing(event);">
|
|
<menuseparator/>
|
|
<menuitem command="cmd_CustomizeToolbars"
|
|
label="&viewCustomizeToolbar.label;"
|
|
accesskey="&viewCustomizeToolbar.accesskey;"/>
|
|
</menupopup>
|
|
|
|
<menupopup id="blockedPopupOptions"
|
|
onpopupshowing="gPopupBlockerObserver.fillPopupList(event);"
|
|
onpopuphiding="gPopupBlockerObserver.onPopupHiding(event);">
|
|
<menuitem observes="blockedPopupAllowSite"/>
|
|
<menuitem observes="blockedPopupEditSettings"/>
|
|
<menuitem observes="blockedPopupDontShowMessage"/>
|
|
<menuseparator observes="blockedPopupsSeparator"/>
|
|
</menupopup>
|
|
|
|
<menupopup id="autohide-context"
|
|
onpopupshowing="FullScreen.getAutohide(this.firstChild);">
|
|
<menuitem type="checkbox" label="&fullScreenAutohide.label;"
|
|
accesskey="&fullScreenAutohide.accesskey;"
|
|
oncommand="FullScreen.setAutohide();"/>
|
|
<menuseparator/>
|
|
<menuitem label="&fullScreenExit.label;"
|
|
accesskey="&fullScreenExit.accesskey;"
|
|
oncommand="BrowserFullScreen();"/>
|
|
</menupopup>
|
|
|
|
<menupopup id="contentAreaContextMenu" pagemenu="start"
|
|
onpopupshowing="if (event.target != this)
|
|
return true;
|
|
gContextMenu = new nsContextMenu(this, event.shiftKey);
|
|
if (gContextMenu.shouldDisplay)
|
|
updateEditUIVisibility();
|
|
return gContextMenu.shouldDisplay;"
|
|
onpopuphiding="if (event.target != this)
|
|
return;
|
|
gContextMenu.hiding();
|
|
gContextMenu = null;
|
|
updateEditUIVisibility();">
|
|
#include browser-context.inc
|
|
</menupopup>
|
|
|
|
<menupopup id="placesContext"/>
|
|
|
|
<!-- Popup for site identity information -->
|
|
<panel id="identity-popup"
|
|
type="arrow"
|
|
hidden="true"
|
|
noautofocus="true"
|
|
consumeoutsideclicks="true"
|
|
onpopupshown="if (event.target == this)
|
|
gIdentityHandler.onPopupShown(event);"
|
|
orient="vertical"
|
|
level="top">
|
|
<hbox id="identity-popup-container" align="top">
|
|
<image id="identity-popup-icon"/>
|
|
<vbox id="identity-popup-content-box">
|
|
<label id="identity-popup-brandName"
|
|
class="identity-popup-label"
|
|
value="&brandFullName;"/>
|
|
<label id="identity-popup-chromeLabel"
|
|
class="identity-popup-label"/>
|
|
<label id="identity-popup-connectedToLabel"
|
|
class="identity-popup-label"
|
|
value="&identity.connectedTo;"/>
|
|
<label id="identity-popup-connectedToLabel2"
|
|
class="identity-popup-label"
|
|
value="&identity.unverifiedsite2;"/>
|
|
<description id="identity-popup-content-host"
|
|
class="identity-popup-description"/>
|
|
<label id="identity-popup-runByLabel"
|
|
class="identity-popup-label"
|
|
value="&identity.runBy;"/>
|
|
<description id="identity-popup-content-owner"
|
|
class="identity-popup-description"/>
|
|
<description id="identity-popup-content-supplemental"
|
|
class="identity-popup-description"/>
|
|
<description id="identity-popup-content-verifier"
|
|
class="identity-popup-description"/>
|
|
<hbox id="identity-popup-encryption" flex="1">
|
|
<vbox>
|
|
<image id="identity-popup-encryption-icon"/>
|
|
</vbox>
|
|
<description id="identity-popup-encryption-label" flex="1"
|
|
class="identity-popup-description"/>
|
|
</hbox>
|
|
<vbox id="identity-popup-permissions">
|
|
<separator class="thin"/>
|
|
<label class="identity-popup-label header"
|
|
value="&identity.permissions;"/>
|
|
<vbox id="identity-popup-permission-list" class="indent"/>
|
|
</vbox>
|
|
</vbox>
|
|
</hbox>
|
|
<!-- Footer button to open security page info -->
|
|
<hbox id="identity-popup-button-container" pack="end">
|
|
<button id="identity-popup-more-info-button"
|
|
label="&identity.moreInfoLinkText;"
|
|
oncommand="gIdentityHandler.handleMoreInfoClick(event);"/>
|
|
</hbox>
|
|
</panel>
|
|
|
|
<panel id="ctrlTab-panel" class="KUI-panel" hidden="true" norestorefocus="true" level="top">
|
|
<hbox>
|
|
<button class="ctrlTab-preview" flex="1"/>
|
|
<button class="ctrlTab-preview" flex="1"/>
|
|
<button class="ctrlTab-preview" flex="1"/>
|
|
<button class="ctrlTab-preview" flex="1"/>
|
|
<button class="ctrlTab-preview" flex="1"/>
|
|
<button class="ctrlTab-preview" flex="1"/>
|
|
</hbox>
|
|
<hbox pack="center">
|
|
<button id="ctrlTab-showAll" class="ctrlTab-preview" noicon="true"/>
|
|
</hbox>
|
|
</panel>
|
|
|
|
<!-- Bookmarks and history tooltip -->
|
|
<tooltip id="bhTooltip"/>
|
|
|
|
<tooltip id="tabbrowser-tab-tooltip" onpopupshowing="gBrowser.createTooltip(event);"/>
|
|
|
|
<tooltip id="back-button-tooltip">
|
|
<label class="tooltip-label" value="&backButton.tooltip;"/>
|
|
#ifdef XP_MACOSX
|
|
<label class="tooltip-label" value="&backForwardButtonMenuMac.tooltip;"/>
|
|
#else
|
|
<label class="tooltip-label" value="&backForwardButtonMenu.tooltip;"/>
|
|
#endif
|
|
</tooltip>
|
|
|
|
<tooltip id="forward-button-tooltip">
|
|
<label class="tooltip-label" value="&forwardButton.tooltip;"/>
|
|
#ifdef XP_MACOSX
|
|
<label class="tooltip-label" value="&backForwardButtonMenuMac.tooltip;"/>
|
|
#else
|
|
<label class="tooltip-label" value="&backForwardButtonMenu.tooltip;"/>
|
|
#endif
|
|
</tooltip>
|
|
|
|
#include popup-notifications.inc
|
|
|
|
#include ../../components/customizableui/content/panelUI.inc.xul
|
|
|
|
<hbox id="downloads-animation-container" mousethrough="always">
|
|
<vbox id="downloads-notification-anchor">
|
|
<vbox id="downloads-indicator-notification"/>
|
|
</vbox>
|
|
</hbox>
|
|
</popupset>
|
|
|
|
#ifdef CAN_DRAW_IN_TITLEBAR
|
|
<vbox id="titlebar">
|
|
<hbox id="titlebar-content">
|
|
<spacer id="titlebar-spacer" flex="1"/>
|
|
<hbox id="titlebar-buttonbox-container" align="start"
|
|
#ifdef XP_MACOSX
|
|
ordinal="0"
|
|
#endif
|
|
>
|
|
<hbox id="titlebar-buttonbox">
|
|
<toolbarbutton class="titlebar-button" id="titlebar-min" oncommand="window.minimize();"/>
|
|
<toolbarbutton class="titlebar-button" id="titlebar-max" oncommand="onTitlebarMaxClick();"/>
|
|
<toolbarbutton class="titlebar-button" id="titlebar-close" command="cmd_closeWindow"/>
|
|
</hbox>
|
|
</hbox>
|
|
#ifdef XP_MACOSX
|
|
<hbox id="titlebar-fullscreen-button" ordinal="1000"/>
|
|
#endif
|
|
</hbox>
|
|
</vbox>
|
|
#endif
|
|
|
|
<deck flex="1" id="tab-view-deck">
|
|
<vbox flex="1" id="browser-panel">
|
|
|
|
<toolbox id="navigator-toolbox"
|
|
defaultmode="icons" mode="icons"
|
|
iconsize="large">
|
|
<!-- Menu -->
|
|
<toolbar type="menubar" id="toolbar-menubar" class="chromeclass-menubar" customizable="true"
|
|
defaultset="menubar-items"
|
|
mode="icons" iconsize="small" defaulticonsize="small"
|
|
lockiconsize="true"
|
|
#ifdef MENUBAR_CAN_AUTOHIDE
|
|
toolbarname="&menubarCmd.label;"
|
|
accesskey="&menubarCmd.accesskey;"
|
|
#ifdef XP_LINUX
|
|
autohide="true"
|
|
#endif
|
|
#endif
|
|
context="toolbar-context-menu">
|
|
<toolbaritem id="menubar-items" align="center"
|
|
customizableui-areatype="toolbar">
|
|
# The entire main menubar is placed into browser-menubar.inc, so that it can be shared by
|
|
# hiddenWindow.xul.
|
|
#include browser-menubar.inc
|
|
</toolbaritem>
|
|
|
|
#ifdef CAN_DRAW_IN_TITLEBAR
|
|
#ifndef XP_MACOSX
|
|
<hbox class="titlebar-placeholder" type="caption-buttons" ordinal="1000"
|
|
id="titlebar-placeholder-on-menubar-for-caption-buttons" persist="width"
|
|
skipintoolbarset="true"/>
|
|
#endif
|
|
#endif
|
|
</toolbar>
|
|
|
|
<toolbar id="TabsToolbar"
|
|
class="toolbar-primary"
|
|
fullscreentoolbar="true"
|
|
customizable="true"
|
|
mode="icons" lockmode="true"
|
|
iconsize="small" defaulticonsize="small" lockiconsize="true"
|
|
aria-label="&tabsToolbar.label;"
|
|
context="toolbar-context-menu"
|
|
defaultset="tabbrowser-tabs,new-tab-button,alltabs-button,tabs-closebutton"
|
|
collapsed="true">
|
|
|
|
<tabs id="tabbrowser-tabs"
|
|
class="tabbrowser-tabs"
|
|
tabbrowser="content"
|
|
flex="1"
|
|
setfocus="false"
|
|
tooltip="tabbrowser-tab-tooltip"
|
|
customizableui-areatype="toolbar"
|
|
stopwatchid="FX_TAB_CLICK_MS">
|
|
<tab class="tabbrowser-tab" selected="true" fadein="true"/>
|
|
</tabs>
|
|
|
|
<toolbarbutton id="new-tab-button"
|
|
class="toolbarbutton-1 chromeclass-toolbar-additional"
|
|
label="&tabCmd.label;"
|
|
command="cmd_newNavigatorTab"
|
|
onclick="checkForMiddleClick(this, event);"
|
|
tooltiptext="&newTabButton.tooltip;"
|
|
ondrop="newTabButtonObserver.onDrop(event)"
|
|
ondragover="newTabButtonObserver.onDragOver(event)"
|
|
ondragenter="newTabButtonObserver.onDragOver(event)"
|
|
ondragexit="newTabButtonObserver.onDragExit(event)"
|
|
customizableui-areatype="toolbar"
|
|
removable="true"/>
|
|
|
|
<toolbarbutton id="alltabs-button"
|
|
class="toolbarbutton-1 chromeclass-toolbar-additional tabs-alltabs-button"
|
|
type="menu"
|
|
label="&listAllTabs.label;"
|
|
tooltiptext="&listAllTabs.label;"
|
|
removable="false">
|
|
<menupopup id="alltabs-popup"
|
|
position="after_end">
|
|
<menuitem id="menu_tabview"
|
|
class="menuitem-iconic"
|
|
key="key_tabview"
|
|
label="&viewTabGroups.label;"
|
|
command="Browser:ToggleTabView"
|
|
customizableui-areatype="toolbar"
|
|
observes="tabviewGroupsNumber"/>
|
|
<menuseparator id="alltabs-popup-separator"/>
|
|
</menupopup>
|
|
</toolbarbutton>
|
|
|
|
<toolbarbutton id="tabs-closebutton"
|
|
class="close-button tabs-closebutton close-icon"
|
|
command="cmd_close"
|
|
label="&closeTab.label;"
|
|
customizableui-areatype="toolbar"
|
|
tooltiptext="&closeTab.label;"/>
|
|
|
|
#ifdef CAN_DRAW_IN_TITLEBAR
|
|
<hbox class="titlebar-placeholder" type="caption-buttons"
|
|
id="titlebar-placeholder-on-TabsToolbar-for-captions-buttons" persist="width"
|
|
#ifndef XP_MACOSX
|
|
ordinal="1000"
|
|
#endif
|
|
skipintoolbarset="true"/>
|
|
|
|
#ifdef XP_MACOSX
|
|
<hbox class="titlebar-placeholder" type="fullscreen-button"
|
|
id="titlebar-placeholder-on-TabsToolbar-for-fullscreen-button" persist="width"
|
|
skipintoolbarset="true"/>
|
|
#endif
|
|
#endif
|
|
</toolbar>
|
|
|
|
<!--
|
|
CAVEAT EMPTOR
|
|
Should you need to add items to the toolbar here, make sure to also add them
|
|
to the default placements of buttons in CustomizableUI.jsm, so the
|
|
customization code doesn't get confused.
|
|
-->
|
|
<toolbar id="nav-bar" class="toolbar-primary chromeclass-toolbar"
|
|
aria-label="&navbarCmd.label;"
|
|
fullscreentoolbar="true" mode="icons" customizable="true"
|
|
iconsize="large"
|
|
defaultset="urlbar-container,search-container,webrtc-status-button,bookmarks-menu-button,downloads-button,home-button,social-share-button,social-toolbar-item"
|
|
customizationtarget="nav-bar-customizationtarget"
|
|
overflowable="true"
|
|
overflowbutton="nav-bar-overflow-button"
|
|
overflowtarget="widget-overflow-list"
|
|
flex="1"
|
|
context="toolbar-context-menu">
|
|
|
|
<hbox id="nav-bar-customizationtarget" class="customization-target" flex="501">
|
|
<toolbaritem id="urlbar-container" align="center" flex="400" persist="width"
|
|
forwarddisabled="true" title="&locationItem.title;" removable="false"
|
|
customizableui-areatype="toolbar"
|
|
class="chromeclass-location" overflows="false">
|
|
<toolbarbutton id="back-button" class="toolbarbutton-1 chromeclass-toolbar-additional"
|
|
label="&backCmd.label;"
|
|
command="Browser:BackOrBackDuplicate"
|
|
onclick="checkForMiddleClick(this, event);"
|
|
tooltip="back-button-tooltip"
|
|
context="backForwardMenu"/>
|
|
<toolbarbutton id="forward-button" class="toolbarbutton-1 chromeclass-toolbar-additional"
|
|
label="&forwardCmd.label;"
|
|
command="Browser:ForwardOrForwardDuplicate"
|
|
onclick="checkForMiddleClick(this, event);"
|
|
tooltip="forward-button-tooltip"
|
|
context="backForwardMenu"/>
|
|
<dummyobservertarget hidden="true"
|
|
onbroadcast="if (this.getAttribute('disabled') == 'true')
|
|
this.parentNode.setAttribute('forwarddisabled', 'true');
|
|
else
|
|
this.parentNode.removeAttribute('forwarddisabled');">
|
|
<observes element="Browser:ForwardOrForwardDuplicate" attribute="disabled"/>
|
|
</dummyobservertarget>
|
|
<hbox id="urlbar-wrapper" flex="1">
|
|
<textbox id="urlbar" flex="1"
|
|
placeholder="&urlbar.placeholder2;"
|
|
type="autocomplete"
|
|
autocompletesearch="urlinline history"
|
|
autocompletesearchparam="enable-actions"
|
|
autocompletepopup="PopupAutoCompleteRichResult"
|
|
completeselectedindex="true"
|
|
tabscrolling="true"
|
|
showcommentcolumn="true"
|
|
showimagecolumn="true"
|
|
enablehistory="true"
|
|
maxrows="6"
|
|
newlines="stripsurroundingwhitespace"
|
|
oninput="gBrowser.userTypedValue = this.value;"
|
|
ontextentered="this.handleCommand(param);"
|
|
ontextreverted="return this.handleRevert();"
|
|
pageproxystate="invalid"
|
|
onfocus="document.getElementById('identity-box').style.MozUserFocus= 'normal'"
|
|
onblur="setTimeout(function() document.getElementById('identity-box').style.MozUserFocus = '', 0);">
|
|
<box id="notification-popup-box" hidden="true" align="center">
|
|
<image id="default-notification-icon" class="notification-anchor-icon" role="button"/>
|
|
<image id="identity-notification-icon" class="notification-anchor-icon" role="button"/>
|
|
<image id="geo-notification-icon" class="notification-anchor-icon" role="button"/>
|
|
<image id="addons-notification-icon" class="notification-anchor-icon" role="button"/>
|
|
<image id="indexedDB-notification-icon" class="notification-anchor-icon" role="button"/>
|
|
<image id="password-notification-icon" class="notification-anchor-icon" role="button"/>
|
|
<image id="webapps-notification-icon" class="notification-anchor-icon" role="button"/>
|
|
<image id="plugins-notification-icon" class="notification-anchor-icon" role="button"/>
|
|
<image id="web-notifications-notification-icon" class="notification-anchor-icon" role="button"/>
|
|
<image id="alert-plugins-notification-icon" class="notification-anchor-icon" role="button"/>
|
|
<image id="blocked-plugins-notification-icon" class="notification-anchor-icon" role="button"/>
|
|
<image id="plugin-install-notification-icon" class="notification-anchor-icon" role="button"/>
|
|
<image id="mixed-content-blocked-notification-icon" class="notification-anchor-icon" role="button"/>
|
|
<image id="webRTC-shareDevices-notification-icon" class="notification-anchor-icon" role="button"/>
|
|
<image id="webRTC-sharingDevices-notification-icon" class="notification-anchor-icon" role="button"/>
|
|
<image id="pointerLock-notification-icon" class="notification-anchor-icon" role="button"/>
|
|
<image id="servicesInstall-notification-icon" class="notification-anchor-icon" role="button"/>
|
|
</box>
|
|
<!-- Use onclick instead of normal popup= syntax since the popup
|
|
code fires onmousedown, and hence eats our favicon drag events.
|
|
We only add the identity-box button to the tab order when the location bar
|
|
has focus, otherwise pressing F6 focuses it instead of the location bar -->
|
|
<box id="identity-box" role="button"
|
|
align="center"
|
|
onclick="gIdentityHandler.handleIdentityButtonEvent(event);"
|
|
onkeypress="gIdentityHandler.handleIdentityButtonEvent(event);"
|
|
ondragstart="gIdentityHandler.onDragStart(event);">
|
|
<image id="page-proxy-favicon"
|
|
onclick="PageProxyClickHandler(event);"
|
|
pageproxystate="invalid"/>
|
|
<hbox id="identity-icon-labels">
|
|
<label id="identity-icon-label" class="plain" flex="1"/>
|
|
<label id="identity-icon-country-label" class="plain"/>
|
|
</hbox>
|
|
</box>
|
|
<box id="urlbar-display-box" align="center">
|
|
<label id="urlbar-display" value="&urlbar.switchToTab.label;"/>
|
|
</box>
|
|
<hbox id="urlbar-icons">
|
|
<image id="page-report-button"
|
|
class="urlbar-icon"
|
|
hidden="true"
|
|
tooltiptext="&pageReportIcon.tooltip;"
|
|
onclick="gPopupBlockerObserver.onReportButtonClick(event);"/>
|
|
<image id="star-button"
|
|
class="urlbar-icon"
|
|
onclick="BookmarkingUI.onCommand(event);"/>
|
|
</hbox>
|
|
<toolbarbutton id="urlbar-go-button"
|
|
class="chromeclass-toolbar-additional"
|
|
onclick="gURLBar.handleCommand(event);"
|
|
tooltiptext="&goEndCap.tooltip;"/>
|
|
<toolbarbutton id="urlbar-reload-button"
|
|
class="chromeclass-toolbar-additional"
|
|
command="Browser:ReloadOrDuplicate"
|
|
onclick="checkForMiddleClick(this, event);"
|
|
tooltiptext="&reloadButton.tooltip;"/>
|
|
<toolbarbutton id="urlbar-stop-button"
|
|
class="chromeclass-toolbar-additional"
|
|
command="Browser:Stop"
|
|
tooltiptext="&stopButton.tooltip;"/>
|
|
</textbox>
|
|
</hbox>
|
|
</toolbaritem>
|
|
|
|
<toolbaritem id="search-container" title="&searchItem.title;"
|
|
align="center" class="chromeclass-toolbar-additional"
|
|
customizableui-areatype="toolbar"
|
|
flex="100" persist="width" removable="true">
|
|
<searchbar id="searchbar" flex="1"/>
|
|
</toolbaritem>
|
|
|
|
<toolbarbutton id="webrtc-status-button"
|
|
class="toolbarbutton-1 chromeclass-toolbar-additional"
|
|
type="menu"
|
|
hidden="true"
|
|
orient="horizontal"
|
|
label="&webrtcIndicatorButton.label;"
|
|
tooltiptext="&webrtcIndicatorButton.tooltip;"
|
|
customizableui-areatype="toolbar"
|
|
overflows="false">
|
|
<menupopup onpopupshowing="WebrtcIndicator.fillPopup(this);"
|
|
onpopuphiding="WebrtcIndicator.clearPopup(this);"
|
|
oncommand="WebrtcIndicator.menuCommand(event.target);"/>
|
|
</toolbarbutton>
|
|
|
|
<toolbarbutton id="bookmarks-menu-button"
|
|
class="toolbarbutton-1 chromeclass-toolbar-additional"
|
|
persist="class"
|
|
removable="true"
|
|
type="menu-button"
|
|
label="&bookmarksMenuButton.label;"
|
|
tooltiptext="&bookmarksMenuButton.tooltip;"
|
|
ondragenter="PlacesMenuDNDHandler.onDragEnter(event);"
|
|
ondragover="PlacesMenuDNDHandler.onDragOver(event);"
|
|
ondragleave="PlacesMenuDNDHandler.onDragLeave(event);"
|
|
ondrop="PlacesMenuDNDHandler.onDrop(event);"
|
|
customizableui-areatype="toolbar"
|
|
oncommand="BookmarkingUI.onCommand(event);">
|
|
<menupopup id="BMB_bookmarksPopup"
|
|
placespopup="true"
|
|
context="placesContext"
|
|
openInTabs="children"
|
|
anonanchorclass="toolbarbutton-menubutton-dropmarker"
|
|
oncommand="BookmarksEventHandler.onCommand(event, this.parentNode._placesView);"
|
|
onclick="BookmarksEventHandler.onClick(event, this.parentNode._placesView);"
|
|
onpopupshowing="BookmarkingUI.onPopupShowing(event);
|
|
if (!this.parentNode._placesView)
|
|
new PlacesMenu(event, 'place:folder=BOOKMARKS_MENU');"
|
|
tooltip="bhTooltip" popupsinherittooltip="true">
|
|
<menuitem id="BMB_bookmarksShowAll"
|
|
label="&showAllBookmarks2.label;"
|
|
command="Browser:ShowAllBookmarks"
|
|
key="manBookmarkKb"/>
|
|
<menuitem id="BMB_viewBookmarksSidebar"
|
|
label="&viewBookmarksSidebar2.label;"
|
|
type="checkbox"
|
|
oncommand="toggleSidebar('viewBookmarksSidebar');">
|
|
<observes element="viewBookmarksSidebar" attribute="checked"/>
|
|
</menuitem>
|
|
<menuseparator/>
|
|
<menuitem id="BMB_subscribeToPageMenuitem"
|
|
#ifndef XP_MACOSX
|
|
class="menuitem-iconic"
|
|
#endif
|
|
label="&subscribeToPageMenuitem.label;"
|
|
oncommand="return FeedHandler.subscribeToFeed(null, event);"
|
|
onclick="checkForMiddleClick(this, event);"
|
|
observes="singleFeedMenuitemState"/>
|
|
<menu id="BMB_subscribeToPageMenupopup"
|
|
#ifndef XP_MACOSX
|
|
class="menu-iconic"
|
|
#endif
|
|
label="&subscribeToPageMenupopup.label;"
|
|
observes="multipleFeedsMenuState">
|
|
<menupopup id="BMB_subscribeToPageSubmenuMenupopup"
|
|
onpopupshowing="return FeedHandler.buildFeedList(event.target);"
|
|
oncommand="return FeedHandler.subscribeToFeed(null, event);"
|
|
onclick="checkForMiddleClick(this, event);"/>
|
|
</menu>
|
|
<menuseparator/>
|
|
<menu id="BMB_bookmarksToolbar"
|
|
class="menu-iconic bookmark-item"
|
|
label="&personalbarCmd.label;"
|
|
container="true">
|
|
<menupopup id="BMB_bookmarksToolbarPopup"
|
|
placespopup="true"
|
|
context="placesContext"
|
|
onpopupshowing="if (!this.parentNode._placesView)
|
|
new PlacesMenu(event, 'place:folder=TOOLBAR');">
|
|
<menuitem id="BMB_viewBookmarksToolbar"
|
|
placesanonid="view-toolbar"
|
|
toolbarId="PersonalToolbar"
|
|
type="checkbox"
|
|
oncommand="onViewToolbarCommand(event)"
|
|
label="&viewBookmarksToolbar.label;"/>
|
|
<menuseparator/>
|
|
<!-- Bookmarks toolbar items -->
|
|
</menupopup>
|
|
</menu>
|
|
<menu id="BMB_unsortedBookmarks"
|
|
class="menu-iconic bookmark-item"
|
|
label="&bookmarksMenuButton.unsorted.label;"
|
|
container="true">
|
|
<menupopup id="BMB_unsortedBookmarksPopup"
|
|
placespopup="true"
|
|
context="placesContext"
|
|
onpopupshowing="if (!this.parentNode._placesView)
|
|
new PlacesMenu(event, 'place:folder=UNFILED_BOOKMARKS');"/>
|
|
</menu>
|
|
<menuseparator/>
|
|
<!-- Bookmarks menu items -->
|
|
</menupopup>
|
|
</toolbarbutton>
|
|
|
|
<!-- This is a placeholder for the Downloads Indicator. It is visible
|
|
during the customization of the toolbar, in the palette, and before
|
|
the Downloads Indicator overlay is loaded. -->
|
|
<toolbarbutton id="downloads-button" class="toolbarbutton-1 chromeclass-toolbar-additional"
|
|
oncommand="DownloadsIndicatorView.onCommand(event);"
|
|
ondrop="DownloadsIndicatorView.onDrop(event);"
|
|
ondragover="DownloadsIndicatorView.onDragOver(event);"
|
|
ondragenter="DownloadsIndicatorView.onDragOver(event);"
|
|
label="&downloads.label;"
|
|
removable="true"
|
|
customizableui-areatype="toolbar"
|
|
tooltiptext="&downloads.tooltip;"/>
|
|
|
|
<toolbarbutton id="home-button" class="toolbarbutton-1 chromeclass-toolbar-additional"
|
|
persist="class" removable="true"
|
|
label="&homeButton.label;"
|
|
ondragover="homeButtonObserver.onDragOver(event)"
|
|
ondragenter="homeButtonObserver.onDragOver(event)"
|
|
ondrop="homeButtonObserver.onDrop(event)"
|
|
ondragexit="homeButtonObserver.onDragExit(event)"
|
|
onclick="BrowserGoHome(event);"
|
|
customizableui-areatype="toolbar"
|
|
aboutHomeOverrideTooltip="&abouthome.pageTitle;"/>
|
|
|
|
|
|
<toolbarbutton id="social-share-button"
|
|
class="toolbarbutton-1 chromeclass-toolbar-additional"
|
|
hidden="true"
|
|
overflows="false"
|
|
label="&sharePageCmd.label;"
|
|
tooltiptext="&sharePageCmd.label;"
|
|
customizableui-areatype="toolbar"
|
|
command="Social:SharePage"/>
|
|
|
|
<toolbaritem id="social-toolbar-item"
|
|
class="chromeclass-toolbar-additional"
|
|
removable="false"
|
|
title="&socialToolbar.title;"
|
|
hidden="true"
|
|
overflows="false"
|
|
customizableui-areatype="toolbar"
|
|
observes="socialActiveBroadcaster">
|
|
<toolbarbutton id="social-notification-icon" class="default-notification-icon toolbarbutton-1 notification-anchor-icon"
|
|
oncommand="PopupNotifications._reshowNotifications(this,
|
|
document.getElementById('social-sidebar-browser'));"/>
|
|
<toolbarbutton id="social-provider-button"
|
|
class="toolbarbutton-1"
|
|
type="menu">
|
|
<menupopup id="social-statusarea-popup">
|
|
<menuitem class="social-statusarea-user menuitem-iconic" pack="start" align="center"
|
|
observes="socialBroadcaster_userDetails"
|
|
oncommand="SocialUI.showProfile(); document.getElementById('social-statusarea-popup').hidePopup();">
|
|
<image class="social-statusarea-user-portrait"
|
|
observes="socialBroadcaster_userDetails"/>
|
|
<vbox>
|
|
<label class="social-statusarea-loggedInStatus"
|
|
observes="socialBroadcaster_userDetails"/>
|
|
</vbox>
|
|
</menuitem>
|
|
#ifndef XP_WIN
|
|
<menuseparator class="social-statusarea-separator"/>
|
|
#endif
|
|
<menuitem class="social-toggle-sidebar-menuitem"
|
|
type="checkbox"
|
|
autocheck="false"
|
|
command="Social:ToggleSidebar"
|
|
label="&social.toggleSidebar.label;"
|
|
accesskey="&social.toggleSidebar.accesskey;"/>
|
|
<menuitem class="social-toggle-notifications-menuitem"
|
|
type="checkbox"
|
|
autocheck="false"
|
|
command="Social:ToggleNotifications"
|
|
label="&social.toggleNotifications.label;"
|
|
accesskey="&social.toggleNotifications.accesskey;"/>
|
|
<menuitem class="social-toggle-menuitem" command="Social:Toggle"/>
|
|
<menuseparator/>
|
|
<menuseparator class="social-provider-menu" hidden="true"/>
|
|
<menuitem class="social-addons-menuitem" command="Social:Addons"
|
|
label="&social.addons.label;"/>
|
|
<menuitem label="&social.learnMore.label;"
|
|
accesskey="&social.learnMore.accesskey;"
|
|
oncommand="SocialUI.showLearnMore();"/>
|
|
</menupopup>
|
|
</toolbarbutton>
|
|
</toolbaritem>
|
|
</hbox>
|
|
|
|
<toolbarbutton id="nav-bar-overflow-button"
|
|
class="toolbarbutton-1 chromeclass-toolbar-additional chevron overflow-button"
|
|
skipintoolbarset="true"
|
|
tooltiptext="&navbarOverflow.label;"/>
|
|
|
|
<toolbaritem id="PanelUI-button"
|
|
class="chromeclass-toolbar-additional"
|
|
removable="false"
|
|
title="&appmenu.title;">
|
|
<toolbarbutton id="PanelUI-menu-button"
|
|
class="toolbarbutton-1"
|
|
label="&brandShortName;"
|
|
tooltiptext="&appmenu.title;"/>
|
|
</toolbaritem>
|
|
|
|
<hbox id="window-controls" hidden="true" pack="end" skipintoolbarset="true"
|
|
ordinal="1000">
|
|
<toolbarbutton id="minimize-button"
|
|
tooltiptext="&fullScreenMinimize.tooltip;"
|
|
oncommand="window.minimize();"/>
|
|
|
|
<toolbarbutton id="restore-button"
|
|
tooltiptext="&fullScreenRestore.tooltip;"
|
|
oncommand="BrowserFullScreen();"/>
|
|
|
|
<toolbarbutton id="close-button"
|
|
tooltiptext="&fullScreenClose.tooltip;"
|
|
oncommand="BrowserTryToCloseWindow();"/>
|
|
</hbox>
|
|
</toolbar>
|
|
|
|
<toolbarset id="customToolbars" context="toolbar-context-menu"/>
|
|
|
|
<toolbar id="PersonalToolbar"
|
|
mode="icons" iconsize="small" defaulticonsize="small"
|
|
lockiconsize="true"
|
|
class="chromeclass-directories"
|
|
context="toolbar-context-menu"
|
|
defaultset="personal-bookmarks"
|
|
toolbarname="&personalbarCmd.label;" accesskey="&personalbarCmd.accesskey;"
|
|
collapsed="true"
|
|
customizable="true">
|
|
<toolbaritem id="personal-bookmarks"
|
|
flex="1"
|
|
title="&bookmarksToolbarItem.label;"
|
|
customizableui-areatype="toolbar"
|
|
removable="true">
|
|
<toolbarbutton id="bookmarks-toolbar-placeholder"
|
|
type="wrap"
|
|
mousethrough="never"
|
|
label="&bookmarksToolbarItem.label;"
|
|
oncommand="PlacesToolbarHelper.onPlaceholderCommand();"/>
|
|
<hbox flex="1"
|
|
id="PlacesToolbar"
|
|
context="placesContext"
|
|
onclick="BookmarksEventHandler.onClick(event, this._placesView);"
|
|
oncommand="BookmarksEventHandler.onCommand(event, this._placesView);"
|
|
tooltip="bhTooltip"
|
|
popupsinherittooltip="true">
|
|
<hbox flex="1">
|
|
<hbox align="center">
|
|
<image id="PlacesToolbarDropIndicator"
|
|
mousethrough="always"
|
|
collapsed="true"/>
|
|
</hbox>
|
|
<scrollbox orient="horizontal"
|
|
id="PlacesToolbarItems"
|
|
flex="1"/>
|
|
<toolbarbutton type="menu"
|
|
id="PlacesChevron"
|
|
class="chevron"
|
|
mousethrough="never"
|
|
collapsed="true"
|
|
tooltiptext="&bookmarksToolbarChevron.tooltip;"
|
|
onpopupshowing="document.getElementById('PlacesToolbar')
|
|
._placesView._onChevronPopupShowing(event);">
|
|
<menupopup id="PlacesChevronPopup"
|
|
placespopup="true"
|
|
tooltip="bhTooltip" popupsinherittooltip="true"
|
|
context="placesContext"/>
|
|
</toolbarbutton>
|
|
</hbox>
|
|
</hbox>
|
|
</toolbaritem>
|
|
</toolbar>
|
|
|
|
<!-- This is a shim which will go away ASAP. See bug 749804 for details -->
|
|
<toolbar id="addon-bar" toolbar-delegate="nav-bar">
|
|
<hbox id="addonbar-closebutton"/>
|
|
<statusbar id="status-bar"/>
|
|
</toolbar>
|
|
|
|
<toolbarpalette id="BrowserToolbarPalette">
|
|
|
|
# Update primaryToolbarButtons in browser/themes/shared/browser.inc when adding
|
|
# or removing default items with the toolbarbutton-1 class.
|
|
|
|
<toolbarbutton id="print-button" class="toolbarbutton-1 chromeclass-toolbar-additional"
|
|
#ifdef XP_MACOSX
|
|
command="cmd_print"
|
|
#else
|
|
command="cmd_printPreview"
|
|
#endif
|
|
label="&printButton.label;" tooltiptext="&printButton.tooltip;"/>
|
|
|
|
|
|
<toolbarbutton id="new-window-button" class="toolbarbutton-1 chromeclass-toolbar-additional"
|
|
label="&newNavigatorCmd.label;"
|
|
command="key_newNavigator"
|
|
tooltiptext="&newWindowButton.tooltip;"
|
|
ondrop="newWindowButtonObserver.onDrop(event)"
|
|
ondragover="newWindowButtonObserver.onDragOver(event)"
|
|
ondragenter="newWindowButtonObserver.onDragOver(event)"
|
|
ondragexit="newWindowButtonObserver.onDragExit(event)"/>
|
|
|
|
<toolbarbutton id="fullscreen-button" class="toolbarbutton-1 chromeclass-toolbar-additional"
|
|
observes="View:FullScreen"
|
|
type="checkbox"
|
|
label="&fullScreenCmd.label;"
|
|
tooltiptext="&fullScreenButton.tooltip;"/>
|
|
|
|
#ifdef MOZ_SERVICES_SYNC
|
|
<toolbarbutton id="sync-button"
|
|
class="toolbarbutton-1 chromeclass-toolbar-additional"
|
|
label="&syncToolbarButton.label;"
|
|
oncommand="gSyncUI.handleToolbarButton()"/>
|
|
#endif
|
|
|
|
<toolbarbutton id="tabview-button" class="toolbarbutton-1 chromeclass-toolbar-additional"
|
|
label="&tabGroupsButton.label;"
|
|
command="Browser:ToggleTabView"
|
|
tooltiptext="&tabGroupsButton.tooltip;"
|
|
observes="tabviewGroupsNumber"/>
|
|
</toolbarpalette>
|
|
</toolbox>
|
|
|
|
<hbox id="fullscr-toggler" collapsed="true"/>
|
|
|
|
<deck id="content-deck" flex="1">
|
|
<hbox flex="1" id="browser">
|
|
<vbox id="browser-border-start" hidden="true" layer="true"/>
|
|
<vbox id="sidebar-box" hidden="true" class="chromeclass-extrachrome">
|
|
<sidebarheader id="sidebar-header" align="center">
|
|
<label id="sidebar-title" persist="value" flex="1" crop="end" control="sidebar"/>
|
|
<image id="sidebar-throbber"/>
|
|
<toolbarbutton class="tabs-closebutton close-icon" tooltiptext="&sidebarCloseButton.tooltip;" oncommand="toggleSidebar();"/>
|
|
</sidebarheader>
|
|
<browser id="sidebar" flex="1" autoscroll="false" disablehistory="true"
|
|
style="min-width: 14em; width: 18em; max-width: 36em;"/>
|
|
</vbox>
|
|
|
|
<splitter id="sidebar-splitter" class="chromeclass-extrachrome sidebar-splitter" hidden="true"/>
|
|
<vbox id="appcontent" flex="1">
|
|
<tabbrowser id="content" disablehistory="true"
|
|
flex="1" contenttooltip="aHTMLTooltip"
|
|
tabcontainer="tabbrowser-tabs"
|
|
contentcontextmenu="contentAreaContextMenu"
|
|
autocompletepopup="PopupAutoComplete"
|
|
selectpopup="ContentSelectDropdown"
|
|
onclick="contentAreaClick(event, false);"/>
|
|
<chatbar id="pinnedchats" layer="true" mousethrough="always" hidden="true"/>
|
|
</vbox>
|
|
<splitter id="social-sidebar-splitter"
|
|
class="chromeclass-extrachrome sidebar-splitter"
|
|
observes="socialSidebarBroadcaster"/>
|
|
<vbox id="social-sidebar-box"
|
|
class="chromeclass-extrachrome"
|
|
observes="socialSidebarBroadcaster"
|
|
persist="width">
|
|
<browser id="social-sidebar-browser"
|
|
type="content"
|
|
context="contentAreaContextMenu"
|
|
disableglobalhistory="true"
|
|
tooltip="aHTMLTooltip"
|
|
popupnotificationanchor="social-notification-icon"
|
|
flex="1"
|
|
style="min-width: 14em; width: 18em; max-width: 36em;"/>
|
|
</vbox>
|
|
<vbox id="browser-border-end" hidden="true" layer="true"/>
|
|
</hbox>
|
|
#include ../../components/customizableui/content/customizeMode.inc.xul
|
|
</deck>
|
|
|
|
<hbox id="full-screen-warning-container" hidden="true" fadeout="true">
|
|
<hbox style="width: 100%;" pack="center"> <!-- Inner hbox needed due to bug 579776. -->
|
|
<vbox id="full-screen-warning-message" align="center">
|
|
<description id="full-screen-domain-text"/>
|
|
<description class="full-screen-description" value="&fullscreenExitHint2.value;"/>
|
|
<vbox id="full-screen-approval-pane" align="center">
|
|
<hbox>
|
|
#ifdef XP_UNIX
|
|
<button label="&fullscreenExitButton.label;"
|
|
oncommand="FullScreen.setFullscreenAllowed(false);"
|
|
class="full-screen-approval-button"/>
|
|
<button label="&fullscreenAllowButton.label;"
|
|
oncommand="FullScreen.setFullscreenAllowed(true);"
|
|
class="full-screen-approval-button"/>
|
|
#else
|
|
<button label="&fullscreenAllowButton.label;"
|
|
oncommand="FullScreen.setFullscreenAllowed(true);"
|
|
class="full-screen-approval-button"/>
|
|
<button label="&fullscreenExitButton.label;"
|
|
oncommand="FullScreen.setFullscreenAllowed(false);"
|
|
class="full-screen-approval-button"/>
|
|
#endif
|
|
</hbox>
|
|
<checkbox id="full-screen-remember-decision"/>
|
|
</vbox>
|
|
</vbox>
|
|
</hbox>
|
|
</hbox>
|
|
|
|
<vbox id="browser-bottombox" layer="true">
|
|
<notificationbox id="global-notificationbox"/>
|
|
<toolbar id="developer-toolbar"
|
|
class="devtools-toolbar"
|
|
hidden="true">
|
|
#ifdef XP_MACOSX
|
|
<toolbarbutton id="developer-toolbar-closebutton"
|
|
class="devtools-closebutton"
|
|
oncommand="DeveloperToolbar.hide();"
|
|
tooltiptext="&devToolbarCloseButton.tooltiptext;"/>
|
|
#endif
|
|
<stack class="gclitoolbar-stack-node" flex="1">
|
|
<textbox class="gclitoolbar-input-node" rows="1"/>
|
|
<hbox class="gclitoolbar-complete-node"/>
|
|
</stack>
|
|
<toolbarbutton id="developer-toolbar-toolbox-button"
|
|
class="developer-toolbar-button"
|
|
observes="devtoolsMenuBroadcaster_DevToolbox"
|
|
tooltiptext="&devToolbarToolsButton.tooltip;"/>
|
|
#ifndef XP_MACOSX
|
|
<toolbarbutton id="developer-toolbar-closebutton"
|
|
class="devtools-closebutton"
|
|
oncommand="DeveloperToolbar.hide();"
|
|
tooltiptext="&devToolbarCloseButton.tooltiptext;"/>
|
|
#endif
|
|
</toolbar>
|
|
</vbox>
|
|
|
|
<svg:svg height="0">
|
|
<svg:clipPath id="tab-curve-clip-path-start" clipPathUnits="objectBoundingBox">
|
|
<svg:path d="m 1,0.0625 0.05,0 0,0.938 -1,0 0,-0.028 C 0.32082458,0.95840561 0.4353096,0.81970962 0.48499998,0.5625 0.51819998,0.3905 0.535,0.0659 1,0.0625 z"/>
|
|
</svg:clipPath>
|
|
<svg:clipPath id="tab-curve-clip-path-end" clipPathUnits="objectBoundingBox">
|
|
<svg:path d="m 0,0.0625 -0.05,0 0,0.938 1,0 0,-0.028 C 0.67917542,0.95840561 0.56569036,0.81970962 0.51599998,0.5625 0.48279998,0.3905 0.465,0.0659 0,0.0625 z"/>
|
|
</svg:clipPath>
|
|
|
|
#ifndef XP_UNIX
|
|
<svg:clipPath id="windows-keyhole-forward-clip-path" clipPathUnits="objectBoundingBox">
|
|
<svg:path d="M 0,0 C 0.16,0.11 0.28,0.29 0.28,0.5 0.28,0.71 0.16,0.89 0,1 L 1,1 1,0 0,0 z"/>
|
|
</svg:clipPath>
|
|
<svg:clipPath id="windows-urlbar-back-button-clip-path" clipPathUnits="userSpaceOnUse">
|
|
<svg:path d="m 0,-5 l 0,7.8 c 2.5,3.2 4,6.2 4,10.2 c 0,4 -1.5,7 -4,10 l 0,22l10000,0 l 0,-50 l -10000,0 z"/>
|
|
</svg:clipPath>
|
|
#endif
|
|
#ifdef XP_MACOSX
|
|
<svg:clipPath id="osx-keyhole-forward-clip-path" clipPathUnits="objectBoundingBox">
|
|
<svg:path d="M 0,0 C 0.15,0.12 0.25,0.3 0.25,0.5 0.25,0.7 0.15,0.88 0,1 L 1,1 1,0 0,0 z"/>
|
|
</svg:clipPath>
|
|
<svg:clipPath id="osx-urlbar-back-button-clip-path" clipPathUnits="userSpaceOnUse">
|
|
<svg:path d="m -3,-10 l -0.1,7.7 c 6.6,1.8 8.8,7.6 8.8,12.5 c 0,5 -1.9,11.5 -8.25,13.25 l 0.05,25.75 l 10000,0 l 0,-55 l -10000,-4.2 z"/>
|
|
</svg:clipPath>
|
|
#endif
|
|
</svg:svg>
|
|
|
|
</vbox>
|
|
# <iframe id="tab-view"> is dynamically appended as the 2nd child of #tab-view-deck.
|
|
# Introducing the iframe dynamically, as needed, was found to be better than
|
|
# starting with an empty iframe here in browser.xul from a Ts standpoint.
|
|
</deck>
|
|
|
|
</window>
|