Paned.h
上传用户:lctgjx
上传日期:2022-06-04
资源大小:8887k
文件大小:9k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2. * $XConsortium: Paned.h,v 1.15 94/04/17 20:12:29 kaleb Exp $
  3. */
  4. /***********************************************************
  5. Copyright (c) 1987, 1988, 1994  X Consortium
  6. Permission is hereby granted, free of charge, to any person obtaining a copy
  7. of this software and associated documentation files (the "Software"), to deal
  8. in the Software without restriction, including without limitation the rights
  9. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  10. copies of the Software, and to permit persons to whom the Software is
  11. furnished to do so, subject to the following conditions:
  12. The above copyright notice and this permission notice shall be included in
  13. all copies or substantial portions of the Software.
  14. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  15. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  16. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
  17. X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  18. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  19. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  20. Except as contained in this notice, the name of the X Consortium shall not be
  21. used in advertising or otherwise to promote the sale, use or other dealings
  22. in this Software without prior written authorization from the X Consortium.
  23. Copyright 1987, 1988 by Digital Equipment Corporation, Maynard, Massachusetts.
  24.                         All Rights Reserved
  25. Permission to use, copy, modify, and distribute this software and its 
  26. documentation for any purpose and without fee is hereby granted, 
  27. provided that the above copyright notice appear in all copies and that
  28. both that copyright notice and this permission notice appear in 
  29. supporting documentation, and that the name of Digital not be
  30. used in advertising or publicity pertaining to distribution of the
  31. software without specific, written prior permission.  
  32. DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  33. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  34. DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  35. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  36. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  37. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  38. SOFTWARE.
  39. ******************************************************************/
  40. /*
  41.  * Paned.h - Paned Composite Widget's public header file.
  42.  *
  43.  * Updated and significantly modifided from the Athena VPaned Widget.
  44.  *
  45.  * Date:    March 1, 1989
  46.  *
  47.  * By:      Chris D. Peterson
  48.  *          MIT X Consortium
  49.  *          kit@expo.lcs.mit.edu
  50.  */
  51. #ifndef _XawPaned_h
  52. #define _XawPaned_h
  53. #include <X11/Constraint.h>
  54. #include <X11/Xmu/Converters.h>
  55. /****************************************************************
  56.  *
  57.  * Vertical Paned Widget (SubClass of CompositeClass)
  58.  *
  59.  ****************************************************************/
  60. /* RESOURCES:
  61.  Name          Class    RepType     Default Value
  62.  ----          -----    -------     -------------
  63.  background          Background    Pixel     XtDefaultBackground
  64.  betweenCursor          Cursor            Cursor     **
  65.  border          BorderColor       Pixel     XtDefaultForeground
  66.  borderWidth          BorderWidth       Dimension     1
  67.  cursor          Cursor            Cursor     None
  68.  destroyCallback         Callback    Pointer     NULL
  69.  height          Height            Dimension     0
  70.  gripIndent          GripIndent    Position     16
  71.  gripCursor          Cursor            Cursor     **
  72.  horizontalGripCursol    Cursor            Cursor     sb_h_double_arrow
  73.  horizontalBetweencursor Cursor            Cursor     sb_up_arrow
  74.  internalBorderColor     BorderColor    Pixel     XtDefaultForeground
  75.  internalBorderWidth     BorderWidth    Position     1
  76.  leftCursor          Cursor            Cursor     sb_left_arrow
  77.  lowerCursor          Cursor            Cursor     sb_down_arrow
  78.  mappedWhenManaged       MappedWhenManaged Boolean     True
  79.  orientation             Orientation       XtOrientation    XtorientVertical
  80.  refigureMode          Boolean    Boolean     On
  81.  rightCursor          Cursor            Cursor           sb_right_arrow
  82.  sensitive          Sensitive    Boolean     True
  83.  upperCursor          Cursor            Cursor     sb_up_arrow
  84.  verticalBetweenCursor   Cursor            Cursor           sb_left_arrow
  85.  verticalGripCursor      Cursor            Cursor           sb_v_double_arrow
  86.  width          Width            Dimension     0
  87.  x          Position    Position     0
  88.  y          Position    Position         0
  89. ** These resources now are set to the vertical or horizontal cursor
  90.    depending upon orientation, by default.  If a value is specified here
  91.    then that cursor will be used reguardless of orientation.
  92. CONSTRAINT RESOURCES:
  93.  Name       Class RepType Default Value
  94.  ----       ----- ------- -------------
  95.  allowResize       Boolean         Boolean         False
  96.  max       Max         Dimension unlimited
  97.  min       Min Dimension Grip Size
  98.  preferredPaneSize    PerferredPaneSize Dimension PANED_ASK_CHILD
  99.  resizeToPreferred    Boolean Boolean   False
  100.  showGrip       ShowGrip Boolean True
  101.  skipAdjust       Boolean         Boolean         False
  102. */
  103. #define PANED_ASK_CHILD 0
  104. #define PANED_GRIP_SIZE 0
  105. /* New Fields */
  106. #define XtNallowResize "allowResize"
  107. #define XtNbetweenCursor "betweenCursor"
  108. #define XtNverticalBetweenCursor "verticalBetweenCursor"
  109. #define XtNhorizontalBetweenCursor "horizontalBetweenCursor"
  110. #define XtNgripCursor "gripCursor"
  111. #define XtNgripIndent "gripIndent"
  112. #define XtNhorizontalGripCursor "horizontalGripCursor"
  113. #define XtNinternalBorderColor "internalBorderColor"
  114. #define XtNinternalBorderWidth "internalBorderWidth"
  115. #define XtNleftCursor "leftCursor"
  116. #define XtNlowerCursor "lowerCursor"
  117. #define XtNrefigureMode "refigureMode"
  118. #define XtNposition "position"
  119. #define XtNmin "min"
  120. #define XtNmax "max"
  121. #define XtNpreferredPaneSize "preferredPaneSize"
  122. #define XtNresizeToPreferred "resizeToPreferred"
  123. #define XtNrightCursor "rightCursor"
  124. #define XtNshowGrip "showGrip"
  125. #define XtNskipAdjust "skipAdjust"
  126. #define XtNupperCursor "upperCursor"
  127. #define XtNverticalGripCursor "verticalGripCursor"
  128. #define XtCGripIndent "GripIndent"
  129. #define XtCMin "Min"
  130. #define XtCMax "Max"
  131. #define XtCPreferredPaneSize "PreferredPaneSize"
  132. #define XtCShowGrip "ShowGrip"
  133. /* Class record constant */
  134. extern WidgetClass panedWidgetClass;
  135. typedef struct _PanedClassRec *PanedWidgetClass;
  136. typedef struct _PanedRec *PanedWidget;
  137. /************************************************************
  138.  *
  139.  *  Public Procedures 
  140.  *
  141.  ************************************************************/
  142. _XFUNCPROTOBEGIN
  143. /* Function Name: XawPanedSetMinMax
  144.  * Description: Sets the min and max size for a pane.
  145.  * Arguments: widget - the widget that is a child of the Paned widget.
  146.  *                 min, max - the new min and max size for the pane.
  147.  * Returns: none.
  148.  */
  149. extern void XawPanedSetMinMax(
  150. #if NeedFunctionPrototypes
  151.     Widget /* w */,
  152.     int /* min */,
  153.     int /* max */
  154. #endif
  155. );
  156. /* Function Name: XawPanedGetMinMax
  157.  * Description: Gets the min and max size for a pane.
  158.  * Arguments: widget - the widget that is a child of the Paned widget.
  159.  ** RETURNED **    min, max - the current min and max size for the pane.
  160.  * Returns: none.
  161.  */
  162. extern void XawPanedGetMinMax(
  163. #if NeedFunctionPrototypes
  164.     Widget /* w */,
  165.     int * /* min_return */,
  166.     int * /* max_return */
  167. #endif
  168. );
  169. /* Function Name: XawPanedSetRefigureMode
  170.  * Description: Allows a flag to be set the will inhibit 
  171.  *                   the paned widgets relayout routine.
  172.  * Arguments: w - the paned widget.
  173.  *                 mode - if FALSE then inhibit refigure.
  174.  * Returns: none.
  175.  */
  176. extern void XawPanedSetRefigureMode(
  177. #if NeedFunctionPrototypes
  178.     Widget /* w */,
  179. #if NeedWidePrototypes
  180.     /* Boolean */ int /* mode */
  181. #else
  182.     Boolean /* mode */
  183. #endif
  184. #endif
  185. );
  186. /* Function Name: XawPanedGetNumSub
  187.  * Description: Returns the number of panes in the paned widget.
  188.  * Arguments: w - the paned widget.
  189.  * Returns: the number of panes in the paned widget.
  190.  */
  191. extern int XawPanedGetNumSub(
  192. #if NeedFunctionPrototypes
  193.     Widget /* w */
  194. #endif
  195. );
  196. /* Function Name: XawPanedAllowResize
  197.  * Description: Allows a flag to be set that determines if the paned
  198.  *                   widget will allow geometry requests from this child
  199.  * Arguments: widget - a child of the paned widget.
  200.  * Returns: none.
  201.  */
  202. extern void XawPanedAllowResize(
  203. #if NeedFunctionPrototypes
  204.     Widget /* w */,
  205. #if NeedWidePrototypes
  206.     /* Boolean */ int /* allow_resize */
  207. #else
  208.     Boolean /* allow_resize */
  209. #endif
  210. #endif
  211. );
  212. _XFUNCPROTOEND
  213. #endif /* _XawPaned_h */