home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ICLUI.ZIP / HELLO5 / AHELLOW5.H < prev    next >
Text File  |  1993-03-06  |  6KB  |  80 lines

  1. #ifndef AHELLOWINDOW_H
  2. #define AHELLOWINDOW_H
  3. /******************************************************************************/
  4. /* HELLO WORLD SAMPLE PROGRAM - Version 5: Symbolic Definitions (AHELLOW5.H)  */
  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. // window ids - used by IWindow constructors (eg IStaticText, AHelloWindow)*
  20. //**************************************************************************
  21. #define WND_MAIN         0x1000         //Main Window ID
  22.  
  23. #define WND_HELLO        0x1010         //Hello World Window ID
  24. #define WND_INFO         0x1012         //Information Area                    v2
  25. #define WND_STATUS       0x1011         //Status Line Window ID               v3
  26. #define WND_TEXTDIALOG   0x1013         //Text Dialog Window ID               v4
  27. #define WND_EARTH        0x1014         //Earth Window ID                     v5
  28. #define WND_CANVAS       0x1020         //Canvas Window ID                    v5
  29. #define WND_BUTTONS      0x1021         //Button Canvas Window ID             v4
  30. #define WND_HCANVAS      0x1040         //Hello Canvas Window ID              v5
  31. #define WND_LISTBOX      0x1050         //List Box Window ID                  v5
  32.  
  33.  
  34. //**************************************************************************  v2
  35. // string ids - used to relate resources to IStaticText and ITitle         *   .
  36. //**************************************************************************  v2
  37. #define STR_HELLO        0x1200         //Hello World String ID               v2
  38. #define STR_INFO         0x1220         //Info String ID                      v2
  39. #define STR_INFODLG      0x1221         //Info String ID                      v4
  40. #define STR_CENTER       0x1230         //Center Alignment Status String ID   v3
  41. #define STR_LEFT         0x1231         //Left Alignment Status String ID      .
  42. #define STR_RIGHT        0x1232         //Right Alignment Status String ID    v3
  43. #define STR_CENTERB      0x1240         //Center Button String ID             v4
  44. #define STR_LEFTB        0x1241         //Left Button String ID                .
  45. #define STR_RIGHTB       0x1242         //Right Button String ID              v4
  46. #define STR_HELPB        0x1243         //Help Button String ID               v5
  47. #define STR_HTITLE       0x1250         //Help Window Title                   v5
  48.  
  49. //**************************************************************************  v3
  50. // menu ids - used on relate command ID to Menu Items and Function Keys    *   .
  51. //**************************************************************************   .
  52. #define MI_ALIGNMENT     0x1500         //Alignment Menu ID                    .
  53. #define MI_CENTER        0x1501         //Center Menu ID                       .
  54. #define MI_LEFT          0x1502         //Left Menu ID                         .
  55. #define MI_RIGHT         0x1503         //Right Menu ID                       v3
  56. #define MI_EDIT          0x1504         //Edit Menu ID                        v4
  57. #define MI_TEXT          0x1505         //Text Menu ID                        v4
  58. #define MI_HELP          0x1510         //Help Menu ID                        v4
  59. #define MI_GENERAL_HELP  0x1511         //General Help                        v5
  60.  
  61. //**************************************************************************  v4
  62. // dialog ids - used to relate dialog fields to controls/commands          *   .
  63. //**************************************************************************   .
  64. #ifndef DID_OK                          //                                     .
  65. #define DID_OK           0x0001         //OK Button (Defined by os/2)          .
  66. #endif                                  //                                     .
  67. #ifndef DID_CANCEL                      //                                     .
  68. #define DID_CANCEL       0x0002         //Cancel Button (Defined by os/2)      .
  69. #endif                                  //                                     .
  70. #define DID_ENTRY        0x1603         //Dialog Entry Field ID                .
  71. #define DID_STATIC       0x1604         //Dialog Static Text                  v4
  72.  
  73. //**************************************************************************  v5
  74. // help ids - used to relate resources to IHelp Class                      *   .
  75. //**************************************************************************   .
  76. #define HELP_TABLE       0x1800         //Help Table ID                        .
  77. #define SUBTABLE_MAIN    0x1801         //Help Subtable for Main Window        .
  78. #define SUBTABLE_DIALOG  0x1802         //Help Subtable for Dialog Window     v5
  79. #endif
  80.