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

  1. /******************************************************************************
  2. * .FILE:         ahellow3.h                                                   *
  3. *                                                                             *
  4. * .DESCRIPTION:  Hello World Sample Program Version 3:  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 AHELLOWINDOW_H
  23. #define AHELLOWINDOW_H
  24.  
  25. //**************************************************************************
  26. // window IDs - used to construct windows, e.g. IStaticText, AHelloWindow  *
  27. //**************************************************************************
  28.  
  29. #define WND_MAIN         1000
  30.  
  31. #define WND_HELLO        1010
  32. #define WND_INFO         1020
  33. #define WND_STATUS       1030
  34.  
  35.  
  36. //**************************************************************************
  37. // String IDs - used to relate resources to IStaticText and ITitle         *
  38. //**************************************************************************
  39. #define STR_HELLO        1200
  40. #define STR_INFO         1220
  41. #define STR_CENTER       1230
  42. #define STR_LEFT         1231
  43. #define STR_RIGHT        1232
  44.  
  45. //**************************************************************************
  46. // Menu IDs - used to relate command ID to menu items, buttons, and keys   *
  47. //**************************************************************************
  48. #define MI_ALIGNMENT     1500
  49. #define MI_CENTER        1501
  50. #define MI_LEFT          1502
  51. #define MI_RIGHT         1503
  52.  
  53. #endif
  54.