mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 20:17:37 +00:00
68 lines
2.1 KiB
C
68 lines
2.1 KiB
C
|
/* -*- Mode: C++; tab-width: 2; 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.
|
||
|
*/
|
||
|
|
||
|
#ifndef jsconsres_h___
|
||
|
#define jsconsres_h___
|
||
|
|
||
|
|
||
|
// Main menu id
|
||
|
#define JSCONSOLE_MENU 20100
|
||
|
|
||
|
#define FILEMENUPOS 0
|
||
|
#define ID_FILEMENU 20200
|
||
|
// File menu items ids
|
||
|
#define ID_FILENEW 20201
|
||
|
#define ID_FILEOPEN 20202
|
||
|
#define ID_FILESAVE 20203
|
||
|
#define ID_FILESAVEAS 20204
|
||
|
// separator
|
||
|
#define ID_FILEEXIT 20206
|
||
|
|
||
|
#define EDITMENUPOS 1
|
||
|
#define ID_EDITMENU 20300
|
||
|
// Edit menu items ids
|
||
|
#define ID_EDITUNDO 20301
|
||
|
// separator
|
||
|
#define ID_EDITCUT 20303
|
||
|
#define ID_EDITCOPY 20304
|
||
|
#define ID_EDITPASTE 20305
|
||
|
#define ID_EDITDELETE 20306
|
||
|
// separator
|
||
|
#define ID_EDITSELECTALL 20308
|
||
|
|
||
|
#define COMMANDSMENUPOS 2
|
||
|
#define ID_COMMANDSMENU 20400
|
||
|
// Commands menu items ids
|
||
|
#define ID_COMMANDSEVALALL 20401
|
||
|
#define ID_COMMANDSEVALSEL 20402
|
||
|
// separator
|
||
|
#define ID_COMMANDSINSPECTOR 20404
|
||
|
|
||
|
#define HELPMENUPOS 3
|
||
|
#define ID_HELPMENU 20500
|
||
|
// Help menu items
|
||
|
#define ID_NOHELP 20501
|
||
|
|
||
|
//
|
||
|
// Accelerators table ids
|
||
|
//
|
||
|
#define ACCELERATOR_TABLE 1000
|
||
|
|
||
|
#endif // jsconsres_h___
|
||
|
|