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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $XConsortium: FormP.h,v 1.22 94/04/17 20:12:09 kaleb Exp $ */
  2. /***********************************************************
  3. Copyright (c) 1987, 1988, 1994  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. /* Form widget private definitions */
  39. #ifndef _XawFormP_h
  40. #define _XawFormP_h
  41. #include <X11/Xaw3d/Form.h>
  42. #define XtREdgeType "EdgeType"
  43. typedef enum {LayoutPending, LayoutInProgress, LayoutDone} LayoutState;
  44. #define XtInheritLayout ((Boolean (*)())_XtInherit)
  45. typedef struct {
  46.     Boolean (*layout)(/* FormWidget, Dimension, Dimension */);
  47. } FormClassPart;
  48. /*
  49.  * Layout(
  50.  * FormWidget w - the widget whose children are to be configured
  51.  * Dimension w, h - bounding box of layout to be calculated
  52.  *
  53.  *  Stores preferred geometry in w->form.preferred_{width,height}.
  54.  *  If w->form.resize_in_layout is True, then a geometry request
  55.  *  may be made for the preferred bounding box if necessary.
  56.  *
  57.  *  Returns True if a geometry request was granted, False otherwise.
  58.  */
  59. typedef struct _FormClassRec {
  60.     CoreClassPart core_class;
  61.     CompositeClassPart composite_class;
  62.     ConstraintClassPart constraint_class;
  63.     FormClassPart form_class;
  64. } FormClassRec;
  65. extern FormClassRec formClassRec;
  66. typedef struct _FormPart {
  67.     /* resources */
  68.     int default_spacing;    /* default distance between children */
  69.     /* private state */
  70.     Dimension old_width, old_height; /* last known dimensions  */
  71.     int no_refigure;     /* no re-layout while > 0  */
  72.     Boolean needs_relayout;     /* next time no_refigure == 0  */
  73.     Boolean resize_in_layout;   /* should layout() do geom request?  */
  74.     Dimension preferred_width, preferred_height; /* cached from layout */
  75.     Boolean     resize_is_no_op;    /* Causes resize to take not action. */
  76. } FormPart;
  77. typedef struct _FormRec {
  78.     CorePart core;
  79.     CompositePart composite;
  80.     ConstraintPart constraint;
  81.     FormPart form;
  82. } FormRec;
  83. typedef struct _FormConstraintsPart {
  84. /*
  85.  * Constraint Resources.
  86.  */
  87.     XtEdgeType top, bottom, /* where to drag edge on resize */
  88. left, right;
  89.     int dx; /* desired horiz offset */
  90.     int dy; /* desired vertical offset */
  91.     Widget horiz_base; /* measure dx from here if non-null */
  92.     Widget vert_base; /* measure dy from here if non-null */
  93.     Boolean allow_resize; /* TRUE if child may request resize */
  94. /*
  95.  * Private contstraint resources.
  96.  */
  97. /*
  98.  * What the size of this child would be if we did not impose the 
  99.  * constraint the width and height must be greater than zero (0).
  100.  */
  101.     short virtual_width, virtual_height;
  102. /*
  103.  * Temporary Storage for children's new possible possition.
  104.  */
  105.     Position new_x, new_y;
  106.     LayoutState layout_state; /* temporary layout state */
  107.     Boolean deferred_resize; /* was resized while no_refigure is set */
  108. } FormConstraintsPart;
  109. typedef struct _FormConstraintsRec {
  110.     FormConstraintsPart form;
  111. } FormConstraintsRec, *FormConstraints;
  112. #endif /* _XawFormP_h */