home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ICLUI.ZIP / MCELCV / AMCELCV.H < prev    next >
Text File  |  1993-03-09  |  2KB  |  50 lines

  1. #ifndef AMCELCV_H
  2. #define AMCELVC_H
  3. /******************************************************************************/
  4. /* Canvas Classes Example 3 - Multi Cell Canvas                               */
  5. /*                                                                            */
  6. /* COPYRIGHT: Copyright (C) International Business Machines Corp., 1992,1993. */
  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. /* NOTE: WE RECOMMEND USING A FIXED SPACE FONT TO LOOK AT THE SOURCE          */
  18. /******************************************************************************/
  19.  
  20. #define WND_MAIN          0x1000         // main window id
  21.  
  22. #define WND_STATUS        0x1001         // window ids of controls
  23. #define WND_MCCANVAS      0x1002
  24. #define WND_TITLE1        0x1003
  25. #define WND_TITLE2        0x1004
  26. #define WND_RADIO1        0x1005
  27. #define WND_RADIO2        0x1006
  28. #define WND_CHECK1        0x1007
  29. #define WND_CHECK2        0x1008
  30. #define WND_PUSHBUT       0x1009
  31.  
  32. #define STR_STATUS        0x2000         // string table ids
  33. #define STR_TITLE1        0x2001
  34. #define STR_TITLE2        0x2002
  35. #define STR_CHECK1        0x2003
  36. #define STR_CHECK2        0x2004
  37. #define STR_RADIO1        0x2005
  38. #define STR_RADIO2        0x2006
  39. #define STR_PUSHBUT       0x2007
  40. #define STR_PUSHED        0x2008
  41. #define STR_MSGBOX        0x2009
  42. #define STR_CHK1_SEL      0x200A
  43. #define STR_CHK1_NOSEL    0x200B
  44. #define STR_CHK2_SEL      0x200C
  45. #define STR_CHK2_NOSEL    0x200D
  46. #define STR_RAD1_SEL      0x200E
  47. #define STR_RAD2_SEL      0x200F
  48.  
  49. #endif
  50.