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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2. * $Xorg: CoreP.h,v 1.4 2001/02/09 02:03:54 xorgcvs Exp $
  3. * $oHeader: CoreP.h,v 1.2 88/08/18 15:54:37 asente Exp $
  4. */
  5. /***********************************************************
  6. Copyright 1987, 1988, 1998  The Open Group
  7. Permission to use, copy, modify, distribute, and sell this software and its
  8. documentation for any purpose is hereby granted without fee, provided that
  9. the above copyright notice appear in all copies and that both that
  10. copyright notice and this permission notice appear in supporting
  11. documentation.
  12. The above copyright notice and this permission notice shall be included in
  13. all copies or substantial portions of the Software.
  14. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  15. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  16. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
  17. OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  18. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  19. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  20. Except as contained in this notice, the name of The Open Group shall not be
  21. used in advertising or otherwise to promote the sale, use or other dealings
  22. in this Software without prior written authorization from The Open Group.
  23. Copyright 1987, 1988 by Digital Equipment Corporation, Maynard, Massachusetts.
  24.                         All Rights Reserved
  25. Permission to use, copy, modify, and distribute this software and its 
  26. documentation for any purpose and without fee is hereby granted, 
  27. provided that the above copyright notice appear in all copies and that
  28. both that copyright notice and this permission notice appear in 
  29. supporting documentation, and that the name of Digital not be
  30. used in advertising or publicity pertaining to distribution of the
  31. software without specific, written prior permission.  
  32. DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  33. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  34. DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  35. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  36. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  37. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  38. SOFTWARE.
  39. ******************************************************************/
  40. #ifndef XtCoreP_h
  41. #define XtCoreP_h
  42. #include <X11/Core.h>
  43. externalref int _XtInheritTranslations;
  44. #define XtInheritTranslations  ((String) &_XtInheritTranslations)
  45. #define XtInheritRealize ((XtRealizeProc) _XtInherit)
  46. #define XtInheritResize ((XtWidgetProc) _XtInherit)
  47. #define XtInheritExpose ((XtExposeProc) _XtInherit)
  48. #define XtInheritSetValuesAlmost ((XtAlmostProc) _XtInherit)
  49. #define XtInheritAcceptFocus ((XtAcceptFocusProc) _XtInherit)
  50. #define XtInheritQueryGeometry ((XtGeometryHandler) _XtInherit)
  51. #define XtInheritDisplayAccelerator ((XtStringProc) _XtInherit)
  52. /***************************************************************
  53.  * Widget Core Data Structures
  54.  *
  55.  *
  56.  **************************************************************/
  57. typedef struct _CorePart {
  58.     Widget     self; /* pointer to widget itself      */
  59.     WidgetClass     widget_class; /* pointer to Widget's ClassRec      */
  60.     Widget     parent; /* parent widget         */
  61.     XrmName         xrm_name; /* widget resource name quarkified   */
  62.     Boolean         being_destroyed; /* marked for destroy      */
  63.     XtCallbackList  destroy_callbacks; /* who to call when widget destroyed */
  64.     XtPointer       constraints;        /* constraint record                 */
  65.     Position        x, y; /* window position      */
  66.     Dimension       width, height; /* window dimensions      */
  67.     Dimension       border_width; /* window border width      */
  68.     Boolean         managed;            /* is widget geometry managed?       */
  69.     Boolean     sensitive; /* is widget sensitive to user events*/
  70.     Boolean         ancestor_sensitive; /* are all ancestors sensitive?      */
  71.     XtEventTable    event_table; /* private to event dispatcher       */
  72.     XtTMRec     tm;                 /* translation management            */
  73.     XtTranslations  accelerators;       /* accelerator translations          */
  74.     Pixel     border_pixel; /* window border pixel      */
  75.     Pixmap          border_pixmap; /* window border pixmap or NULL      */
  76.     WidgetList      popup_list;         /* list of popups                    */
  77.     Cardinal        num_popups;         /* how many popups                   */
  78.     String          name; /* widget resource name      */
  79.     Screen     *screen; /* window's screen      */
  80.     Colormap        colormap;           /* colormap                          */
  81.     Window     window; /* window ID      */
  82.     Cardinal        depth; /* number of planes in window        */
  83.     Pixel     background_pixel; /* window background pixel      */
  84.     Pixmap          background_pixmap; /* window background pixmap or NULL  */
  85.     Boolean         visible; /* is window mapped and not occluded?*/
  86.     Boolean     mapped_when_managed;/* map window if it's managed?       */
  87. } CorePart;
  88. typedef struct _WidgetRec {
  89.     CorePart    core;
  90.  } WidgetRec, CoreRec;
  91. /******************************************************************
  92.  *
  93.  * Core Class Structure. Widgets, regardless of their class, will have
  94.  * these fields.  All widgets of a given class will have the same values
  95.  * for these fields.  Widgets of a given class may also have additional
  96.  * common fields.  These additional fields are included in incremental
  97.  * class structures, such as CommandClass.
  98.  *
  99.  * The fields that are specific to this subclass, as opposed to fields that
  100.  * are part of the superclass, are called "subclass fields" below.  Many
  101.  * procedures are responsible only for the subclass fields, and not for
  102.  * any superclass fields.
  103.  *
  104.  ********************************************************************/
  105. typedef struct _CoreClassPart {
  106.     WidgetClass     superclass; /* pointer to superclass ClassRec   */
  107.     String          class_name; /* widget resource class name       */
  108.     Cardinal        widget_size; /* size in bytes of widget record   */
  109.     XtProc     class_initialize;   /* class initialization proc     */
  110.     XtWidgetClassProc class_part_initialize; /* dynamic initialization     */
  111.     XtEnum          class_inited;       /* has class been initialized?      */
  112.     XtInitProc      initialize; /* initialize subclass fields       */
  113.     XtArgsProc      initialize_hook;    /* notify that initialize called    */
  114.     XtRealizeProc   realize; /* XCreateWindow for widget     */
  115.     XtActionList    actions; /* widget semantics name to proc map */
  116.     Cardinal     num_actions; /* number of entries in actions     */
  117.     XtResourceList  resources; /* resources for subclass fields    */
  118.     Cardinal        num_resources;      /* number of entries in resources   */
  119.     XrmClass        xrm_class; /* resource class quarkified     */
  120.     Boolean         compress_motion;    /* compress MotionNotify for widget */
  121.     XtEnum          compress_exposure;  /* compress Expose events for widget*/
  122.     Boolean         compress_enterleave;/* compress enter and leave events  */
  123.     Boolean         visible_interest;   /* select for VisibilityNotify      */
  124.     XtWidgetProc    destroy; /* free data for subclass pointers  */
  125.     XtWidgetProc    resize; /* geom manager changed widget size */
  126.     XtExposeProc    expose; /* rediplay window     */
  127.     XtSetValuesFunc set_values; /* set subclass resource values     */
  128.     XtArgsFunc      set_values_hook;    /* notify that set_values called    */
  129.     XtAlmostProc    set_values_almost;  /* set_values got "Almost" geo reply */
  130.     XtArgsProc      get_values_hook;    /* notify that get_values called    */
  131.     XtAcceptFocusProc accept_focus;     /* assign input focus to widget     */
  132.     XtVersionType   version;         /* version of intrinsics used     */
  133.     XtPointer       callback_private;   /* list of callback offsets       */
  134.     String          tm_table;           /* state machine                    */
  135.     XtGeometryHandler query_geometry; /* return preferred geometry        */
  136.     XtStringProc    display_accelerator;/* display your accelerator     */
  137.     XtPointer     extension; /* pointer to extension record      */
  138.  } CoreClassPart;
  139. typedef struct _WidgetClassRec {
  140.     CoreClassPart core_class;
  141. } WidgetClassRec, CoreClassRec;
  142. externalref WidgetClassRec widgetClassRec;
  143. #define coreClassRec widgetClassRec
  144. #endif /* _XtCoreP_h */
  145. /* DON'T ADD STUFF AFTER THIS #endif */