mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 17:16:12 +00:00
6f4a944284
68985, various hangs, crashes, glitches etc. 68545, 68985, 68395 r=jag; Implement new bookmarks sidebar panel. a=hyatt
168 lines
7.5 KiB
XML
168 lines
7.5 KiB
XML
<?xml version="1.0"?>
|
|
<!-- The contents of this file are subject to the Netscape Public
|
|
- License Version 1.1 (the "License"); you may not use this file
|
|
- except in compliance with the License. You may obtain a copy of
|
|
- the License at http://www.mozilla.org/NPL/
|
|
-
|
|
- Software distributed under the License is distributed on an "AS
|
|
- IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
- implied. See the License for the specific language governing
|
|
- rights and limitations under the License.
|
|
-
|
|
- The Original Code is Mozilla Communicator client code, released
|
|
- March 31, 1998.
|
|
-
|
|
- The Initial Developer of the Original Code is Netscape
|
|
- Communications Corporation. Portions created by Netscape are
|
|
- Copyright (C) 1998-1999 Netscape Communications Corporation. All
|
|
- Rights Reserved.
|
|
-
|
|
- Contributor(s):
|
|
- Blake Ross <blakeross@telocity.com>
|
|
-->
|
|
<!DOCTYPE window SYSTEM "chrome://communicator/locale/contentAreaCommands.dtd" >
|
|
<overlay id="contentAreaContextOverlay"
|
|
xmlns:html="http://www.w3.org/1999/xhtml"
|
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
|
|
|
|
<!-- Context menu -->
|
|
<script language="javascript">
|
|
// Global variable that holds the nsContextMenu instance.
|
|
var contextMenu = null;
|
|
</script>
|
|
<script type="text/javascript" src="chrome://communicator/content/nsContextMenu.js"/>
|
|
<script type="text/javascript" src="chrome://communicator/content/contentAreaUtils.js"/>
|
|
|
|
<popupset id="contentAreaContextSet">
|
|
<!-- This is a generic context menu for a content area. It contains
|
|
each and every possible menu choice. The appropriate items are
|
|
hidden/shown upon display, based on what the user has clicked-on.
|
|
-->
|
|
<popup id="contentAreaContextMenu"
|
|
oncreate="contextMenu = new nsContextMenu( this ); return contextMenu.shouldDisplay;"
|
|
ondestroy="contextMenu.onDestroy(); contextMenu = null;">
|
|
<!-- Open ==================================== -->
|
|
<menuitem id="context-openlink"
|
|
value="&openLinkCmd.label;"
|
|
accesskey=""
|
|
oncommand="contextMenu.openLink();"/>
|
|
<!-- XXX - DEPENDENT ON PRESENCE OF EDITOR!! - XXX -->
|
|
<menuitem id="context-editlink"
|
|
value="&editLinkCmd.label;"
|
|
accesskey=""
|
|
oncommand="contextMenu.editLink();"/>
|
|
<menuitem id="context-openframe"
|
|
value="&openFrameCmd.label;"
|
|
accesskey=""
|
|
oncommand="contextMenu.openFrame();"/>
|
|
<menuitem id="context-showonlythisframe"
|
|
value="&showOnlyThisFrameCmd.label;"
|
|
accesskey="&showOnlyThisFrameCmd.accesskey;"
|
|
oncommand="contextMenu.showOnlyThisFrame();"/>
|
|
<menuseparator id="context-sep-open"/>
|
|
<!-- Navigation ============================== -->
|
|
<menuitem id="context-back"
|
|
value="&goBackCmd.label;"
|
|
accesskey="&goBackCmd.accesskey;"
|
|
oncommand="BrowserBack()"/>
|
|
<menuitem id="context-forward"
|
|
value="&goForwardCmd.label;"
|
|
accesskey="&goForwardCmd.accesskey;"
|
|
oncommand="BrowserForward()"/>
|
|
<menuitem id="context-reload"
|
|
value="&reloadCmd.label;"
|
|
accesskey="&reloadCmd.accesskey;"
|
|
oncommand="BrowserReload();"/>
|
|
<menuitem id="context-reload-frame"
|
|
value="&reloadFrameCmd.label;"
|
|
accesskey="&reloadFrameCmd.accesskey;"
|
|
oncommand="contextMenu.reloadFrame();"/>
|
|
<menuitem id="context-stop"
|
|
value="&stopCmd.label;"
|
|
accesskey=""
|
|
oncommand="BrowserStop();"/>
|
|
<menuseparator id="context-sep-navigation"/>
|
|
<!-- View ==================================== -->
|
|
<menuitem id="context-viewsource"
|
|
value="&viewPageSourceCmd.label;"
|
|
accesskey=""
|
|
oncommand="BrowserViewSource();"/>
|
|
<menuitem id="context-viewframesource"
|
|
value="&viewFrameSourceCmd.label;"
|
|
accesskey=""
|
|
oncommand="contextMenu.viewFrameSource();"/>
|
|
<menuitem id="context-viewinfo"
|
|
value="&viewPageInfoCmd.label;"
|
|
accesskey=""
|
|
oncommand="contextMenu.viewInfo();"/>
|
|
<menuitem id="context-viewframeinfo"
|
|
value="&viewFrameInfoCmd.label;"
|
|
accesskey=""
|
|
oncommand="contextMenu.viewFrameInfo();"/>
|
|
<menuitem id="context-viewimage"
|
|
value="&viewImageCmd.label;"
|
|
accesskey=""
|
|
oncommand="contextMenu.viewImage();"/>
|
|
<menuseparator id="context-sep-view"/>
|
|
<!-- Misc ==================================== -->
|
|
<menuitem id="context-bookmarkpage"
|
|
value="&bookmarkPageCmd.label;"
|
|
accesskey="&bookmarkPageCmd.accesskey;"
|
|
oncommand="BookmarksUtils.addBookmarkToWindow(window._content);"/>
|
|
<menuitem id="context-bookmarklink"
|
|
value="&bookmarkLinkCmd.label;"
|
|
accesskey="&bookmarkLinkCmd.accesskey;"
|
|
oncommand="BookmarksUtils.addBookmark(contextMenu.linkURL(),
|
|
contextMenu.linkText());"/>
|
|
<menuseparator id="context-sep-bookmark"/>
|
|
<!-- Save ==================================== -->
|
|
<menuitem id="context-savepage"
|
|
value="&savePageCmd.label;"
|
|
accesskey="&savePageCmd.accesskey;"
|
|
oncommand="contextMenu.savePage();"/>
|
|
<menuitem id="context-saveframe"
|
|
value="&saveFrameCmd.label;"
|
|
accesskey="&saveFrameCmd.accesskey;"
|
|
oncommand="contextMenu.saveFrame();"/>
|
|
<menuitem id="context-savelink"
|
|
value="&saveLinkCmd.label;"
|
|
accesskey="&saveLinkCmd.accesskey;"
|
|
oncommand="contextMenu.saveLink();"/>
|
|
<menuitem id="context-saveimage"
|
|
accesskey="&saveImageCmd.accesskey;"
|
|
oncommand="contextMenu.saveImage();"/>
|
|
<menuitem id="context-savebgimage"
|
|
value="&saveBGImageCmd.label;"
|
|
accesskey="&saveBGImageCmd.accesskey;"
|
|
oncommand="contextMenu.saveBGImage();"/>
|
|
<menuseparator id="context-sep-save"/>
|
|
<!-- Clipboard =============================== -->
|
|
<menuitem id="context-selectall"
|
|
value="&selectAllCmd.label;"
|
|
accesskey="&selectAllCmd.accesskey;"
|
|
observes="cmd_selectAll"/>
|
|
<menuitem id="context-cut"
|
|
value="&cutCmd.label;"
|
|
accesskey="&cutCmd.accesskey;"
|
|
observes="cmd_cut"/>
|
|
<menuitem id="context-copy"
|
|
value="©Cmd.label;"
|
|
accesskey="©Cmd.accesskey;"
|
|
observes="cmd_copy"/>
|
|
<menuitem id="context-paste"
|
|
value="&pasteCmd.label;"
|
|
accesskey="&pasteCmd.accesskey;"
|
|
observes="cmd_paste"/>
|
|
<menuitem id="context-copylink"
|
|
value="©LinkCmd.label;"
|
|
accesskey="©LinkCmd.accesskey;"
|
|
oncommand="contextMenu.copyLink();"/>
|
|
<menuitem id="context-copyimage"
|
|
value="©ImageCmd.label;"
|
|
accesskey="©ImageCmd.accesskey;"
|
|
oncommand="contextMenu.copyImage();"/>
|
|
</popup>
|
|
</popupset>
|
|
</overlay>
|