rootmenu.h
上传用户:hzhsqp
上传日期:2007-01-06
资源大小:1600k
文件大小:4k
源码类别:

IP电话/视频会议

开发平台:

Visual C++

  1. /*
  2.  * rootmenu.h
  3.  *
  4.  * Root menu of other menus.
  5.  *
  6.  * Portable Windows Library
  7.  *
  8.  * Copyright (c) 1993-1998 Equivalence Pty. Ltd.
  9.  *
  10.  * The contents of this file are subject to the Mozilla Public License
  11.  * Version 1.0 (the "License"); you may not use this file except in
  12.  * compliance with the License. You may obtain a copy of the License at
  13.  * http://www.mozilla.org/MPL/
  14.  *
  15.  * Software distributed under the License is distributed on an "AS IS"
  16.  * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
  17.  * the License for the specific language governing rights and limitations
  18.  * under the License.
  19.  *
  20.  * The Original Code is Portable Windows Library.
  21.  *
  22.  * The Initial Developer of the Original Code is Equivalence Pty. Ltd.
  23.  *
  24.  * Portions are Copyright (C) 1993 Free Software Foundation, Inc.
  25.  * All Rights Reserved.
  26.  *
  27.  * Contributor(s): ______________________________________.
  28.  *
  29.  * $Log: rootmenu.h,v $
  30.  * Revision 1.21  1999/03/10 03:49:53  robertj
  31.  * More documentation adjustments.
  32.  *
  33.  * Revision 1.20  1999/03/09 08:01:49  robertj
  34.  * Changed comments for doc++ support (more to come).
  35.  *
  36.  * Revision 1.19  1999/02/16 08:08:46  robertj
  37.  * MSVC 6.0 compatibility changes.
  38.  *
  39.  * Revision 1.18  1998/09/23 06:28:53  robertj
  40.  * Added open source copyright license.
  41.  *
  42.  * Revision 1.17  1995/03/14 12:42:28  robertj
  43.  * Updated documentation to use HTML codes.
  44.  *
  45.  * Revision 1.16  1995/02/19  04:19:17  robertj
  46.  * Added dynamically linked command processing.
  47.  *
  48.  * Revision 1.15  1995/01/03  09:36:18  robertj
  49.  * Documentation.
  50.  *
  51.  * Revision 1.14  1994/12/12  10:16:23  robertj
  52.  * Restructuring and documentation of container classes.
  53.  * Renaming of some macros for declaring container classes.
  54.  * Added some extra functionality to PString.
  55.  * Added start to 2 byte characters in PString.
  56.  * Fixed incorrect overrides in PCaselessString.
  57.  *
  58.  * Revision 1.13  1994/11/19  00:06:04  robertj
  59.  * Removed variable argument list binding for menus and controls.
  60.  *
  61.  * Revision 1.12  1994/11/01  12:01:28  robertj
  62.  * Changed to notifier.
  63.  *
  64.  * Revision 1.11  1994/08/23  11:32:52  robertj
  65.  * Oops
  66.  *
  67.  * Revision 1.10  1994/08/22  00:46:48  robertj
  68.  * Added pragma fro GNU C++ compiler.
  69.  *
  70.  * Revision 1.9  1994/06/25  11:55:15  robertj
  71.  * Unix version synchronisation.
  72.  *
  73.  * Revision 1.8  1994/01/03  04:42:23  robertj
  74.  * Mass changes to common container classes and interactors etc etc etc.
  75.  *
  76.  * Revision 1.7  1993/12/16  06:20:57  robertj
  77.  * Changes to callback function definition due to GCC.
  78.  *
  79.  * Revision 1.6  1993/12/01  16:09:05  robertj
  80.  * Windows NT port.
  81.  *
  82.  * Revision 1.5  1993/09/27  16:35:25  robertj
  83.  * Capitalised macro.
  84.  *
  85.  * Revision 1.4  1993/08/21  01:50:33  robertj
  86.  * Made Clone() function optional, default will assert if called.
  87.  *
  88.  * Revision 1.3  1993/07/14  12:49:16  robertj
  89.  * Fixed RCS keywords.
  90.  *
  91.  */
  92. #define _PROOTMENU
  93. #ifdef __GNUC__
  94. #pragma interface
  95. #endif
  96. /**A class representing a list of sub-menus consistuting a menu bar. The exact
  97.    appearance and location of the root menu is platform dependent.
  98.    
  99.    This is typically a bar of sub-menus. At this time only sub-menus can be
  100.    added to a root menu.
  101.  */
  102. class PRootMenu : public PSubMenu
  103. {
  104.   PCLASSINFO(PRootMenu, PSubMenu);
  105.   public:
  106.     /** Create a new top level, and empty, menu bar. */
  107.     PRootMenu();
  108.     /** Load a menu resource and create all menu items and sub-menus. */
  109.     PRootMenu(
  110.       PRESOURCE_ID resID    /// Unique identifier for the menu bar resource.
  111.     );
  112.     /** Destroy the menu and all its sub-menus. */
  113.     virtual ~PRootMenu();
  114.   /**@name New functions for class */
  115.    /**Get a menu item given a unique ID. This is usually used when a menu is
  116.        loaded from a resource and you wish to get the menu item from the key
  117.        used in the resource template.
  118.        
  119.        @return
  120.        pointer to menu item, or NULL if no menu item has the key.
  121.      */
  122.     PMenuItem * GetItemFromKey(
  123.       PRESOURCE_ID key
  124.      /**Unique identifier for the menu item within the menu bar and all its
  125.          sub-menus.
  126.        */
  127.     );
  128.   protected:
  129.     // Member variables
  130.     PDICTIONARY(ItemDict, POrdinalKey, PMenuItem);
  131.     /** Hash table lookup for unique menu IDs */
  132.     ItemDict keyedItems;
  133.   friend class PTopLevelWindow;
  134.   friend class PMenuItem;
  135. #ifdef DOC_PLUS_PLUS
  136. };
  137. #endif
  138. // Class declaration continued in platform specific header file ///////////////