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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $Xorg: RectObjP.h,v 1.4 2001/02/09 02:03:56 xorgcvs Exp $ */
  2. /* $oHeader: RectObjP.h,v 1.2 88/08/18 15:55:52 asente Exp $ */
  3. /***********************************************************
  4. Copyright 1987, 1988, 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 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. #ifndef _Xt_RectObjP_h_
  39. #define _Xt_RectObjP_h_
  40. #include <X11/RectObj.h>
  41. #include <X11/ObjectP.h>
  42. /**********************************************************
  43.  * Rectangle Object Instance Data Structures
  44.  *
  45.  **********************************************************/
  46. /* these fields match CorePart and can not be changed */
  47. typedef struct _RectObjPart {
  48.     Position        x, y;               /* rectangle position               */
  49.     Dimension       width, height;      /* rectangle dimensions             */
  50.     Dimension       border_width;       /* rectangle border width           */
  51.     Boolean         managed;            /* is widget geometry managed?       */
  52.     Boolean         sensitive;          /* is widget sensitive to user events*/
  53.     Boolean         ancestor_sensitive; /* are all ancestors sensitive?      */
  54. }RectObjPart;
  55. typedef struct _RectObjRec {
  56.     ObjectPart object;
  57.     RectObjPart rectangle;
  58. } RectObjRec;
  59. /********************************************************
  60.  * Rectangle Object Class Data Structures
  61.  *
  62.  ********************************************************/
  63. /* these fields match CoreClassPart and can not be changed */
  64. /* ideally these structures would only contain the fields required;
  65.    but because the CoreClassPart cannot be changed at this late date
  66.    extraneous fields are necessary to make the field offsets match */
  67. typedef struct _RectObjClassPart {
  68.     WidgetClass     superclass;         /* pointer to superclass ClassRec   */
  69.     String          class_name;         /* widget resource class name       */
  70.     Cardinal        widget_size;        /* size in bytes of widget record   */
  71.     XtProc          class_initialize;   /* class initialization proc        */
  72.     XtWidgetClassProc class_part_initialize; /* dynamic initialization      */
  73.     XtEnum          class_inited;       /* has class been initialized?      */
  74.     XtInitProc      initialize;         /* initialize subclass fields       */
  75.     XtArgsProc      initialize_hook;    /* notify that initialize called    */
  76.     XtProc          rect1; /* NULL                             */
  77.     XtPointer       rect2;              /* NULL                             */
  78.     Cardinal        rect3;              /* NULL                             */
  79.     XtResourceList  resources;          /* resources for subclass fields    */
  80.     Cardinal        num_resources;      /* number of entries in resources   */
  81.     XrmClass        xrm_class;          /* resource class quarkified        */
  82.     Boolean         rect4;              /* NULL                             */
  83.     XtEnum          rect5;              /* NULL                             */
  84.     Boolean         rect6;              /* NULL     */
  85.     Boolean         rect7;              /* NULL                             */
  86.     XtWidgetProc    destroy;            /* free data for subclass pointers  */
  87.     XtWidgetProc    resize;             /* geom manager changed widget size */
  88.     XtExposeProc    expose;             /* rediplay rectangle               */
  89.     XtSetValuesFunc set_values;         /* set subclass resource values     */
  90.     XtArgsFunc      set_values_hook;    /* notify that set_values called    */
  91.     XtAlmostProc    set_values_almost;  /* set values almost for geometry   */
  92.     XtArgsProc      get_values_hook;    /* notify that get_values called    */
  93.     XtProc          rect9;              /* NULL                             */
  94.     XtVersionType   version;            /* version of intrinsics used       */
  95.     XtPointer       callback_private;   /* list of callback offsets         */
  96.     String          rect10;             /* NULL                             */
  97.     XtGeometryHandler query_geometry;   /* return preferred geometry        */
  98.     XtProc          rect11;             /* NULL                             */
  99.     XtPointer       extension;          /* pointer to extension record      */
  100. } RectObjClassPart;
  101. typedef struct _RectObjClassRec {
  102.     RectObjClassPart rect_class;
  103. } RectObjClassRec;
  104. externalref RectObjClassRec rectObjClassRec;
  105. #endif /*_Xt_RectObjP_h_*/