mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-14 18:51:28 +00:00
179 lines
6.1 KiB
C
179 lines
6.1 KiB
C
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
*
|
|
* The contents of this file are subject to the Netscape Public License
|
|
* Version 1.0 (the "NPL"); you may not use this file except in
|
|
* compliance with the NPL. You may obtain a copy of the NPL at
|
|
* http://www.mozilla.org/NPL/
|
|
*
|
|
* Software distributed under the NPL is distributed on an "AS IS" basis,
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
|
|
* for the specific language governing rights and limitations under the
|
|
* NPL.
|
|
*
|
|
* The Initial Developer of this code under the NPL is Netscape
|
|
* Communications Corporation. Portions created by Netscape are
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
|
|
* Reserved.
|
|
*/
|
|
|
|
// ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ
|
|
// Browser_Constants.h
|
|
// ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ
|
|
|
|
#pragma once
|
|
|
|
#include <PP_Resources.h> // for MBAR_Initial
|
|
|
|
// MenuBar MBAR ResIDT's
|
|
const ResIDT cBrowserMenubar = MBAR_Initial;
|
|
const ResIDT cEditorMenubar = 129;
|
|
const ResIDT cComposeMenubar = 132;
|
|
const ResIDT cBookmarksMenubar = 133;
|
|
const ResIDT cMinimalMenubar = 135;
|
|
|
|
// Menu ResIDT's
|
|
//const ResIDT cDirectoryMenuID = 10;
|
|
|
|
// WARNING: All other hierarchical menu IDs must be below 75
|
|
// or bad things will happen!
|
|
|
|
// Set aside 10 menu IDs for the Editor plugins hierarchical menus.
|
|
const ResIDT cEditorPluginsFirstHierMenuID = 75;
|
|
const ResIDT cEditorPluginsLastHierMenuID = 84;
|
|
|
|
// Set aside 150 menu IDs for the Bookmarks hierarchical menus.
|
|
// (That's 85 to 235 inclusive minus menu ID 128 for the "Apple" menu.)
|
|
const ResIDT cBookmarksFirstHierMenuID = 85;
|
|
const ResIDT cBookmarksLastHierMenuID = 235;
|
|
|
|
// Reserve this range for bookmark menus
|
|
const CommandT BOOKMARKS_MENU_BASE = 3050;
|
|
const CommandT BOOKMARKS_MENU_BASE_LAST = 3999;
|
|
|
|
const ResIDT cHistoryMenuID = 303;
|
|
const ResIDT cBookmarksMenuID = 304;
|
|
const ResIDT cWindowMenuID = 305;
|
|
const ResIDT cToolsMenuID = 405;
|
|
const ResIDT cFontMenuID = 13;
|
|
|
|
// Browser mediated window types
|
|
typedef enum {
|
|
WindowType_Browser = 'Brwz',
|
|
WindowType_Download = 'Down',
|
|
WindowType_NavCenter = 'NavW',
|
|
WindowType_Editor = 'Edit',
|
|
WindowType_Compose = 'Comp',
|
|
WindowType_Progress = 'Prog',
|
|
WindowType_NameCompletion = 'NmPk',
|
|
WindowType_OfflinePicker = 'OfPk'
|
|
} NetscapeWindowT;
|
|
|
|
// Browser File Menu cmd id's
|
|
const CommandT cmd_OpenURL = 1032;
|
|
|
|
// Browser Toolbar Button cmd id's
|
|
const CommandT cmd_GoForward = 1005;
|
|
const CommandT cmd_GoBack = 1006;
|
|
const CommandT cmd_Home = 1009;
|
|
const CommandT cmd_Stop = 1016;
|
|
const CommandT cmd_NetSearch = 1080; // load a search page
|
|
const CommandT cmd_ToolbarButton = 'Tlbr'; // a container or url button, always enabled.
|
|
const CommandT cmd_Reload = 1004; // Reload the URL in the top window
|
|
|
|
// other cmd id's
|
|
const CommandT cmd_PageServices = 1195;
|
|
|
|
//
|
|
// NavCenter XP menu commands.
|
|
//
|
|
// These constants can be computed by doing
|
|
// cmd_NavCenterBase + (corresponding HT command)
|
|
// but since we need to know the exact command number to put in constructor, I think
|
|
// it's clearer to just hardcode the constants in this file.
|
|
//
|
|
// To get the HT command back from the corresponding command id, just subtract off
|
|
// cmd_NavCenterBase.
|
|
//
|
|
const CommandT cmd_NavCenterBase = 5000;
|
|
|
|
const CommandT cmd_NCOpen = 5001;
|
|
const CommandT cmd_NCOpenFile = 5002;
|
|
const CommandT cmd_NCPrint = 5003;
|
|
const CommandT cmd_NCOpenNewWindow = 5004;
|
|
const CommandT cmd_NCOpenComposer = 5005;
|
|
const CommandT cmd_NCOpenAsWorkspace = 5006;
|
|
const CommandT cmd_NCNewItem = 5007;
|
|
const CommandT cmd_NCNewFolder = 5008;
|
|
const CommandT cmd_NCNewSeparator = 5009;
|
|
const CommandT cmd_NCMakeAlias = 5010;
|
|
const CommandT cmd_NCAddToBookmarks = 5011;
|
|
const CommandT cmd_NCSaveAs = 5012;
|
|
const CommandT cmd_NCCreateShortcut = 5013;
|
|
const CommandT cmd_NCSetToolbarFolder = 5014;
|
|
const CommandT cmd_NCSetBMMenu = 5015;
|
|
const CommandT cmd_NCSetNewBMFolder = 5016;
|
|
const CommandT cmd_NCCut = 5017;
|
|
const CommandT cmd_NCCopy = 5018;
|
|
const CommandT cmd_NCPaste = 5019;
|
|
const CommandT cmd_NCDeleteFile = 5020;
|
|
const CommandT cmd_NCDeleteFolder = 5021;
|
|
const CommandT cmd_NCRevealInFinder = 5022;
|
|
const CommandT cmd_NCGetInfo = 5023;
|
|
const CommandT cmd_NCCopyLinkLocation = 5024;
|
|
const CommandT cmd_NCNewPane = 5025;
|
|
const CommandT cmd_NCRenamePane = 5026;
|
|
const CommandT cmd_NCDeletePane = 5027;
|
|
const CommandT cmd_NCFind = 5050; // find in workspace
|
|
|
|
const CommandT cmd_NavCenterCap = 5099;
|
|
|
|
const CommandT cmd_AddToBookmarks = 'AddB';
|
|
const CommandT cmd_SortBookmarks = 'SrtB';
|
|
|
|
const CommandT cmd_AboutPlugins = 1191;
|
|
const CommandT cmd_LaunchImportModule = 1063;
|
|
const CommandT cmd_MailDocument = 1190; // Send Page/Frame
|
|
const CommandT cmd_ReloadFrame = 1192;
|
|
const CommandT cmd_FTPUpload = 1193;
|
|
const CommandT cmd_SecurityInfo = 1194;
|
|
const CommandT cmd_GetInfo = 'Info';
|
|
const CommandT cmd_OpenSelectionNewWindow = 1161; // probably not needed
|
|
const CommandT cmd_OpenSelection = 1166 ; // probably not needed
|
|
|
|
const MessageT msg_SigFile = 430;
|
|
const MessageT msg_Browse = 1200;
|
|
const MessageT msg_FolderChanged = 1201;
|
|
const MessageT msg_ClearDiskCache = 1202;
|
|
|
|
const MessageT msg_Help = 'help'; // help button clicked
|
|
const MessageT msg_SubmitText = 'subT'; // Return hit in edit field, 'this' is ioParam
|
|
const MessageT msg_SubmitButton = 'subB'; // Submit button pressed
|
|
const MessageT msg_ResetButton = 'Rset'; // Form reset button pressed
|
|
|
|
const MessageT msg_ChangeFontSize = -15381;
|
|
|
|
|
|
// Clicks
|
|
enum EClickKind {
|
|
eWaiting, // Uninitialized
|
|
eNone, // No anchors
|
|
eTextAnchor, // Plain text anchor
|
|
eImageAnchor, // Image that is a simple anchor
|
|
eImageIsmap, // Image that is ISMAP
|
|
eImageForm, // Image that is an ISMAP form
|
|
eImageIcon, // Image that is an icon (delayed)
|
|
eImageAltText, // Alt text part of the image
|
|
eEdge // Edge
|
|
};
|
|
|
|
enum EClickState {
|
|
eMouseUndefined = 0,
|
|
eMouseDragging = 1,
|
|
eMouseTimeout,
|
|
eMouseUpEarly,
|
|
eMouseHandledByAttachment,
|
|
eMouseWasCommandClick
|
|
};
|
|
|
|
const Int16 kMouseHysteresis = 6;
|