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

IP电话/视频会议

开发平台:

Visual C++

  1. /*
  2.  * hscrollb.h
  3.  *
  4.  * Horizontal scroll bar 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: hscrollb.h,v $
  30.  * Revision 1.15  1999/03/10 03:49:51  robertj
  31.  * More documentation adjustments.
  32.  *
  33.  * Revision 1.14  1999/03/09 08:01:48  robertj
  34.  * Changed comments for doc++ support (more to come).
  35.  *
  36.  * Revision 1.13  1999/02/16 08:08:45  robertj
  37.  * MSVC 6.0 compatibility changes.
  38.  *
  39.  * Revision 1.12  1998/09/23 06:23:43  robertj
  40.  * Added open source copyright license.
  41.  *
  42.  * Revision 1.11  1994/12/21 11:53:00  robertj
  43.  * Documentation and variable normalisation.
  44.  *
  45.  * Revision 1.10  1994/10/30  11:46:38  robertj
  46.  * Changed mechanism for doing notification callback functions.
  47.  *
  48.  * Revision 1.9  1994/08/23  11:32:52  robertj
  49.  * Oops
  50.  *
  51.  * Revision 1.8  1994/08/22  00:46:48  robertj
  52.  * Added pragma fro GNU C++ compiler.
  53.  *
  54.  * Revision 1.7  1994/03/07  07:38:19  robertj
  55.  * Major enhancementsacross the board.
  56.  *
  57.  * Revision 1.6  1994/01/15  02:50:29  robertj
  58.  * Moved control contructors to common and added a platform dependent Construct() function.
  59.  *
  60.  * Revision 1.5  1994/01/03  04:42:23  robertj
  61.  * Mass changes to common container classes and interactors etc etc etc.
  62.  *
  63.  * Revision 1.4  1993/09/27  16:35:25  robertj
  64.  * Removed special constructor for dialog resource loading.
  65.  *
  66.  * Revision 1.3  1993/08/21  01:50:33  robertj
  67.  * Made Clone() function optional, default will assert if called.
  68.  *
  69.  * Revision 1.2  1993/07/14  12:49:16  robertj
  70.  * Fixed RCS keywords.
  71.  *
  72.  */
  73. #define _PHORIZONTALSCROLLBAR
  74. #ifdef __GNUC__
  75. #pragma interface
  76. #endif
  77. /**A horizontal scroll bar control for visually setting an integer value.
  78.    The exact appearance of a scroll bar is platform dependent. However certain
  79.    functionality exists for all platforms. These are that the scroll bar allows
  80.    values between a minimum and maximum to be set via small nudges (typically
  81.    a up or down arrow), large nudges (typically the page up or down area to
  82.    either side of the thumb) or by explicitly setting a value (typically by
  83.    dragging the thumb).
  84.  */
  85. class PHorizontalScrollBar : public PScrollBar
  86. {
  87.   PCLASSINFO(PHorizontalScrollBar, PScrollBar);
  88.   public:
  89.     /** Create a new horizontal scroll bar. */
  90.     PHorizontalScrollBar(
  91.       PInteractor * parent,  /// Interactor into which the control is placed.
  92.       PSCROLLBAR_VALUE max = 100, /// Maximum value for scroll bar.
  93.       PSCROLLBAR_VALUE min = 0,   /// Minimum value for scroll bar.
  94.       PSCROLLBAR_VALUE val = 0,   /// Initial value for scroll bar.
  95.       PSCROLLBAR_VALUE sml = 1,   /// Amount to move with the nudge button.
  96.       PSCROLLBAR_VALUE lge = 10   /// Amount to move with the paging area.
  97.     );
  98.     PHorizontalScrollBar(
  99.       PInteractor * parent,  /// Interactor into which the control is placed.
  100.       const PNotifier & func,     /// Function to call when changes state.
  101.       PSCROLLBAR_VALUE max = 100, /// Maximum value for scroll bar.
  102.       PSCROLLBAR_VALUE min = 0,   /// Minimum value for scroll bar.
  103.       PSCROLLBAR_VALUE val = 0,   /// Initial value for scroll bar.
  104.       PSCROLLBAR_VALUE sml = 1,   /// Amount to move with the nudge button.
  105.       PSCROLLBAR_VALUE lge = 10   /// Amount to move with the paging area.
  106.     );
  107.       
  108.     /** Create control from interactor layout with the specified control ID. */
  109.     PHorizontalScrollBar(
  110.       PInteractorLayout * parent, /// Interactor into which the box is placed.
  111.       PRESOURCE_ID ctlID,         /// Identifier for the control in the layout.
  112.       const PNotifier & notify,   /// Function to call when changes state.
  113.       PSCROLLBAR_VALUE * valuePtr /// Variable to change to the scrollbar value.
  114.     );
  115. #ifdef DOC_PLUS_PLUS
  116. };
  117. #endif
  118. // Class declaration continued in platform specific header file ///////////////