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

IP电话/视频会议

开发平台:

Visual C++

  1. /*
  2.  * pwedbox.h
  3.  *
  4.  * password edit text box control.
  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: pwedbox.h,v $
  30.  * Revision 1.11  1999/03/10 03:49:53  robertj
  31.  * More documentation adjustments.
  32.  *
  33.  * Revision 1.10  1999/03/09 08:01:49  robertj
  34.  * Changed comments for doc++ support (more to come).
  35.  *
  36.  * Revision 1.9  1999/02/16 08:08:46  robertj
  37.  * MSVC 6.0 compatibility changes.
  38.  *
  39.  * Revision 1.8  1998/09/23 06:28:29  robertj
  40.  * Added open source copyright license.
  41.  *
  42.  * Revision 1.7  1995/06/04 12:35:21  robertj
  43.  * Added common constructor - Unix implementation requirement.
  44.  * Removed redundent destructor.
  45.  *
  46.  * Revision 1.6  1995/03/14 12:42:19  robertj
  47.  * Updated documentation to use HTML codes.
  48.  *
  49.  * Revision 1.5  1995/01/14  06:19:23  robertj
  50.  * Documentation
  51.  *
  52.  * Revision 1.4  1994/10/30  11:46:57  robertj
  53.  * Changed mechanism for doing notification callback functions.
  54.  *
  55.  * Revision 1.3  1994/08/23  11:32:52  robertj
  56.  * Oops
  57.  *
  58.  * Revision 1.2  1994/08/22  00:46:48  robertj
  59.  * Added pragma fro GNU C++ compiler.
  60.  *
  61.  * Revision 1.1  1994/04/11  14:15:05  robertj
  62.  * Initial revision
  63.  *
  64.  */
  65. #define _PPASSWORDEDITBOX
  66. #ifdef __GNUC__
  67. #pragma interface
  68. #endif
  69. /**This class is a text editing box that does not display characters entered.
  70.    It is typically used for entering password in secure systems. Other than
  71.    the display of a simgle character for all real characters entered it is
  72.    identical to the ancestor Ref{PEditBox}.
  73.  */
  74. class PPasswordEditBox : public PEditBox
  75. {
  76.   PCLASSINFO(PPasswordEditBox, PEditBox);
  77.   public:
  78.     /** Create a password edit box control. */
  79.     PPasswordEditBox(
  80.       PInteractor * parent  /// Interactor into which the control is placed.
  81.     );
  82.     /** Create control from interactor layout with the specified control ID. */
  83.     PPasswordEditBox(
  84.       PInteractorLayout * parent, /// Interactor into which the box is placed.
  85.       PRESOURCE_ID ctlID,         /// Identifier for the control in the layout.
  86.       const PNotifier & notify,   /// Function to call when changes state.
  87.       PString * valuePtr          /// Variable to change to the editor value.
  88.     );
  89.   /**@name New functions for class */
  90.    /**Set the character displayed instead of entered characters. This gives
  91.        the user feedback on how many characters were entered but not what
  92.        characters.
  93.      */
  94.     void SetPasswordCharacter(
  95.       char c   /// New character to display.
  96.     );
  97.    /**Get the character displayed instead of entered characters. This gives
  98.        the user feedback on how many characters were entered but not what
  99.        characters.
  100.        
  101.        @return
  102.        character to display.
  103.      */
  104.     char GetPasswordCharacter();
  105.   private:
  106.     void Construct();
  107.       // Common construction code.
  108. #ifdef DOC_PLUS_PLUS
  109. };
  110. #endif
  111. // Class declaration continued in platform specific header file ///////////////