This commit is contained in:
ccarlen%netscape.com 2000-12-13 15:48:18 +00:00
Родитель 87a029eeb9
Коммит 1e79c473f2
1 изменённых файлов: 116 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,116 @@
/* -*- Mode: IDL; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
*
* 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 Netscape are
* Copyright (C) 1999, Mozilla. All Rights Reserved.
*
* Contributor(s):
* Conrad Carlen <ccarlen@netscape.com>
*/
#include <PowerPlant.r>
#include <Types.r>
#include "ApplIDs.h"
resource 'Mcmd' (mcmd_ContextLinkCmds, "Link") { {
cmd_OpenLinkInNewWindow,
msg_Nothing,
cmd_Back,
cmd_Forward,
cmd_Reload,
cmd_Stop,
msg_Nothing,
cmd_ViewPageSource,
msg_Nothing,
cmd_SelectAll,
cmd_Copy,
cmd_CopyLinkLocation,
} };
resource 'Mcmd' (mcmd_ContextImageCmds, "Image") { {
cmd_Back,
cmd_Forward,
cmd_Reload,
cmd_Stop,
msg_Nothing,
cmd_ViewPageSource,
cmd_ViewImage,
msg_Nothing,
cmd_SelectAll,
cmd_Copy,
cmd_CopyImageLocation,
} };
resource 'Mcmd' (mcmd_ContextDocumentCmds, "Document") { {
cmd_Back,
cmd_Forward,
cmd_Reload,
cmd_Stop,
msg_Nothing,
cmd_ViewPageSource,
msg_Nothing,
cmd_SelectAll,
cmd_Copy,
msg_Nothing,
cmd_PrefillForm,
} };
resource 'Mcmd' (mcmd_ContextTextCmds, "Text") { {
cmd_Back,
cmd_Forward,
cmd_Reload,
cmd_Stop,
msg_Nothing,
cmd_ViewPageSource,
msg_Nothing,
cmd_SelectAll,
cmd_Copy,
} };
/*
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,
"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_CopyLinkLocation,
cmd_CopyImageLocation,
} };