home *** CD-ROM | disk | FTP | other *** search
- /******************************************************************************
- * .FILE: 2d-bmap.rc *
- * *
- * .DESCRIPTION: 2d Bitmap Graphic Sample Program: Resource File *
- * *
- * .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 *
- * *
- ******************************************************************************/
- #ifdef IC_PM
- #include <os2.h>
- #endif
- #include "2dbmap.h"
-
- //**************************************************************************
- // icon and bitmap resources *
- // Symbolic Name (ID) <-> icon filename *
- //**************************************************************************
- ICON WND_MAIN "2dbmap.ico"
-
-
-
- MENU WND_MAIN PRELOAD
- BEGIN
- SUBMENU "~File", IDM_FILE
- BEGIN
- MENUITEM "~Open...\tCtrl+O", IDM_FILEOPEN
- MENUITEM SEPARATOR
- MENUITEM "~Quit\tF3", IDM_QUIT
- END
- SUBMENU "~Bitmap", IDM_BITMAP
- BEGIN
- MENUITEM "Reflect ~horizontally", IDM_REFLECTHORZ
- MENUITEM "Reflect ~vertically" , IDM_REFLECTVERT
- MENUITEM SEPARATOR
- MENUITEM "Rotate ~90 degrees" , IDM_ROTATE90
- MENUITEM "Rotate ~180 degrees" , IDM_ROTATE180
- MENUITEM "Rotate ~270 degrees" , IDM_ROTATE270
- MENUITEM SEPARATOR
- MENUITEM "Transpose ~x for y" , IDM_TRANSPOSE
- END
- SUBMENU "~Clipping", IDM_CLIP
- BEGIN
- MENUITEM "Circles", IDM_CLIPCIRCLES
- MENUITEM "Squares", IDM_CLIPSQUARES
- MENUITEM "Radiation", IDM_CLIPRAD
- MENUITEM "None", IDM_CLIPNONE
- END
- END
-
- //**************************************************************************
- // string resources - used by IStaticText & ITitle Classes *
- // Symbolic Name (ID) <-> Text String *
- //**************************************************************************
-
- STRINGTABLE
- BEGIN
- WND_MAIN, "2D Bitmap Sample"
- TITLE_LD_IMG, "Load an image file"
- STR_FL_NAME, "*.bmp"
- END
-