home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / powergui / frame1 / infoarea / infoarea.rc < prev    next >
Text File  |  1996-10-29  |  1KB  |  43 lines

  1. /*********************************************************
  2. / Frame Window Basics - Information Area for the System Menu
  3. /
  4. / Copyright (C) 1994, Law, Leong, Love, Olson, Tsuji.
  5. / Copyright (c) 1997 John Wiley & Sons, Inc. 
  6. / All Rights Reserved.
  7. /*********************************************************/
  8. #include <icconst.h>
  9.  
  10. #ifdef IC_PM
  11.   #define INCL_WIN
  12.   #define INCL_WINFRAMEMGR  /* For SC_* */
  13.   #include <os2.h>
  14.  
  15. #ifndef IC_ID_CLOSE
  16.   /* Define these constants which do not exist on */
  17.   /* VisualAge C++ for OS/2, Version 3.0.         */
  18.   #define IC_ID_CLOSE       SC_CLOSE
  19.   #define IC_ID_MOVE        SC_MOVE
  20.   #define IC_ID_SIZE        SC_SIZE
  21.   #define IC_ID_MINIMIZE    SC_MINIMIZE
  22.   #define IC_ID_MAXIMIZE    SC_MAXIMIZE
  23.   #define IC_ID_SYSHIDE     SC_HIDE
  24.   #define IC_ID_RESTORE     SC_RESTORE
  25.   #define IC_ID_WINDOWLIST  SC_TASKMANAGER
  26. #endif
  27.  
  28. #endif
  29.  
  30. STRINGTABLE
  31.   BEGIN
  32.    IC_ID_RESTORE   "Restore the frame window size and position."
  33.    IC_ID_MOVE        "Move the frame window."
  34.    IC_ID_SIZE        "Size the frame window."
  35.    IC_ID_MINIMIZE    "Minimize the frame window."
  36.    IC_ID_MAXIMIZE    "Maximize the frame window."
  37. #ifdef IC_PM
  38.    IC_ID_SYSHIDE     "Hide the frame window."
  39. #endif
  40.    IC_ID_CLOSE       "Close the frame window."
  41.    IC_ID_WINDOWLIST  "Show the system window list."
  42.   END
  43.