home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / VSCPPv8.zip / VACPP / IBMCPP / samples / IOC / 2D-BMAP / 2D-BMAP.H < prev    next >
Text File  |  1995-04-07  |  2KB  |  44 lines

  1. #ifndef BITMAP_H
  2. #define BITMAP_H
  3. /******************************************************************************/
  4. /* 2D-GRAPHICS BITMAP SAMPLE PROGRAM - Symbolic Definitions (2d-bmap.h)       */
  5. /*                                                                            */
  6. /* COPYRIGHT: Copyright (C) International Business Machines Corp., 1992,1995. */
  7. /*                                                                            */
  8. /* DISCLAIMER OF WARRANTIES:                                                  */
  9. /*   The following [enclosed] code is sample code created by IBM              */
  10. /*   Corporation.  This sample code is not part of any standard IBM product   */
  11. /*   and is provided to you solely for the purpose of assisting you in the    */
  12. /*   development of your applications.  The code is provided "AS IS",         */
  13. /*   without warranty of any kind.  IBM shall not be liable for any damages   */
  14. /*   arising out of your use of the sample code, even if they have been       */
  15. /*   advised of the possibility of such damages.                              */
  16. /******************************************************************************/
  17. //**************************************************************************
  18. // window ids - used by IWindow constructors                               *
  19. //**************************************************************************
  20. #define ID_NULL             -1
  21. #define WND_MAIN            0x1000         //Main Window ID
  22. #define WND_DRAW            0x1001         //Drawing Area ID
  23. #define WND_VPORT           0x1002
  24.  
  25. #define IDM_FILE            0x1005
  26. #define IDM_FILEOPEN        0x1006
  27. #define IDM_FILESAVE        0x1007
  28. #define IDM_FILESAVEAS      0x1008
  29. #define IDM_QUIT            0x1009
  30. #define IDM_BITMAP          0x100A
  31. #define IDM_REFLECTHORZ     0x100B
  32. #define IDM_REFLECTVERT     0x100C
  33. #define IDM_ROTATE90        0x100D
  34. #define IDM_ROTATE180       0x100E
  35. #define IDM_ROTATE270       0x100F
  36. #define IDM_TRANSPOSE       0x1010
  37. #define IDM_CLIP            0x1011
  38. #define IDM_CLIPCIRCLES     0x1012
  39. #define IDM_CLIPSQUARES     0x1013
  40. #define IDM_CLIPRAD         0x1014
  41. #define IDM_CLIPNONE        0x1015
  42.  
  43. #endif
  44.