home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / VSCPPv8.zip / VACPP / IBMCPP / samples / IOC / SETCV / ASETCV.H < prev    next >
Text File  |  1994-10-14  |  2KB  |  36 lines

  1. #ifndef ASETCV_H
  2. #define ASETCV_H
  3. /******************************************************************************/
  4. /* Canvas Classes Example 2 - Set 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 NUMBER_OF_BUTTONS    14
  21.  
  22. #define WND_MAIN             0x1000      // window id of main window
  23.  
  24. #define WND_STATUS           0x1001      // window id of child controls
  25. #define WND_SPLITCANVAS      0x1002
  26. #define WND_VSETCANVAS       0x1003
  27. #define WND_HSETCANVAS       0x1004
  28. #define WND_BUTTON           0x1010
  29.  
  30. #define STR_STATUS           0x2000      // string table ids
  31. #define STR_VSETCANVAS       0x2001
  32. #define STR_HSETCANVAS       0x2002
  33. #define STR_TEXT             0x2003
  34.  
  35. #endif
  36.