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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

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