mirror of
https://github.com/rn10950/RetroZilla.git
synced 2024-11-10 18:00:15 +01:00
119 lines
4.0 KiB
R
119 lines
4.0 KiB
R
/* -*- Mode: IDL; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
||
*
|
||
* ***** BEGIN LICENSE BLOCK *****
|
||
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
||
*
|
||
* The contents of this file are subject to the Mozilla Public License Version
|
||
* 1.1 (the "License"); you may not use this file except in compliance with
|
||
* the License. You may obtain a copy of the License at
|
||
* http://www.mozilla.org/MPL/
|
||
*
|
||
* Software distributed under the License is distributed on an "AS IS" basis,
|
||
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||
* for the specific language governing rights and limitations under the
|
||
* License.
|
||
*
|
||
* The Original Code is the Mozilla browser.
|
||
*
|
||
* The Initial Developer of the Original Code is
|
||
* Netscape Communications, Inc.
|
||
* Portions created by the Initial Developer are Copyright (C) 1999
|
||
* the Initial Developer. All Rights Reserved.
|
||
*
|
||
* Contributor(s):
|
||
* Conrad Carlen <ccarlen@netscape.com>
|
||
*
|
||
* 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 ***** */
|
||
|
||
#include <PowerPlant.r>
|
||
#include <Types.r>
|
||
#include "ApplIDs.h"
|
||
|
||
/*
|
||
These are all of the commands which can be done by CBrowserShell in
|
||
any possible context. PowerPlant's LCMAttachment takes care
|
||
of removing any commands which should not be enabled for the current
|
||
click by means of FindCommandStatus of the target (CBrowserShell)
|
||
*/
|
||
|
||
resource 'Mcmd' (mcmd_BrowserShellContextMenuCmds, "BrowserShellContextMenu") { {
|
||
cmd_OpenLinkInNewWindow,
|
||
msg_Nothing,
|
||
cmd_Back,
|
||
cmd_Forward,
|
||
cmd_Reload,
|
||
cmd_Stop,
|
||
msg_Nothing,
|
||
cmd_ViewPageSource,
|
||
cmd_ViewImage,
|
||
cmd_ViewBackgroundImage,
|
||
msg_Nothing,
|
||
cmd_SelectAll,
|
||
cmd_Copy,
|
||
msg_Nothing,
|
||
cmd_CopyImage,
|
||
cmd_CopyLinkLocation,
|
||
cmd_CopyImageLocation,
|
||
msg_Nothing,
|
||
cmd_SaveLinkTarget,
|
||
cmd_SaveImage,
|
||
msg_Nothing,
|
||
cmd_PrefillForm
|
||
} };
|
||
|
||
/*
|
||
The MENU/Mcmd combination that we use to get the text for
|
||
context menus items. PowerPlant searches its menu list in
|
||
order to do this. We can add this menu to the menu list as
|
||
a hierarchical menu so it won't show but can be used for
|
||
this purpose. The name "buzzwords" is taken from MacApp which
|
||
uses (and officially supports) this technique.
|
||
*/
|
||
|
||
resource 'MENU' (menu_Buzzwords, "Buzzwords") {
|
||
menu_Buzzwords, textMenuProc, allEnabled, enabled, "",
|
||
{
|
||
"Open Link In New Window", noIcon, noKey, noMark, plain,
|
||
"Back", noIcon, noKey, noMark, plain,
|
||
"Forward", noIcon, noKey, noMark, plain,
|
||
"Reload", noIcon, noKey, noMark, plain,
|
||
"Stop", noIcon, noKey, noMark, plain,
|
||
"View Page Source", noIcon, noKey, noMark, plain,
|
||
"View Image", noIcon, noKey, noMark, plain,
|
||
"View Background Image", noIcon, noKey, noMark, plain,
|
||
"Copy Image", noIcon, noKey, noMark, plain,
|
||
"Save Link Target As<41>", noIcon, noKey, noMark, plain,
|
||
"Save Image As<41>", noIcon, noKey, noMark, plain,
|
||
"Copy Link Location", noIcon, noKey, noMark, plain,
|
||
"Copy Image Location", noIcon, noKey, noMark, plain,
|
||
}
|
||
};
|
||
|
||
resource 'Mcmd' (menu_Buzzwords, "Buzzwords") { {
|
||
cmd_OpenLinkInNewWindow,
|
||
cmd_Back,
|
||
cmd_Forward,
|
||
cmd_Reload,
|
||
cmd_Stop,
|
||
cmd_ViewPageSource,
|
||
cmd_ViewImage,
|
||
cmd_ViewBackgroundImage,
|
||
cmd_CopyImage,
|
||
cmd_SaveLinkTarget,
|
||
cmd_SaveImage,
|
||
cmd_CopyLinkLocation,
|
||
cmd_CopyImageLocation,
|
||
} };
|