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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.  * $XConsortium: Tree.h,v 1.13 94/04/17 20:13:22 kaleb Exp $
  3.  *
  4. Copyright (c) 1990, 1994  X Consortium
  5. Permission is hereby granted, free of charge, to any person obtaining a copy
  6. of this software and associated documentation files (the "Software"), to deal
  7. in the Software without restriction, including without limitation the rights
  8. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  9. copies of the Software, and to permit persons to whom the Software is
  10. furnished to do so, subject to the following conditions:
  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. X CONSORTIUM 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 X Consortium 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 X Consortium.
  22.  * Copyright 1989 Prentice Hall
  23.  *
  24.  * Permission to use, copy, modify, and distribute this software for any
  25.  * purpose and without fee is hereby granted, provided that the above
  26.  * copyright notice appear in all copies and that both the copyright notice
  27.  * and this permission notice appear in supporting documentation.
  28.  * 
  29.  * Prentice Hall and the authors disclaim all warranties with regard
  30.  * to this software, including all implied warranties of merchantability and
  31.  * fitness.  In no event shall Prentice Hall or the authors be liable
  32.  * for any special, indirect or cosequential damages or any damages whatsoever
  33.  * resulting from loss of use, data or profits, whether in an action of
  34.  * contract, negligence or other tortious action, arising out of or in
  35.  * connection with the use or performance of this software.
  36.  * 
  37.  * Authors:  Jim Fulton, MIT X Consortium,
  38.  *           based on a version by Douglas Young, Prentice Hall
  39.  * 
  40.  * This widget is based on the Tree widget described on pages 397-419 of
  41.  * Douglas Young's book "The X Window System, Programming and Applications 
  42.  * with Xt OSF/Motif Edition."  The layout code has been rewritten to use
  43.  * additional blank space to make the structure of the graph easier to see
  44.  * as well as to support vertical trees.
  45.  */
  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.                                         /* external declarations */
  96. extern WidgetClass treeWidgetClass;
  97. typedef struct _TreeClassRec *TreeWidgetClass;
  98. typedef struct _TreeRec      *TreeWidget;
  99. _XFUNCPROTOBEGIN
  100. extern void XawTreeForceLayout (
  101. #if NeedFunctionPrototypes
  102.     Widget /* tree */
  103. #endif
  104. );
  105. _XFUNCPROTOEND
  106. #endif /* _XawTree_h */