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

  1. /******************************************************************************
  2. * .FILE:         ahellow5.h                                                   *
  3. *                                                                             *
  4. * .DESCRIPTION:  Hello World Sample Program Version 5: 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 by IWindow constructors (eg IStaticText, AHelloWindow)*
  27. //**************************************************************************
  28. #define WND_MAIN         0x1000         //Main window window ID
  29.  
  30. #define WND_HELLO        0x1010         //Hello World window ID
  31. #define WND_INFO         0x1012         //Information area window ID
  32. #define WND_STATUS       0x1011         //Status line window ID
  33. #define WND_TEXTDIALOG   0x1013         //Text dialog window ID
  34. #define WND_EARTH        0x1014         //Earth window window ID
  35. #define WND_CANVAS       0x8008         //Hello World client window ID
  36. #define WND_MCCANVAS     0x8008         //Text dialog client window ID
  37. #define WND_STCANVAS     0x1015         //Text dialog set canvas window ID
  38. #define WND_BUTTONS      0x1021         //Button set canvas window ID
  39. #define WND_HCANVAS      0x1040         //Hello canvas window ID
  40. #define WND_LISTBOX      0x1050         //List box window ID
  41.  
  42. //**************************************************************************
  43. // String IDs - used to relate resources to IStaticText and ITitle         *
  44. //**************************************************************************
  45. #define STR_HELLO        0x1200         //Hello World string ID
  46. #define STR_INFO         0x1220         //Inactive text string ID
  47. #define STR_INFODLG      0x1221         //Dialog inactive text string ID
  48. #define STR_CENTER       0x1230         //Center alignment status string ID
  49. #define STR_LEFT         0x1231         //Left alignment status string ID
  50. #define STR_RIGHT        0x1232         //Right alignment status string ID
  51. #define STR_CENTERB      0x1240         //Center button string ID
  52. #define STR_LEFTB        0x1241         //Left button string ID
  53. #define STR_RIGHTB       0x1242         //Right button string ID
  54. #define STR_HELPB        0x1243         //Help button string ID
  55. #define STR_HTITLE       0x1250         //Help window title string ID
  56. #define STR_HELP_NOT_FOUND 0x1251       //Help not found string ID
  57.  
  58. //**************************************************************************
  59. // Menu IDs - used to relate command ID to menu items, buttons, and keys   *
  60. //**************************************************************************
  61. #define MI_ALIGNMENT     0x1500         //Alignment menu item command ID
  62. #define MI_CENTER        0x1501         //Center menu item command ID
  63. #define MI_LEFT          0x1502         //Left menu item command ID
  64. #define MI_RIGHT         0x1503         //Right menu item command ID
  65. #define MI_EDIT          0x1504         //Edit menu item command ID
  66. #define MI_TEXT          0x1505         //Text menu item command ID
  67. #define MI_HELP          0x1510         //Help menu item command ID
  68.  
  69. //**************************************************************************
  70. // Hello IDs - used for different language versions of Hello World text    *
  71. //**************************************************************************
  72. #define HI_WORLD         0x1700         //First Hello World text ID
  73. #define HI_COUNT         8              //Number of Hello World text strings
  74.  
  75. //**************************************************************************
  76. // Dialog IDs - window IDs used in ATextDialog class                       *
  77. //**************************************************************************
  78. #ifndef DID_OK                          //If not already defined by OS/2,
  79. #define DID_OK           0x0001         //OK button command ID
  80. #endif                                  //
  81. #ifndef DID_CANCEL                      //If not already defined by OS/2
  82. #define DID_CANCEL       0x0002         //Cancel button command ID
  83. #endif                                  //
  84. #define DID_ENTRY        0x1603         //Dialog entry field window ID
  85. #define DID_STATIC       0x1604         //Dialog static text window ID
  86.  
  87. //**************************************************************************
  88. // Help IDs - used to relate resources to IHelp class                      *
  89. //**************************************************************************
  90. #define HELP_TABLE       0x1800         //Help table ID
  91. #define SUBTABLE_MAIN    0x1801         //Help subtable for main window
  92. #define SUBTABLE_DIALOG  0x1802         //Help subtable for dialog window
  93. #endif
  94.