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

  1. /******************************************************************************
  2. * .FILE:         tbar1.h                                                      *
  3. *                                                                             *
  4. * .DESCRIPTION:  Tool Bar Example 1:  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 _TBAR1_HPP_
  23. #define _TBAR1_HPP_
  24.  
  25. #define ID_MAIN_WINDOW       100
  26. #define ID_TOOLBAR           101
  27. #define ID_EDITOR            102
  28. #define ID_FLYTEXT           103
  29. #define ID_INFOTEXT          104
  30. #define ID_FONTCOMBO         105
  31.  
  32. #define OFFSET_INFOTEXT      1000
  33.  
  34. #define ID_EDIT               110
  35. #define ID_TOOLBAR_OPTIONS    120
  36. #define ID_SHOWBITMAPS        121
  37. #define ID_SHOWTEXT           122
  38. #define ID_SHOWTEXTANDBITMAPS 123
  39. #define ID_TOOLBAR_TOP        124
  40. #define ID_TOOLBAR_BOTTOM     125
  41. #define ID_TOOLBAR_LEFT       126
  42. #define ID_TOOLBAR_RIGHT      127
  43. #define ID_TOOLBAR_FLOATING   128
  44.  
  45. #define STR_TOOLBAR           130
  46.  
  47. #endif
  48.