2003-12-03 05:37:53 +00:00
|
|
|
# -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
2005-02-01 17:36:54 +00:00
|
|
|
# ***** BEGIN LICENSE BLOCK *****
|
2003-12-03 05:37:53 +00:00
|
|
|
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
2005-02-01 17:36:54 +00:00
|
|
|
#
|
2003-12-03 05:37: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/
|
2005-02-01 17:36:54 +00:00
|
|
|
#
|
2003-12-03 05:37: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.
|
2005-02-01 17:36:54 +00:00
|
|
|
#
|
2003-12-03 05:37:53 +00:00
|
|
|
# The Original Code is Mozilla.org Code.
|
2005-02-01 17:36:54 +00:00
|
|
|
#
|
|
|
|
# The Initial Developer of the Original Code is
|
|
|
|
# Netscape Communications Corporation.
|
2003-12-03 05:37:53 +00:00
|
|
|
# Portions created by the Initial Developer are Copyright (C) 2001
|
|
|
|
# the Initial Developer. All Rights Reserved.
|
2005-02-01 17:36:54 +00:00
|
|
|
#
|
2003-12-03 05:37:53 +00:00
|
|
|
# Contributor(s):
|
2005-02-01 17:36:54 +00:00
|
|
|
# Ben Goodger <ben@bengoodger.com> (v2.0)
|
2003-12-03 05:37:53 +00:00
|
|
|
# Blake Ross <blakeross@telocity.com>
|
2006-10-10 13:41:40 +00:00
|
|
|
# Shawn Wilsher <me@shawnwilsher.com>
|
2007-09-02 22:11:38 +00:00
|
|
|
# Ehsan Akhgari <ehsan.akhgari@gmail.com>
|
2010-05-13 20:38:21 +00:00
|
|
|
# Rob Campbell <rcampbell@mozilla.com>
|
2005-02-01 17:36:54 +00:00
|
|
|
#
|
2003-12-03 05:37: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.
|
2005-02-01 17:36:54 +00:00
|
|
|
#
|
2003-12-03 05:37:53 +00:00
|
|
|
# ***** END LICENSE BLOCK *****
|
|
|
|
|
2004-11-30 08:23:02 +00:00
|
|
|
#ifdef XP_UNIX
|
|
|
|
#ifndef XP_MACOSX
|
|
|
|
#define XP_GNOME 1
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2010-05-11 04:28:18 +00:00
|
|
|
<stringbundleset id="stringbundleset">
|
2005-03-10 04:38:35 +00:00
|
|
|
<stringbundle id="bundle_brand" src="chrome://branding/locale/brand.properties"/>
|
2004-03-08 09:56:16 +00:00
|
|
|
<stringbundle id="bundle_shell" src="chrome://browser/locale/shellservice.properties"/>
|
2005-02-25 09:07:58 +00:00
|
|
|
<stringbundle id="bundle_preferences" src="chrome://browser/locale/preferences/preferences.properties"/>
|
2003-08-11 08:12:19 +00:00
|
|
|
</stringbundleset>
|
|
|
|
|
|
|
|
<commandset id="mainCommandSet">
|
2003-10-29 08:01:27 +00:00
|
|
|
<command id="cmd_newNavigator" oncommand="OpenBrowserWindow()"/>
|
2005-10-20 15:16:27 +00:00
|
|
|
<command id="cmd_handleBackspace" oncommand="BrowserHandleBackspace();" />
|
|
|
|
<command id="cmd_handleShiftBackspace" oncommand="BrowserHandleShiftBackspace();" />
|
2006-03-06 23:57:47 +00:00
|
|
|
|
2003-08-11 08:12:19 +00:00
|
|
|
<command id="cmd_newNavigatorTab" oncommand="BrowserOpenTab();"/>
|
|
|
|
<command id="Browser:OpenFile" oncommand="BrowserOpenFileWindow();"/>
|
2005-01-28 16:06:56 +00:00
|
|
|
<command id="Browser:SavePage" oncommand="saveDocument(window.content.document);"/>
|
2004-03-07 04:42:17 +00:00
|
|
|
|
2007-03-07 22:25:24 +00:00
|
|
|
<command id="Browser:SendLink"
|
|
|
|
oncommand="MailIntegration.sendLinkForWindow(window.content);"/>
|
2004-03-07 04:42:17 +00:00
|
|
|
|
2005-01-24 23:40:03 +00:00
|
|
|
<command id="cmd_pageSetup" oncommand="PrintUtils.showPageSetup();"/>
|
2003-11-05 20:45:34 +00:00
|
|
|
<command id="cmd_print" oncommand="PrintUtils.print();"/>
|
2009-09-09 07:50:46 +00:00
|
|
|
<command id="cmd_printPreview" oncommand="PrintUtils.printPreview(PrintPreviewListener);"/>
|
2003-08-11 08:12:19 +00:00
|
|
|
<command id="cmd_close" oncommand="BrowserCloseTabOrWindow()"/>
|
2004-10-11 13:32:32 +00:00
|
|
|
<command id="cmd_closeWindow" oncommand="BrowserTryToCloseWindow()"/>
|
2005-01-24 23:40:03 +00:00
|
|
|
<command id="cmd_toggleTaskbar" oncommand="goToggleToolbar('status-bar','toggle_taskbar');"/>
|
2010-04-06 06:34:27 +00:00
|
|
|
<command id="cmd_ToggleTabsOnTop" oncommand="TabsOnTop.toggle()"/>
|
2003-08-11 08:12:19 +00:00
|
|
|
<command id="cmd_CustomizeToolbars" oncommand="BrowserCustomizeToolbar()"/>
|
2008-03-07 01:59:42 +00:00
|
|
|
<command id="cmd_quitApplication" oncommand="goQuitApplication()"/>
|
2006-11-02 22:26:22 +00:00
|
|
|
|
|
|
|
|
2007-02-14 21:28:26 +00:00
|
|
|
<commandset id="editMenuCommands"/>
|
2003-08-11 08:12:19 +00:00
|
|
|
|
2005-09-18 21:31:34 +00:00
|
|
|
<command id="View:PageSource" oncommand="BrowserViewSourceOfDocument(content.document);" observes="isImage"/>
|
2003-08-11 08:12:19 +00:00
|
|
|
<command id="View:PageInfo" oncommand="BrowserPageInfo();"/>
|
|
|
|
<command id="View:FullScreen" oncommand="BrowserFullScreen();"/>
|
2006-11-26 22:47:46 +00:00
|
|
|
<command id="cmd_find"
|
|
|
|
oncommand="gFindBar.onFindCommand();"
|
|
|
|
observes="isImage"/>
|
|
|
|
<command id="cmd_findAgain"
|
|
|
|
oncommand="gFindBar.onFindAgainCommand(false);"
|
|
|
|
observes="isImage"/>
|
|
|
|
<command id="cmd_findPrevious"
|
|
|
|
oncommand="gFindBar.onFindAgainCommand(true);"
|
|
|
|
observes="isImage"/>
|
2007-08-17 07:22:12 +00:00
|
|
|
<!-- work-around bug 392512 -->
|
2010-05-11 04:28:18 +00:00
|
|
|
<command id="Browser:AddBookmarkAs"
|
2007-11-20 02:01:53 +00:00
|
|
|
oncommand="PlacesCommandHook.bookmarkCurrentPage(true, PlacesUtils.bookmarksMenuFolderId);"/>
|
2007-01-21 23:31:39 +00:00
|
|
|
<!-- The command is disabled for the hidden window. Otherwise its enabled
|
2009-10-06 15:58:00 +00:00
|
|
|
state is handled by gBookmarkAllTabsHandler. -->
|
2007-01-21 23:31:39 +00:00
|
|
|
<command id="Browser:BookmarkAllTabs"
|
|
|
|
oncommand="gBookmarkAllTabsHandler.doCommand();"
|
|
|
|
disabled="true"/>
|
2003-08-11 08:12:19 +00:00
|
|
|
<command id="Browser:Home" oncommand="BrowserHome();"/>
|
|
|
|
<command id="Browser:Back" oncommand="BrowserBack();" disabled="true"/>
|
2008-09-01 20:19:24 +00:00
|
|
|
<command id="Browser:BackOrBackDuplicate" oncommand="BrowserBack(event);" disabled="true">
|
|
|
|
<observes element="Browser:Back" attribute="disabled"/>
|
|
|
|
</command>
|
2003-08-11 08:12:19 +00:00
|
|
|
<command id="Browser:Forward" oncommand="BrowserForward();" disabled="true"/>
|
2008-09-01 20:19:24 +00:00
|
|
|
<command id="Browser:ForwardOrForwardDuplicate" oncommand="BrowserForward(event);" disabled="true">
|
|
|
|
<observes element="Browser:Forward" attribute="disabled"/>
|
|
|
|
</command>
|
2003-08-11 08:12:19 +00:00
|
|
|
<command id="Browser:Stop" oncommand="BrowserStop();" disabled="true"/>
|
2005-02-27 17:59:38 +00:00
|
|
|
<command id="Browser:Reload" oncommand="if (event.shiftKey) BrowserReloadSkipCache(); else BrowserReload()" disabled="true"/>
|
2008-08-31 21:00:59 +00:00
|
|
|
<command id="Browser:ReloadOrDuplicate" oncommand="BrowserReloadOrDuplicate(event)" disabled="true">
|
|
|
|
<observes element="Browser:Reload" attribute="disabled"/>
|
|
|
|
</command>
|
|
|
|
<command id="Browser:ReloadSkipCache" oncommand="BrowserReloadSkipCache()" disabled="true">
|
|
|
|
<observes element="Browser:Reload" attribute="disabled"/>
|
|
|
|
</command>
|
2010-03-22 14:12:04 +00:00
|
|
|
<command id="Browser:NextTab" oncommand="gBrowser.tabContainer.advanceSelectedTab(1, true);"/>
|
|
|
|
<command id="Browser:PrevTab" oncommand="gBrowser.tabContainer.advanceSelectedTab(-1, true);"/>
|
2009-07-21 04:25:59 +00:00
|
|
|
<command id="Browser:ShowAllTabs" oncommand="allTabs.open();"/>
|
2010-07-09 19:44:59 +00:00
|
|
|
<command id="Browser:ToggleTabCandy" oncommand="TabCandy.toggle();"/>
|
2007-10-25 23:02:20 +00:00
|
|
|
<command id="cmd_fullZoomReduce" oncommand="FullZoom.reduce()"/>
|
|
|
|
<command id="cmd_fullZoomEnlarge" oncommand="FullZoom.enlarge()"/>
|
|
|
|
<command id="cmd_fullZoomReset" oncommand="FullZoom.reset()"/>
|
2008-02-13 11:00:45 +00:00
|
|
|
<command id="cmd_fullZoomToggle" oncommand="ZoomManager.toggleZoom();"/>
|
2003-08-11 08:12:19 +00:00
|
|
|
<command id="Browser:OpenLocation" oncommand="openLocation();"/>
|
2004-04-21 04:35:27 +00:00
|
|
|
|
2010-05-11 04:28:18 +00:00
|
|
|
<command id="Tools:Search" oncommand="BrowserSearch.webSearch();"/>
|
2008-01-26 21:01:44 +00:00
|
|
|
<command id="Tools:Downloads" oncommand="BrowserDownloadsUI();"/>
|
2010-05-13 20:38:21 +00:00
|
|
|
<command id="Tools:Inspect" oncommand="InspectorUI.toggleInspectorUI();"/>
|
2006-04-27 03:05:10 +00:00
|
|
|
<command id="Tools:Addons" oncommand="BrowserOpenAddonsMgr();"/>
|
2007-05-20 21:09:42 +00:00
|
|
|
<command id="Tools:Sanitize"
|
2009-08-04 18:10:23 +00:00
|
|
|
oncommand="Cc['@mozilla.org/browser/browserglue;1'].getService(Ci.nsIBrowserGlue).sanitize(window);"/>
|
2008-11-03 23:22:23 +00:00
|
|
|
<command id="Tools:PrivateBrowsing" oncommand="gPrivateBrowsingUI.toggleMode();"/>
|
2006-07-21 21:16:12 +00:00
|
|
|
<command id="History:UndoCloseTab" oncommand="undoCloseTab();"/>
|
2009-04-23 06:50:30 +00:00
|
|
|
<command id="History:UndoCloseWindow" oncommand="undoCloseWindow();"/>
|
2007-01-05 11:45:15 +00:00
|
|
|
</commandset>
|
|
|
|
|
|
|
|
<commandset id="placesCommands">
|
2007-11-26 19:04:23 +00:00
|
|
|
<command id="Browser:ShowAllBookmarks"
|
|
|
|
oncommand="PlacesCommandHook.showPlacesOrganizer('AllBookmarks');"/>
|
|
|
|
<command id="Browser:ShowAllHistory"
|
|
|
|
oncommand="PlacesCommandHook.showPlacesOrganizer('History');"/>
|
2007-01-05 13:30:59 +00:00
|
|
|
</commandset>
|
2003-08-11 08:12:19 +00:00
|
|
|
|
|
|
|
<broadcasterset id="mainBroadcasterSet">
|
|
|
|
<broadcaster id="viewBookmarksSidebar" autoCheck="false" label="&bookmarksButton.label;"
|
|
|
|
type="checkbox" group="sidebar" sidebarurl="chrome://browser/content/bookmarks/bookmarksPanel.xul"
|
|
|
|
oncommand="toggleSidebar('viewBookmarksSidebar');"/>
|
|
|
|
|
2010-05-11 04:28:18 +00:00
|
|
|
<!-- for both places and non-places, the sidebar lives at
|
2006-11-04 04:48:06 +00:00
|
|
|
chrome://browser/content/history/history-panel.xul so there are no
|
|
|
|
problems when switching between versions -->
|
2006-06-06 20:50:42 +00:00
|
|
|
<broadcaster id="viewHistorySidebar" autoCheck="false" sidebartitle="&historyButton.label;"
|
2010-05-11 04:28:18 +00:00
|
|
|
type="checkbox" group="sidebar"
|
2006-11-04 04:48:06 +00:00
|
|
|
sidebarurl="chrome://browser/content/history/history-panel.xul"
|
2003-08-11 08:12:19 +00:00
|
|
|
oncommand="toggleSidebar('viewHistorySidebar');"/>
|
|
|
|
|
2010-05-11 04:28:18 +00:00
|
|
|
<broadcaster id="viewWebPanelsSidebar" autoCheck="false"
|
2003-08-11 08:12:19 +00:00
|
|
|
type="checkbox" group="sidebar" sidebarurl="chrome://browser/content/web-panels.xul"
|
|
|
|
oncommand="toggleSidebar('viewWebPanelsSidebar');"/>
|
|
|
|
|
2004-11-30 08:23:02 +00:00
|
|
|
<!-- popup blocking menu items -->
|
2010-05-11 04:28:18 +00:00
|
|
|
<broadcaster id="blockedPopupAllowSite"
|
|
|
|
accesskey="&allowPopups.accesskey;"
|
2004-11-30 08:23:02 +00:00
|
|
|
oncommand="gPopupBlockerObserver.toggleAllowPopupsForSite(event);"/>
|
2010-05-11 04:28:18 +00:00
|
|
|
<broadcaster id="blockedPopupEditSettings"
|
2005-06-07 20:16:29 +00:00
|
|
|
#ifdef XP_WIN
|
|
|
|
label="&editPopupSettings.label;"
|
|
|
|
#else
|
2010-05-11 04:28:18 +00:00
|
|
|
label="&editPopupSettingsUnix.label;"
|
2005-06-07 20:16:29 +00:00
|
|
|
#endif
|
2010-05-11 04:28:18 +00:00
|
|
|
accesskey="&editPopupSettings.accesskey;"
|
2004-11-30 08:23:02 +00:00
|
|
|
oncommand="gPopupBlockerObserver.editPopupSettings();"/>
|
2010-05-11 04:28:18 +00:00
|
|
|
<broadcaster id="blockedPopupDontShowMessage"
|
|
|
|
accesskey="&dontShowMessage.accesskey;"
|
2004-11-30 08:23:02 +00:00
|
|
|
type="checkbox"
|
|
|
|
oncommand="gPopupBlockerObserver.dontShowMessage();"/>
|
|
|
|
<broadcaster id="blockedPopupsSeparator"/>
|
2005-09-18 21:31:34 +00:00
|
|
|
<broadcaster id="isImage"/>
|
2007-09-02 22:11:38 +00:00
|
|
|
<broadcaster id="isFrameImage"/>
|
2003-08-11 08:12:19 +00:00
|
|
|
</broadcasterset>
|
|
|
|
|
|
|
|
<keyset id="mainKeyset">
|
|
|
|
<key id="key_newNavigator"
|
|
|
|
key="&newNavigatorCmd.key;"
|
|
|
|
command="cmd_newNavigator"
|
|
|
|
modifiers="accel"/>
|
|
|
|
<key id="key_newNavigatorTab" key="&tabCmd.commandkey;" modifiers="accel" command="cmd_newNavigatorTab"/>
|
2003-11-20 00:45:03 +00:00
|
|
|
<key id="focusURLBar" key="&openCmd.commandkey;" command="Browser:OpenLocation"
|
2003-08-11 08:12:19 +00:00
|
|
|
modifiers="accel"/>
|
2004-12-05 22:06:44 +00:00
|
|
|
#ifndef XP_MACOSX
|
2004-01-19 06:46:02 +00:00
|
|
|
<key id="focusURLBar2" key="&urlbar.accesskey;" command="Browser:OpenLocation"
|
|
|
|
modifiers="alt"/>
|
2004-12-05 22:06:44 +00:00
|
|
|
#endif
|
|
|
|
|
2004-09-10 07:55:06 +00:00
|
|
|
#
|
|
|
|
# Search Command Key Logic works like this:
|
|
|
|
#
|
2004-11-30 08:23:02 +00:00
|
|
|
# Unix: Ctrl+K (cross platform binding)
|
|
|
|
# Ctrl+J (in case of emacs Ctrl-K conflict)
|
2004-09-10 07:55:06 +00:00
|
|
|
# Mac: Ctrl+K (cross platform binding)
|
|
|
|
# Win: Ctrl+K (cross platform binding)
|
|
|
|
# Ctrl+E (IE compat)
|
|
|
|
#
|
|
|
|
# We support Ctrl+K on all platforms now and advertise it in the menu since it is
|
|
|
|
# our standard - it is a "safe" choice since it is near no harmful keys like "W" as
|
|
|
|
# "E" is. People mourning the loss of Ctrl+K for emacs compat can switch their GTK
|
|
|
|
# system setting to use emacs emulation, and we should respect it. Focus-Search-Box
|
|
|
|
# is a fundamental keybinding and we are maintaining a XP binding so that it is easy
|
|
|
|
# for people to switch to Linux.
|
|
|
|
#
|
2004-04-21 04:35:27 +00:00
|
|
|
<key id="key_search" key="&searchFocus.commandkey;" command="Tools:Search" modifiers="accel"/>
|
2008-02-23 10:19:08 +00:00
|
|
|
#ifdef XP_MACOSX
|
|
|
|
<key id="key_search2" key="&findOnCmd.commandkey;" command="Tools:Search" modifiers="accel,alt"/>
|
|
|
|
#endif
|
2004-11-30 08:23:02 +00:00
|
|
|
#ifdef XP_WIN
|
2004-09-10 07:55:06 +00:00
|
|
|
<key id="key_search2" key="&searchFocus.commandkey2;" command="Tools:Search" modifiers="accel"/>
|
2004-11-30 08:23:02 +00:00
|
|
|
#endif
|
|
|
|
#ifdef XP_GNOME
|
|
|
|
<key id="key_search2" key="&searchFocusUnix.commandkey;" command="Tools:Search" modifiers="accel"/>
|
2009-02-25 15:25:28 +00:00
|
|
|
<key id="key_openDownloads" key="&downloadsUnix.commandkey;" command="Tools:Downloads" modifiers="accel,shift"/>
|
2004-11-30 08:23:02 +00:00
|
|
|
#else
|
|
|
|
<key id="key_openDownloads" key="&downloads.commandkey;" command="Tools:Downloads" modifiers="accel"/>
|
2003-11-20 00:45:03 +00:00
|
|
|
#endif
|
2007-12-13 03:22:08 +00:00
|
|
|
<key id="key_errorConsole" key="&errorConsoleCmd.commandkey;" oncommand="toJavaScriptConsole();" modifiers="accel,shift"/>
|
2010-06-22 16:51:50 +00:00
|
|
|
<key id="key_hudConsole" key="&hudConsoleCmd.commandkey;" oncommand="HUDConsoleUI.toggleHUD();" modifiers="accel,shift"/>
|
2010-05-13 20:38:21 +00:00
|
|
|
<key id="key_inspect" key="&inspectMenu.commandkey;" command="Tools:Inspect" modifiers="accel,shift"/>
|
2003-11-20 00:45:03 +00:00
|
|
|
<key id="openFileKb" key="&openFileCmd.commandkey;" command="Browser:OpenFile" modifiers="accel"/>
|
|
|
|
<key id="key_savePage" key="&savePageCmd.commandkey;" command="Browser:SavePage" modifiers="accel"/>
|
|
|
|
<key id="printKb" key="&printCmd.commandkey;" command="cmd_print" modifiers="accel"/>
|
|
|
|
<key id="key_close" key="&closeCmd.key;" command="cmd_close" modifiers="accel"/>
|
|
|
|
<key id="key_closeWindow" key="&closeCmd.key;" command="cmd_closeWindow" modifiers="accel,shift"/>
|
2003-08-11 08:12:19 +00:00
|
|
|
<key id="key_undo"
|
|
|
|
key="&undoCmd.key;"
|
|
|
|
modifiers="accel"/>
|
2004-11-30 08:23:02 +00:00
|
|
|
#ifdef XP_UNIX
|
|
|
|
<key id="key_redo" key="&undoCmd.key;" modifiers="accel,shift"/>
|
|
|
|
#else
|
|
|
|
<key id="key_redo" key="&redoCmd.key;" modifiers="accel"/>
|
|
|
|
#endif
|
2003-08-11 08:12:19 +00:00
|
|
|
<key id="key_cut"
|
|
|
|
key="&cutCmd.key;"
|
|
|
|
modifiers="accel"/>
|
|
|
|
<key id="key_copy"
|
|
|
|
key="©Cmd.key;"
|
|
|
|
modifiers="accel"/>
|
|
|
|
<key id="key_paste"
|
|
|
|
key="&pasteCmd.key;"
|
|
|
|
modifiers="accel"/>
|
|
|
|
<key id="key_delete" keycode="VK_DELETE" command="cmd_delete"/>
|
2004-11-30 08:23:02 +00:00
|
|
|
<key id="key_selectAll" key="&selectAllCmd.key;" modifiers="accel"/>
|
2003-08-11 08:12:19 +00:00
|
|
|
|
|
|
|
<key keycode="VK_BACK" command="cmd_handleBackspace"/>
|
2005-10-20 15:16:27 +00:00
|
|
|
<key keycode="VK_BACK" command="cmd_handleShiftBackspace" modifiers="shift"/>
|
2005-10-11 19:03:11 +00:00
|
|
|
#ifndef XP_MACOSX
|
2003-08-11 08:12:19 +00:00
|
|
|
<key id="goBackKb" keycode="VK_LEFT" command="Browser:Back" modifiers="alt"/>
|
|
|
|
<key id="goForwardKb" keycode="VK_RIGHT" command="Browser:Forward" modifiers="alt"/>
|
2005-06-20 06:39:22 +00:00
|
|
|
#else
|
|
|
|
<key id="goBackKb" keycode="VK_LEFT" command="Browser:Back" modifiers="accel" />
|
|
|
|
<key id="goForwardKb" keycode="VK_RIGHT" command="Browser:Forward" modifiers="accel" />
|
2005-04-21 20:58:30 +00:00
|
|
|
#endif
|
|
|
|
#ifdef XP_UNIX
|
|
|
|
<key id="goBackKb2" key="&goBackCmd.commandKey;" command="Browser:Back" modifiers="accel"/>
|
|
|
|
<key id="goForwardKb2" key="&goForwardCmd.commandKey;" command="Browser:Forward" modifiers="accel"/>
|
2003-08-11 08:12:19 +00:00
|
|
|
#endif
|
|
|
|
<key id="goHome" keycode="VK_HOME" command="Browser:Home" modifiers="alt"/>
|
2005-02-27 17:59:38 +00:00
|
|
|
<key keycode="VK_F5" command="Browser:Reload"/>
|
2005-09-04 22:38:30 +00:00
|
|
|
#ifndef XP_MACOSX
|
2008-01-15 05:09:39 +00:00
|
|
|
<key id="showAllHistoryKb" key="&showAllHistoryCmd.commandkey;" command="Browser:ShowAllHistory" modifiers="accel,shift"/>
|
2005-02-27 17:59:38 +00:00
|
|
|
<key keycode="VK_F5" command="Browser:ReloadSkipCache" modifiers="accel"/>
|
2005-09-07 16:33:19 +00:00
|
|
|
<key id="key_fullScreen" keycode="VK_F11" command="View:FullScreen"/>
|
2009-09-03 21:36:32 +00:00
|
|
|
#else
|
|
|
|
<key id="key_fullScreen" key="&fullScreenCmd.macCommandKey;" command="View:FullScreen" modifiers="accel,shift"/>
|
|
|
|
<key keycode="VK_F11" command="View:FullScreen"/>
|
2005-09-04 22:38:30 +00:00
|
|
|
#endif
|
2005-02-27 17:59:38 +00:00
|
|
|
<key key="&reloadCmd.commandkey;" command="Browser:Reload" modifiers="accel" id="key_reload"/>
|
|
|
|
<key key="&reloadCmd.commandkey;" command="Browser:ReloadSkipCache" modifiers="accel,shift"/>
|
2003-08-11 08:12:19 +00:00
|
|
|
<key id="key_viewSource" key="&pageSourceCmd.commandkey;" command="View:PageSource" modifiers="accel"/>
|
2004-11-30 08:23:02 +00:00
|
|
|
#ifndef XP_WIN
|
2003-08-11 08:12:19 +00:00
|
|
|
<key id="key_viewInfo" key="&pageInfoCmd.commandkey;" command="View:PageInfo" modifiers="accel"/>
|
2003-11-20 00:45:03 +00:00
|
|
|
#endif
|
2003-11-20 09:48:16 +00:00
|
|
|
<key id="key_find" key="&findOnCmd.commandkey;" command="cmd_find" modifiers="accel"/>
|
|
|
|
<key id="key_findAgain" key="&findAgainCmd.commandkey;" command="cmd_findAgain" modifiers="accel"/>
|
|
|
|
<key id="key_findPrevious" key="&findAgainCmd.commandkey;" command="cmd_findPrevious" modifiers="accel,shift"/>
|
|
|
|
<key keycode="&findAgainCmd.commandkey2;" command="cmd_findAgain"/>
|
|
|
|
<key keycode="&findAgainCmd.commandkey2;" command="cmd_findPrevious" modifiers="shift"/>
|
|
|
|
|
2008-01-16 01:50:16 +00:00
|
|
|
<key id="addBookmarkAsKb" key="&bookmarkThisPageCmd.commandkey;" command="Browser:AddBookmarkAs" modifiers="accel"/>
|
2005-08-27 02:26:29 +00:00
|
|
|
# Accel+Shift+A-F are reserved on GTK2
|
2005-08-26 19:01:22 +00:00
|
|
|
#ifndef MOZ_WIDGET_GTK2
|
2008-01-16 01:50:16 +00:00
|
|
|
<key id="bookmarkAllTabsKb" key="&bookmarkThisPageCmd.commandkey;" command="Browser:BookmarkAllTabs" modifiers="accel,shift"/>
|
2009-03-26 12:54:53 +00:00
|
|
|
<key id="manBookmarkKb" key="&bookmarksCmd.commandkey;" command="Browser:ShowAllBookmarks" modifiers="accel,shift"/>
|
|
|
|
#else
|
|
|
|
<key id="manBookmarkKb" key="&bookmarksGtkCmd.commandkey;" command="Browser:ShowAllBookmarks" modifiers="accel,shift"/>
|
2005-08-26 19:01:22 +00:00
|
|
|
#endif
|
2009-03-26 12:54:53 +00:00
|
|
|
<key id="viewBookmarksSidebarKb" key="&bookmarksCmd.commandkey;" command="viewBookmarksSidebar" modifiers="accel"/>
|
2003-11-20 00:45:03 +00:00
|
|
|
#ifdef XP_WIN
|
2010-05-11 04:28:18 +00:00
|
|
|
# Cmd+I is conventially mapped to Info on MacOS X, thus it should not be
|
|
|
|
# overridden for other purposes there.
|
2009-03-26 12:54:53 +00:00
|
|
|
<key id="viewBookmarksSidebarWinKb" key="&bookmarksWinCmd.commandkey;" command="viewBookmarksSidebar" modifiers="accel"/>
|
2003-11-17 02:27:26 +00:00
|
|
|
#endif
|
|
|
|
|
2005-02-28 22:01:56 +00:00
|
|
|
# don't use |command="Browser:Stop"|, ESC is being used to freeze animated gifs,
|
|
|
|
# even if the stop button and menuitem are disabled (see Bug 284140)
|
|
|
|
<key id="key_stop" keycode="VK_ESCAPE" oncommand="BrowserStop();"/>
|
2010-05-11 04:28:18 +00:00
|
|
|
|
2003-08-11 08:12:19 +00:00
|
|
|
#ifdef XP_MACOSX
|
2005-03-02 05:43:57 +00:00
|
|
|
<key id="key_stop_mac" modifiers="accel" key="&stopCmd.macCommandKey;" oncommand="BrowserStop();"/>
|
2006-04-18 08:38:33 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
<key id="key_gotoHistory"
|
|
|
|
key="&historySidebarCmd.commandKey;"
|
|
|
|
#ifdef XP_MACOSX
|
|
|
|
modifiers="accel,shift"
|
2003-08-11 08:12:19 +00:00
|
|
|
#else
|
2006-04-18 08:38:33 +00:00
|
|
|
modifiers="accel"
|
2003-08-11 08:12:19 +00:00
|
|
|
#endif
|
2006-04-18 08:38:33 +00:00
|
|
|
command="viewHistorySidebar"/>
|
2006-03-01 21:36:53 +00:00
|
|
|
|
2007-10-25 23:02:20 +00:00
|
|
|
<key id="key_fullZoomReduce" key="&fullZoomReduceCmd.commandkey;" command="cmd_fullZoomReduce" modifiers="accel"/>
|
2008-04-23 08:04:08 +00:00
|
|
|
<key key="&fullZoomReduceCmd.commandkey2;" command="cmd_fullZoomReduce" modifiers="accel"/>
|
2007-10-25 23:02:20 +00:00
|
|
|
<key id="key_fullZoomEnlarge" key="&fullZoomEnlargeCmd.commandkey;" command="cmd_fullZoomEnlarge" modifiers="accel"/>
|
|
|
|
<key key="&fullZoomEnlargeCmd.commandkey2;" command="cmd_fullZoomEnlarge" modifiers="accel"/>
|
2008-04-23 08:04:08 +00:00
|
|
|
<key key="&fullZoomEnlargeCmd.commandkey3;" command="cmd_fullZoomEnlarge" modifiers="accel"/>
|
2007-10-25 23:02:20 +00:00
|
|
|
<key id="key_fullZoomReset" key="&fullZoomResetCmd.commandkey;" command="cmd_fullZoomReset" modifiers="accel"/>
|
2008-04-23 08:04:08 +00:00
|
|
|
<key key="&fullZoomResetCmd.commandkey2;" command="cmd_fullZoomReset" modifiers="accel"/>
|
2009-07-21 04:25:59 +00:00
|
|
|
|
|
|
|
<key id="key_showAllTabs" command="Browser:ShowAllTabs" keycode="VK_TAB" modifiers="control,shift"/>
|
|
|
|
|
2010-07-09 19:44:59 +00:00
|
|
|
<key id="key_tabcandy" command="Browser:ToggleTabCandy" key="&showTabCandy.commandkey;" modifiers="accel" />
|
2010-06-29 08:04:22 +00:00
|
|
|
|
2005-01-26 01:40:30 +00:00
|
|
|
<key id="key_switchTextDirection" key="&bidiSwitchTextDirectionItem.commandkey;" command="cmd_switchTextDirection" modifiers="accel,shift" />
|
2003-08-11 08:12:19 +00:00
|
|
|
|
2009-01-02 05:21:02 +00:00
|
|
|
<key id="key_privatebrowsing" command="Tools:PrivateBrowsing" key="&privateBrowsingCmd.commandkey;" modifiers="accel,shift"/>
|
2005-02-25 09:07:58 +00:00
|
|
|
<key id="key_sanitize" command="Tools:Sanitize" keycode="VK_DELETE" modifiers="accel,shift"/>
|
2006-02-02 00:23:03 +00:00
|
|
|
#ifdef XP_MACOSX
|
2006-10-10 13:41:40 +00:00
|
|
|
<key id="key_sanitize_mac" command="Tools:Sanitize" keycode="VK_BACK" modifiers="accel,shift"/>
|
2006-02-02 00:23:03 +00:00
|
|
|
#endif
|
2008-03-07 01:59:42 +00:00
|
|
|
#ifdef XP_UNIX
|
|
|
|
<key id="key_quitApplication" key="&quitApplicationCmdMac.key;" command="cmd_quitApplication" modifiers="accel"/>
|
|
|
|
#endif
|
|
|
|
|
2006-10-10 13:41:40 +00:00
|
|
|
<key id="key_undoCloseTab" command="History:UndoCloseTab" key="&tabCmd.commandkey;" modifiers="accel,shift"/>
|
2009-04-23 06:50:30 +00:00
|
|
|
<key id="key_undoCloseWindow" command="History:UndoCloseWindow" key="&newNavigatorCmd.key;" modifiers="accel,shift"/>
|
2008-05-02 14:50:42 +00:00
|
|
|
|
|
|
|
#ifdef XP_GNOME
|
|
|
|
#define NUM_SELECT_TAB_MODIFIER alt
|
|
|
|
#else
|
|
|
|
#define NUM_SELECT_TAB_MODIFIER accel
|
|
|
|
#endif
|
|
|
|
|
2008-09-02 08:50:22 +00:00
|
|
|
#expand <key id="key_selectTab1" oncommand="gBrowser.selectTabAtIndex(0, event);" key="1" modifiers="__NUM_SELECT_TAB_MODIFIER__"/>
|
|
|
|
#expand <key id="key_selectTab2" oncommand="gBrowser.selectTabAtIndex(1, event);" key="2" modifiers="__NUM_SELECT_TAB_MODIFIER__"/>
|
|
|
|
#expand <key id="key_selectTab3" oncommand="gBrowser.selectTabAtIndex(2, event);" key="3" modifiers="__NUM_SELECT_TAB_MODIFIER__"/>
|
|
|
|
#expand <key id="key_selectTab4" oncommand="gBrowser.selectTabAtIndex(3, event);" key="4" modifiers="__NUM_SELECT_TAB_MODIFIER__"/>
|
|
|
|
#expand <key id="key_selectTab5" oncommand="gBrowser.selectTabAtIndex(4, event);" key="5" modifiers="__NUM_SELECT_TAB_MODIFIER__"/>
|
|
|
|
#expand <key id="key_selectTab6" oncommand="gBrowser.selectTabAtIndex(5, event);" key="6" modifiers="__NUM_SELECT_TAB_MODIFIER__"/>
|
|
|
|
#expand <key id="key_selectTab7" oncommand="gBrowser.selectTabAtIndex(6, event);" key="7" modifiers="__NUM_SELECT_TAB_MODIFIER__"/>
|
|
|
|
#expand <key id="key_selectTab8" oncommand="gBrowser.selectTabAtIndex(7, event);" key="8" modifiers="__NUM_SELECT_TAB_MODIFIER__"/>
|
|
|
|
#expand <key id="key_selectLastTab" oncommand="gBrowser.selectTabAtIndex(-1, event);" key="9" modifiers="__NUM_SELECT_TAB_MODIFIER__"/>
|
2008-05-02 14:50:42 +00:00
|
|
|
|
2003-08-11 08:12:19 +00:00
|
|
|
</keyset>
|
|
|
|
|
2005-03-24 16:00:01 +00:00
|
|
|
# Used by baseMenuOverlay
|
|
|
|
#ifdef XP_MACOSX
|
|
|
|
<commandset id="baseMenuCommandSet" />
|
|
|
|
#endif
|
|
|
|
<keyset id="baseMenuKeyset" />
|