home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ocl_ani2.zip / ocl_ani2.h < prev    next >
Text File  |  1997-07-06  |  1KB  |  36 lines

  1. /* Stéphane Charette, stephane@venus.ubishops.ca
  2.  * IBM Open Class Library Animation Sample #2
  3.  * (using Visual Age C++ v3.0 with OS/2 v4.0)
  4.  * 1997July06
  5.  */
  6.  
  7. #ifndef OCL_ANI2_H
  8. #define OCL_ANI2_H
  9.  
  10. #define DLG_RCID           0x1000
  11. #define CANVAS_RCID        0x1001
  12. #define BMP_PERSON1_RCID   0x1002   // orange
  13. #define BMP_PERSON2_RCID   0x1003   // blue
  14. #define BMP_PERSON3_RCID   0x1004   // green
  15. #define BMP_PERSON4_RCID   0x1005   // red
  16. #define BMP_PERSON5_RCID   0x1006   // gray
  17. #define PTR_MOVE_RCID      0x1007
  18.  
  19. #define MNU_RCID           0x2000
  20. #define MNU_DELETE_PERSON  0x2001
  21. #define MNU_CREATE_PERSON  0x2002
  22. #define MNU_CLONE_PERSON   0x2003
  23.  
  24. #define MNU_MOVE_PERSON    0x2004
  25. #define MNU_MOVE_SET       0x2005
  26. #define MNU_MOVE_STOP      0x2006
  27.  
  28. // create menus have the same ID as the bitmaps
  29. #define MNU_CREATE_ORANGE  BMP_PERSON1_RCID
  30. #define MNU_CREATE_BLUE    BMP_PERSON2_RCID
  31. #define MNU_CREATE_GREEN   BMP_PERSON3_RCID
  32. #define MNU_CREATE_RED     BMP_PERSON4_RCID
  33. #define MNU_CREATE_GRAY    BMP_PERSON5_RCID
  34.  
  35. #endif
  36.