mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 04:05:49 +00:00
54 lines
1.8 KiB
C
54 lines
1.8 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 resources_h___
|
|
#define resources_h___
|
|
|
|
#define VIEWER_OPEN 40000
|
|
#define VIEWER_EXIT 40002
|
|
#define PREVIEW_CLOSE 40003
|
|
|
|
#define VIEWER_FILE_OPEN 40010
|
|
|
|
// Note: must be in ascending sequential order
|
|
#define VIEWER_DEMO0 40011
|
|
#define VIEWER_DEMO1 40012
|
|
#define VIEWER_DEMO2 40013
|
|
#define VIEWER_DEMO3 40014
|
|
#define VIEWER_DEMO4 40015
|
|
#define VIEWER_DEMO5 40016
|
|
#define VIEWER_DEMO6 40017
|
|
#define VIEWER_DEMO7 40018
|
|
#define VIEWER_DEMO8 40019
|
|
|
|
#define VIEWER_VISUAL_DEBUGGING 40020
|
|
#define VIEWER_REFLOW_TEST 40021
|
|
#define VIEWER_DUMP_CONTENT 40022
|
|
#define VIEWER_DUMP_FRAMES 40023
|
|
#define VIEWER_DUMP_VIEWS 40024
|
|
#define VIEWER_DUMP_STYLE 40025
|
|
|
|
// Note: must be in ascending sequential order
|
|
#define VIEWER_ONE_COLUMN 40031
|
|
#define VIEWER_TWO_COLUMN 40032
|
|
#define VIEWER_THREE_COLUMN 40033
|
|
|
|
#define JS_CONSOLE 40100
|
|
|
|
#endif /* resources_h___ */
|