home *** CD-ROM | disk | FTP | other *** search
- /******************************************************************************
- * .FILE: 2d-bmap.h *
- * *
- * .DESCRIPTION: 2D Bitmap Graphic Sample Program: Symbolic Definitions *
- * *
- * .COPYRIGHT: *
- * Licensed Material - Program-Property of IBM *
- * (C) Copyright IBM Corp. 1992, 1996 - All Rights Reserved *
- * *
- * .DISCLAIMER: *
- * The following [enclosed] code is sample code created by IBM *
- * Corporation. This sample code is not part of any standard IBM product *
- * and is provided to you solely for the purpose of assisting you in the *
- * development of your applications. The code is provided 'AS IS', *
- * without warranty of any kind. IBM shall not be liable for any damages *
- * arising out of your use of the sample code, even if they have been *
- * advised of the possibility of such damages. *
- * *
- * .NOTE: WE RECOMMEND USING A FIXED SPACE FONT TO LOOK AT THE SOURCE *
- * *
- ******************************************************************************/
- #ifndef BITMAP_H
- #define BITMAP_H
- //**************************************************************************
- // window ids - used by IWindow constructors *
- //**************************************************************************
- #define ID_NULL -1
- #define WND_MAIN 0x1000
- #define WND_DRAW 0x1001
- #define WND_VPORT 0x1002
-
- #define IDM_FILE 0x1005
- #define IDM_FILEOPEN 0x1006
- #define IDM_FILESAVE 0x1007
- #define IDM_FILESAVEAS 0x1008
- #define IDM_QUIT 0x1009
- #define IDM_BITMAP 0x100A
- #define IDM_REFLECTHORZ 0x100B
- #define IDM_REFLECTVERT 0x100C
- #define IDM_ROTATE90 0x100D
- #define IDM_ROTATE180 0x100E
- #define IDM_ROTATE270 0x100F
- #define IDM_TRANSPOSE 0x1010
- #define IDM_CLIP 0x1011
- #define IDM_CLIPCIRCLES 0x1012
- #define IDM_CLIPSQUARES 0x1013
- #define IDM_CLIPRAD 0x1014
- #define IDM_CLIPNONE 0x1015
-
- #define TITLE_LD_IMG 0x1101
- #define STR_FL_NAME 0x1100
-
- #endif
-