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

IP电话/视频会议

开发平台:

Visual C++

  1. /*
  2.  * ncontrol.h
  3.  *
  4.  * Named Control 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: ncontrol.h,v $
  30.  * Revision 1.14  1999/03/10 03:49:52  robertj
  31.  * More documentation adjustments.
  32.  *
  33.  * Revision 1.13  1999/03/09 08:01:49  robertj
  34.  * Changed comments for doc++ support (more to come).
  35.  *
  36.  * Revision 1.12  1999/02/16 08:08:46  robertj
  37.  * MSVC 6.0 compatibility changes.
  38.  *
  39.  * Revision 1.11  1998/09/23 06:24:27  robertj
  40.  * Added open source copyright license.
  41.  *
  42.  * Revision 1.10  1995/03/14 12:41:52  robertj
  43.  * Updated documentation to use HTML codes.
  44.  *
  45.  * Revision 1.9  1995/01/06  10:31:03  robertj
  46.  * Documentation.
  47.  *
  48.  * Revision 1.8  1994/10/30  11:46:53  robertj
  49.  * Changed mechanism for doing notification callback functions.
  50.  *
  51.  * Revision 1.7  1994/08/23  11:32:52  robertj
  52.  * Oops
  53.  *
  54.  * Revision 1.6  1994/08/22  00:46:48  robertj
  55.  * Added pragma fro GNU C++ compiler.
  56.  *
  57.  * Revision 1.5  1994/03/07  07:38:19  robertj
  58.  * Major enhancementsacross the board.
  59.  *
  60.  * Revision 1.4  1994/01/03  04:42:23  robertj
  61.  * Mass changes to common container classes and interactors etc etc etc.
  62.  *
  63.  * Revision 1.3  1993/09/27  16:35:25  robertj
  64.  * Removed special constructor for dialog resource loading.
  65.  *
  66.  * Revision 1.2  1993/07/14  12:49:16  robertj
  67.  * Fixed RCS keywords.
  68.  *
  69.  */
  70. #define _PNAMEDCONTROL
  71. #ifdef __GNUC__
  72. #pragma interface
  73. #endif
  74. /**This class defines a user inteface entity that allows the user to control
  75.    some attribute/data within the system.
  76.    
  77.    In addition to the standard PControl functionality a named control also
  78.    has a title or name associated with it, eg a check box has a text string
  79.    next to the graphic.
  80.  */
  81. class PNamedControl : public PControl
  82. {
  83.   PCLASSINFO(PNamedControl, PControl);
  84.   public:
  85.       /** Create a named control with the specified name. */
  86.     PNamedControl(
  87.       PInteractor * parent    /// Interactor into which the control is placed.
  88.     );
  89.     PNamedControl(
  90.       PInteractor * parent,   /// Interactor into which the control is placed.
  91.       const PString & name,   /// Name for use by the control.
  92.       const PNotifier & func, /// Function to call when control changes state.
  93.       void * valuePtr         /// Variable to change to the controls state.
  94.     );
  95.    /**Create control from interactor layout with the specified control ID.
  96.        This is mainly used in support of resource based dialogs.
  97.      */
  98.     PNamedControl(
  99.       PInteractorLayout * parent, /// Interactor on which the control is placed.
  100.       PRESOURCE_ID ctlID,       /// Identifier for the control in the layout.
  101.       const PNotifier & func,   /// Function to call when control changes state.
  102.       void * valuePtr           /// Variable to change to the controls state.
  103.     );
  104.     /** Destroy the named control. */
  105.     virtual ~PNamedControl();
  106.     /**@name New functions for class */
  107.    /**Get the name that is currently used by the control.
  108.        @return
  109.        string for the control name.
  110.      */
  111.     PString GetName() const;
  112.     /** Set the name that is to be next to the control. */
  113.     void SetName(
  114.       const PString & name    /// New name for use by the control.
  115.     );
  116. #ifdef DOC_PLUS_PLUS
  117. };
  118. #endif
  119. // Class declaration continued in platform specific header file ///////////////