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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.  * $Xorg: Tree.h,v 1.4 2001/02/09 02:03:47 xorgcvs Exp $
  3.  *
  4. Copyright 1990, 1994, 1998  The Open Group
  5. Permission to use, copy, modify, distribute, and sell this software and its
  6. documentation for any purpose is hereby granted without fee, provided that
  7. the above copyright notice appear in all copies and that both that
  8. copyright notice and this permission notice appear in supporting
  9. documentation.
  10. The above copyright notice and this permission notice shall be included in
  11. all copies or substantial portions of the Software.
  12. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  13. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  14. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
  15. OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  16. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  17. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  18. Except as contained in this notice, the name of The Open Group shall not be
  19. used in advertising or otherwise to promote the sale, use or other dealings
  20. in this Software without prior written authorization from The Open Group.
  21.  * Copyright 1989 Prentice Hall
  22.  *
  23.  * Permission to use, copy, modify, and distribute this software for any
  24.  * purpose and without fee is hereby granted, provided that the above
  25.  * copyright notice appear in all copies and that both the copyright notice
  26.  * and this permission notice appear in supporting documentation.
  27.  * 
  28.  * Prentice Hall and the authors disclaim all warranties with regard
  29.  * to this software, including all implied warranties of merchantability and
  30.  * fitness.  In no event shall Prentice Hall or the authors be liable
  31.  * for any special, indirect or cosequential damages or any damages whatsoever
  32.  * resulting from loss of use, data or profits, whether in an action of
  33.  * contract, negligence or other tortious action, arising out of or in
  34.  * connection with the use or performance of this software.
  35.  * 
  36.  * Authors:  Jim Fulton, MIT X Consortium,
  37.  *           based on a version by Douglas Young, Prentice Hall
  38.  * 
  39.  * This widget is based on the Tree widget described on pages 397-419 of
  40.  * Douglas Young's book "The X Window System, Programming and Applications 
  41.  * with Xt OSF/Motif Edition."  The layout code has been rewritten to use
  42.  * additional blank space to make the structure of the graph easier to see
  43.  * as well as to support vertical trees.
  44.  */
  45. /* $XFree86: xc/lib/Xaw/Tree.h,v 1.6 2001/01/17 19:42:35 dawes Exp $ */
  46. #ifndef _XawTree_h
  47. #define _XawTree_h
  48. #include <X11/Xmu/Converters.h>
  49. /******************************************************************************
  50.  * 
  51.  * Tree Widget (subclass of ConstraintClass)
  52.  * 
  53.  ******************************************************************************
  54.  * 
  55.  * Parameters:
  56.  * 
  57.  *  Name                Class              Type            Default
  58.  *  ----                -----              ----            -------
  59.  * 
  60.  *  autoReconfigure     AutoReconfigure    Boolean         FALSE
  61.  *  background          Background         Pixel           XtDefaultBackground
  62.  *  foreground          Foreground         Pixel           XtDefaultForeground
  63.  *  gravity             Gravity            XtGravity       West
  64.  *  hSpace              HSpace             Dimension       20
  65.  *  lineWidth           LineWidth          Dimension       0
  66.  *  vSpace              VSpace             Dimension       6
  67.  * 
  68.  * 
  69.  * Constraint Resources attached to children:
  70.  * 
  71.  *  treeGC              TreeGC             GC              NULL
  72.  *  treeParent          TreeParent         Widget          NULL
  73.  * 
  74.  * 
  75.  *****************************************************************************/
  76.                                         /* new instance field names */
  77. #ifndef _XtStringDefs_h_
  78. #define XtNhSpace "hSpace"
  79. #define XtNvSpace "vSpace"
  80. #define XtCHSpace "HSpace"
  81. #define XtCVSpace "VSpace"
  82. #endif
  83. #define XtNautoReconfigure "autoReconfigure"
  84. #define XtNlineWidth "lineWidth"
  85. #define XtNtreeGC "treeGC"
  86. #define XtNtreeParent "treeParent"
  87. #define XtNgravity "gravity"
  88.                                         /* new class field names */
  89. #define XtCAutoReconfigure "AutoReconfigure"
  90. #define XtCLineWidth "LineWidth"
  91. #define XtCTreeGC "TreeGC"
  92. #define XtCTreeParent "TreeParent"
  93. #define XtCGravity "Gravity"
  94. #define XtRGC "GC"
  95. #ifndef OLDXAW
  96. #ifndef XawNdisplayList
  97. #define XawNdisplayList "displayList"
  98. #endif
  99.  
  100. #ifndef XawCDisplayList
  101. #define XawCDisplayList "DisplayList"
  102. #endif
  103. #ifndef XawRDisplayList
  104. #define XawRDisplayList "XawDisplayList"
  105. #endif
  106. #endif
  107.                                         /* external declarations */
  108. extern WidgetClass treeWidgetClass;
  109. typedef struct _TreeClassRec *TreeWidgetClass;
  110. typedef struct _TreeRec      *TreeWidget;
  111. _XFUNCPROTOBEGIN
  112. void XawTreeForceLayout
  113. (
  114.  Widget tree
  115.  );
  116. _XFUNCPROTOEND
  117. #endif /* _XawTree_h */