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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.  * $Xorg: TreeP.h,v 1.4 2001/02/09 02:03:47 xorgcvs Exp $
  3.  *
  4. Copyright 1990, 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/TreeP.h,v 1.6 2001/01/17 19:42:35 dawes Exp $ */
  46. #ifndef _XawTreeP_h
  47. #define _XawTreeP_h
  48. #include <X11/Xaw/Tree.h>
  49. typedef struct _TreeClassPart {
  50.     XtPointer extension;
  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. #ifndef OLDXAW
  74.     XawDisplayList *display_list;
  75.     XtPointer pad[4]; /* for future use and keep binary compatability */
  76. #endif
  77. } TreePart;
  78. typedef struct _TreeRec {
  79.     CorePart core;
  80.     CompositePart composite;
  81.     ConstraintPart constraint;
  82.     TreePart tree;
  83. }  TreeRec;
  84. /*
  85.  * structure attached to all children
  86.  */
  87. typedef struct _TreeConstraintsPart {
  88.     /* resources */
  89.     Widget parent; /* treeParent/TreeParent */
  90.     GC gc; /* treeGC/TreeGC */
  91.     /* private data */
  92.     Widget *children;
  93.     int n_children;
  94.     int max_children;
  95.     Dimension bbsubwidth, bbsubheight; /* bounding box of sub tree */
  96.     Dimension bbwidth, bbheight; /* bounding box including node */
  97.     Position x, y;
  98. #ifndef OLDXAW
  99.     XtPointer pad[2]; /* leave some space for future optimizations, and
  100.  * keep binary compatability
  101.  */
  102. #endif
  103. } TreeConstraintsPart;
  104. typedef struct _TreeConstraintsRec {
  105.    TreeConstraintsPart tree;
  106. } TreeConstraintsRec, *TreeConstraints;
  107. /*
  108.  * useful macros
  109.  */
  110. #define TREE_CONSTRAINT(w) 
  111.                    ((TreeConstraints)((w)->core.constraints))
  112. #define TREE_INITIAL_DEPTH 10 /* for allocating largest array */
  113. #define TREE_HORIZONTAL_DEFAULT_SPACING 20
  114. #define TREE_VERTICAL_DEFAULT_SPACING 6
  115. #endif /* _XawTreeP_h */