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

  1. /******************************************************************************
  2. * .FILE:         amcelcv.h                                                    *
  3. *                                                                             *
  4. * .DESCRIPTION:  Canvas Classes Example 3 - Multi Cell Canvas : Symbolic Def. *
  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 AMCELCV_H
  23. #define AMCELVC_H
  24.  
  25. #define WND_MAIN          1000
  26.  
  27. #define WND_STATUS        1001
  28. #define WND_MCCANVAS      1002
  29. #define WND_TITLE1        1003
  30. #define WND_TITLE2        1004
  31. #define WND_RADIO1        1005
  32. #define WND_RADIO2        1006
  33. #define WND_CHECK1        1007
  34. #define WND_CHECK2        1008
  35. #define WND_PUSHBUT       1009
  36.  
  37. #define STR_STATUS        2000
  38. #define STR_TITLE1        2001
  39. #define STR_TITLE2        2002
  40. #define STR_CHECK1        2003
  41. #define STR_CHECK2        2004
  42. #define STR_RADIO1        2005
  43. #define STR_RADIO2        2006
  44. #define STR_PUSHBUT       2007
  45. #define STR_PUSHED        2008
  46. #define STR_MSGBOX        2009
  47. #define STR_CHK1_SEL      2010
  48. #define STR_CHK1_NOSEL    2011
  49. #define STR_CHK2_SEL      2012
  50. #define STR_CHK2_NOSEL    2013
  51. #define STR_RAD1_SEL      2014
  52. #define STR_RAD2_SEL      2015
  53.  
  54. #endif
  55.