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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.  * $XConsortium: TreeP.h,v 1.14 94/04/17 20:13:24 jim Exp $
  3.  *
  4. Copyright (c) 1990  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 _XawTreeP_h
  47. #define _XawTreeP_h
  48. #include <X11/Xaw3d/Tree.h>
  49. typedef struct _TreeClassPart {
  50.     int ignore;
  51. } TreeClassPart;
  52. typedef struct _TreeClassRec {
  53.     CoreClassPart core_class;
  54.     CompositeClassPart composite_class;
  55.     ConstraintClassPart constraint_class;
  56.     TreeClassPart tree_class;
  57. } TreeClassRec;
  58. extern TreeClassRec treeClassRec;
  59. typedef struct {
  60.     /* fields available through resources */
  61.     Dimension hpad; /* hSpace/HSpace */
  62.     Dimension vpad; /* vSpace/VSpace */
  63.     Dimension line_width; /* lineWidth/LineWidth */
  64.     Pixel foreground; /* foreground/Foreground */
  65.     XtGravity gravity; /* gravity/Gravity */
  66.     Boolean auto_reconfigure; /* autoReconfigure/AutoReconfigure */
  67.     /* private fields */
  68.     GC gc; /* used to draw lines */
  69.     Widget tree_root; /* hidden root off all children */
  70.     Dimension *largest; /* list of largest per depth */
  71.     int n_largest; /* number of elements in largest */
  72.     Dimension maxwidth, maxheight; /* for shrink wrapping */
  73. } TreePart;
  74. typedef struct _TreeRec {
  75.     CorePart core;
  76.     CompositePart composite;
  77.     ConstraintPart constraint;
  78.     TreePart tree;
  79. }  TreeRec;
  80. /*
  81.  * structure attached to all children
  82.  */
  83. typedef struct _TreeConstraintsPart {
  84.     /* resources */
  85.     Widget parent; /* treeParent/TreeParent */
  86.     GC gc; /* treeGC/TreeGC */
  87.     /* private data */
  88.     Widget *children;
  89.     int n_children;
  90.     int max_children;
  91.     Dimension bbsubwidth, bbsubheight; /* bounding box of sub tree */
  92.     Dimension bbwidth, bbheight; /* bounding box including node */
  93.     Position x, y;
  94. } TreeConstraintsPart;
  95. typedef struct _TreeConstraintsRec {
  96.    TreeConstraintsPart tree;
  97. } TreeConstraintsRec, *TreeConstraints;
  98. /*
  99.  * useful macros
  100.  */
  101. #define TREE_CONSTRAINT(w) 
  102.                    ((TreeConstraints)((w)->core.constraints))
  103. #define TREE_INITIAL_DEPTH 10 /* for allocating largest array */
  104. #define TREE_HORIZONTAL_DEFAULT_SPACING 20
  105. #define TREE_VERTICAL_DEFAULT_SPACING 6
  106. #endif /* _XawTreeP_h */