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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /***********************************************************
  2.   $XConsortium: PanedP.h,v 1.6 94/04/17 20:12:30 gildea Exp $
  3. Copyright (c) 1987, 1988  X Consortium
  4. Permission is hereby granted, free of charge, to any person obtaining a copy
  5. of this software and associated documentation files (the "Software"), to deal
  6. in the Software without restriction, including without limitation the rights
  7. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  8. copies of the Software, and to permit persons to whom the Software is
  9. furnished to do so, subject to the following conditions:
  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. X CONSORTIUM 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 X Consortium 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 X Consortium.
  21. Copyright 1987, 1988 by Digital Equipment Corporation, Maynard, Massachusetts.
  22.                         All Rights Reserved
  23. Permission to use, copy, modify, and distribute this software and its 
  24. documentation for any purpose and without fee is hereby granted, 
  25. provided that the above copyright notice appear in all copies and that
  26. both that copyright notice and this permission notice appear in 
  27. supporting documentation, and that the name of Digital not be
  28. used in advertising or publicity pertaining to distribution of the
  29. software without specific, written prior permission.  
  30. DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  31. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  32. DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  33. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  34. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  35. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  36. SOFTWARE.
  37. ******************************************************************/
  38. /*
  39.  * PanedP.h - Paned Composite Widget's private header file.
  40.  *
  41.  * Updated and significantly modified from the Athena VPaned Widget.
  42.  *
  43.  * Date:    March 1, 1989
  44.  *
  45.  * By:      Chris D. Peterson
  46.  *          MIT X Consortium
  47.  *          kit@expo.lcs.mit.edu
  48.  */
  49. #ifndef _XawPanedP_h
  50. #define _XawPanedP_h
  51. #include <X11/Xaw3d/Paned.h>
  52. /*********************************************************************
  53.  *
  54.  * Paned Widget Private Data
  55.  *
  56.  *********************************************************************/
  57. /* New fields for the Paned widget class record */
  58. typedef struct _PanedClassPart {
  59.     int foo; /* keep compiler happy. */
  60. } PanedClassPart;
  61. /* Full Class record declaration */
  62. typedef struct _PanedClassRec {
  63.     CoreClassPart       core_class;
  64.     CompositeClassPart  composite_class;
  65.     ConstraintClassPart constraint_class;
  66.     PanedClassPart     paned_class;
  67. } PanedClassRec;
  68. extern PanedClassRec panedClassRec;
  69. /* Paned constraint record */
  70. typedef struct _PanedConstraintsPart {
  71.   /* Resources. */
  72.     Dimension min; /* Minimum height */
  73.     Dimension max; /* Maximum height */
  74.     Boolean allow_resize; /* TRUE iff child resize requests are ok */
  75.     Boolean     show_grip; /* TRUE iff child will have grip below it,
  76.    when it is not the bottom pane. */
  77.     Boolean skip_adjust; /* TRUE iff child's height should not be */
  78. /* changed without explicit user action. */
  79.     int position; /* position location in Paned (relative to
  80.    other children) ** NIY ** */
  81.     Dimension   preferred_size; /* The Preferred size of the pane.
  82.    Iff this is zero then ask child for size.*/
  83.     Boolean     resize_to_pref; /* resize this pane to its preferred size
  84.    on a resize or change managed after 
  85.    realize. */
  86.   /* Private state. */
  87.     Position delta; /* Desired Location */
  88.     Position olddelta; /* The last value of dy. */
  89.     Boolean     paned_adjusted_me; /* Has the vpaned adjusted this widget w/o
  90.      user interaction to make things fit? */
  91.     Dimension wp_size; /* widget's preferred size */ 
  92.     int         size; /* the size the widget will actually get. */
  93.     Widget grip; /* The grip for this child */
  94. } PanedConstraintsPart, *Pane;
  95. typedef struct _PanedConstraintsRec {
  96.     PanedConstraintsPart paned;
  97. } PanedConstraintsRec, *PanedConstraints;
  98. /*
  99.  * The Pane Stack Structure.
  100.  */
  101. typedef struct _PaneStack {
  102.     struct _PaneStack * next; /* The next element on the stack. */
  103.     Pane pane; /* The pane in this element on the stack. */
  104.     int start_size; /* The size of this element when it was pushed
  105.    onto the stack. */
  106. } PaneStack;
  107. /* New Fields for the Paned widget record */
  108. typedef struct {
  109.     /* resources */
  110.     Position    grip_indent;               /* Location of grips (offset
  111.       from right margin) */
  112.     Boolean     refiguremode;              /* Whether to refigure changes 
  113.       right now */
  114.     XtTranslations grip_translations;      /* grip translation table */
  115.     Pixel       internal_bp;               /* color of internal borders. */
  116.     Dimension   internal_bw;            /* internal border width. */
  117.     XtOrientation orientation;            /* Orientation of paned widget. */
  118.     Cursor cursor;            /* Cursor for paned window */
  119.     Cursor grip_cursor;               /* inactive grip cursor */
  120.     Cursor v_grip_cursor;             /* inactive vert grip cursor */
  121.     Cursor h_grip_cursor;             /* inactive horiz grip cursor */
  122.     Cursor adjust_this_cursor;        /* active grip cursor: T */
  123.     Cursor v_adjust_this_cursor;      /* active vert grip cursor: T */
  124.     Cursor h_adjust_this_cursor;      /* active horiz grip cursor: T */
  125.           /* vertical. */
  126.     Cursor adjust_upper_cursor;      /* active grip cursor: U */
  127.     Cursor adjust_lower_cursor;      /* active grip cursor: D */
  128.           /* horizontal. */
  129.     Cursor adjust_left_cursor;       /* active grip cursor: U */
  130.     Cursor adjust_right_cursor;      /* active grip cursor: D */
  131.     /* private */
  132.     Boolean recursively_called;        /* for ChangeManaged */
  133.     Boolean resize_children_to_pref;   /* override constrain resources
  134.       and resize all children to
  135.       preferred size. */
  136.     int         start_loc;            /* mouse origin when adjusting */
  137.     Widget      whichadd;                  /* Which pane to add changes to */
  138.     Widget      whichsub;                  /* Which pane to sub changes from */
  139.     GC          normgc;                    /* GC to use when drawing borders */
  140.     GC          invgc;                     /* GC to use when erasing borders */
  141.     GC          flipgc;                    /* GC to use when animating
  142.       borders */
  143.     int num_panes;                 /* count of managed panes */
  144.     PaneStack * stack;            /* The pane stack for this widget.*/
  145. } PanedPart;
  146. /**************************************************************************
  147.  *
  148.  * Full instance record declaration
  149.  *
  150.  **************************************************************************/
  151. typedef struct _PanedRec {
  152.     CorePart       core;
  153.     CompositePart  composite;
  154.     ConstraintPart constraint;
  155.     PanedPart     paned;
  156. } PanedRec;
  157. #endif /* _XawPanedP_h */
  158. /* DON'T ADD STUFF AFTER THIS #endif */