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

IP电话/视频会议

开发平台:

Visual C++

  1. /*
  2.  * menusep.h
  3.  *
  4.  * Menu Separator class.
  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: menusep.h,v $
  30.  * Revision 1.13  1999/03/10 03:49:52  robertj
  31.  * More documentation adjustments.
  32.  *
  33.  * Revision 1.12  1999/03/09 08:01:49  robertj
  34.  * Changed comments for doc++ support (more to come).
  35.  *
  36.  * Revision 1.11  1999/02/16 08:08:46  robertj
  37.  * MSVC 6.0 compatibility changes.
  38.  *
  39.  * Revision 1.10  1998/09/23 06:24:23  robertj
  40.  * Added open source copyright license.
  41.  *
  42.  * Revision 1.9  1995/03/14 12:41:48  robertj
  43.  * Updated documentation to use HTML codes.
  44.  *
  45.  * Revision 1.8  1995/01/03  09:36:17  robertj
  46.  * Documentation.
  47.  *
  48.  * Revision 1.7  1994/08/23  11:32:52  robertj
  49.  * Oops
  50.  *
  51.  * Revision 1.6  1994/08/22  00:46:48  robertj
  52.  * Added pragma fro GNU C++ compiler.
  53.  *
  54.  * Revision 1.5  1994/06/25  11:55:15  robertj
  55.  * Unix version synchronisation.
  56.  *
  57.  * Revision 1.4  1994/01/03  04:42:23  robertj
  58.  * Mass changes to common container classes and interactors etc etc etc.
  59.  *
  60.  * Revision 1.3  1993/08/21  01:50:33  robertj
  61.  * Made Clone() function optional, default will assert if called.
  62.  *
  63.  * Revision 1.2  1993/07/14  12:49:16  robertj
  64.  * Fixed RCS keywords.
  65.  *
  66.  */
  67. #define _PMENUSEPARATOR
  68. #ifdef __GNUC__
  69. #pragma interface
  70. #endif
  71. /**A class representing a menu item separator. This may be inserted into a
  72.    menu to place a platform dependent separator between menu items.
  73.  */
  74. class PMenuSeparator : public PMenuEntry
  75. {
  76.   PCLASSINFO(PMenuSeparator, PMenuEntry);
  77.   friend class PSubMenu;
  78.   public:
  79.     /** Create a single line menu separator as a menu entry in the menu. */
  80.     PMenuSeparator(
  81.       PSubMenu & menu,      /// Menu into which the new entry is to be placed.
  82.       PMenuEntry * before = NULL
  83.      /**Menu entry before which the entry is to be inserted. If this is NULL
  84.          then the menu entry is appended to the end of the menu.
  85.        */
  86.     );
  87.   /**@name New functions for class */
  88.     /** Set the string name of the menu entry. This function does nothing. */
  89.     virtual void SetString(
  90.       const PString & str   /// New string for the menu entry.
  91.     );
  92.    /**Get the current string name of the menu entry. 
  93.        @return
  94.        empty string.
  95.      */
  96.     virtual PString GetString() const;
  97. #ifdef DOC_PLUS_PLUS
  98. };
  99. #endif
  100. // Class declaration continued in platform specific header file ///////////////