home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / trialva / ibmcppw / samples / ioc / 2dbmap / 2dbmap.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-02-22  |  2.7 KB  |  54 lines

  1. /******************************************************************************
  2. * .FILE:         2d-bmap.h                                                    *
  3. *                                                                             *
  4. * .DESCRIPTION:  2D Bitmap Graphic Sample Program:  Symbolic Definitions      *
  5. *                                                                             *
  6. * .COPYRIGHT:                                                                 *
  7. *    Licensed Material - Program-Property of IBM                              *
  8. *    (C) Copyright IBM Corp. 1992, 1996 - All Rights Reserved                 *
  9. *                                                                             *
  10. * .DISCLAIMER:                                                                *
  11. *   The following [enclosed] code is sample code created by IBM               *
  12. *   Corporation.  This sample code is not part of any standard IBM product    *
  13. *   and is provided to you solely for the purpose of assisting you in the     *
  14. *   development of your applications.  The code is provided 'AS IS',          *
  15. *   without warranty of any kind.  IBM shall not be liable for any damages    *
  16. *   arising out of your use of the sample code, even if they have been        *
  17. *   advised of the possibility of such damages.                               *
  18. *                                                                             *
  19. * .NOTE: WE RECOMMEND USING A FIXED SPACE FONT TO LOOK AT THE SOURCE          *
  20. *                                                                             *
  21. ******************************************************************************/
  22. #ifndef BITMAP_H
  23. #define BITMAP_H
  24. //**************************************************************************
  25. // window ids - used by IWindow constructors                               *
  26. //**************************************************************************
  27. #define ID_NULL             -1
  28. #define WND_MAIN            0x1000
  29. #define WND_DRAW            0x1001
  30. #define WND_VPORT           0x1002
  31.  
  32. #define IDM_FILE            0x1005
  33. #define IDM_FILEOPEN        0x1006
  34. #define IDM_FILESAVE        0x1007
  35. #define IDM_FILESAVEAS      0x1008
  36. #define IDM_QUIT            0x1009
  37. #define IDM_BITMAP          0x100A
  38. #define IDM_REFLECTHORZ     0x100B
  39. #define IDM_REFLECTVERT     0x100C
  40. #define IDM_ROTATE90        0x100D
  41. #define IDM_ROTATE180       0x100E
  42. #define IDM_ROTATE270       0x100F
  43. #define IDM_TRANSPOSE       0x1010
  44. #define IDM_CLIP            0x1011
  45. #define IDM_CLIPCIRCLES     0x1012
  46. #define IDM_CLIPSQUARES     0x1013
  47. #define IDM_CLIPRAD         0x1014
  48. #define IDM_CLIPNONE        0x1015
  49.  
  50. #define TITLE_LD_IMG        0x1101
  51. #define STR_FL_NAME         0x1100
  52.  
  53. #endif
  54.