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

  1. #ifndef _ISYSMENU_
  2. #define _ISYSMENU_
  3. /*******************************************************************************
  4. * FILE NAME: isysmenu.hpp                                                      *
  5. *                                                                              *
  6. * DESCRIPTION:                                                                 *
  7. *   Declaration of the class:                                                  *
  8. *     ISystemMenu                                                              *
  9. *                                                                              *
  10. * COPYRIGHT:                                                                   *
  11. *   IBM Open Class Library                                                     *
  12. *   (C) Copyright International Business Machines Corporation 1992, 1996       *
  13. *   Licensed Material - Program-Property of IBM - All Rights Reserved.         *
  14. *   US Government Users Restricted Rights - Use, duplication, or disclosure    *
  15. *   restricted by GSA ADP Schedule Contract with IBM Corp.                     *
  16. *                                                                              *
  17. *******************************************************************************/
  18. #include <imenu.hpp>
  19.  
  20. class IFrameWindow;
  21. class ISystemMenuData;
  22.  
  23. #pragma pack(4)
  24.  
  25. class ISystemMenu : public IMenu {
  26. typedef IMenu
  27.   Inherited;
  28. public:
  29. /*------------------------------- Constructors -------------------------------*/
  30.   ISystemMenu ( IFrameWindow* owner );
  31. virtual
  32.  ~ISystemMenu ( );
  33.  
  34. /*----------------------------- Item Identifiers -----------------------------*/
  35. static const unsigned long
  36.   IC_IMPORTU idPulldown,
  37.   IC_IMPORTU idRestore,
  38.   IC_IMPORTU idMove,
  39.   IC_IMPORTU idSize,
  40.   IC_IMPORTU idMinimize,
  41.   IC_IMPORTU idMaximize,
  42.   IC_IMPORTU idHide,
  43.   IC_IMPORTU idWindowList;
  44.  
  45. static const unsigned long
  46.   IC_IMPORTU idClose;
  47.  
  48. private:
  49. /*------------------------------ Hidden Members ------------------------------*/
  50.   ISystemMenu ( const ISystemMenu& menu );
  51. ISystemMenu
  52.  &operator=   ( const ISystemMenu& menu );
  53.  
  54. /*--------------------------------- Private ----------------------------------*/
  55. ISystemMenuData
  56.  *fSystemMenuData;
  57.  
  58. }; // ISystemMenu
  59.  
  60. #pragma pack()
  61.  
  62. #endif  /* _ISYSMENU_ */
  63.