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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $Xorg: MultiSinkP.h,v 1.4 2001/02/09 02:03:44 xorgcvs Exp $ */
  2. /*
  3.  * Copyright 1991 by OMRON Corporation
  4.  *
  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, and that the name OMRON not be used in
  10.  * advertising or publicity pertaining to distribution of the software without
  11.  * specific, written prior permission.  OMRON make no representations
  12.  * about the suitability of this software for any purpose.  It is provided
  13.  * "as is" without express or implied warranty.
  14.  *
  15.  * OMRON DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
  16.  * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
  17.  * EVENT SHALL OMRON BE LIABLE FOR ANY SPECIAL, INDIRECT OR
  18.  * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
  19.  * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  20.  * TORTUOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  21.  * PERFORMANCE OF THIS SOFTWARE.
  22.  *
  23.  *      Author: Li Yuhong  OMRON Corporation
  24.  */
  25. /***********************************************************
  26. Copyright 1987, 1988, 1994, 1998  The Open Group
  27. Permission to use, copy, modify, distribute, and sell this software and its
  28. documentation for any purpose is hereby granted without fee, provided that
  29. the above copyright notice appear in all copies and that both that
  30. copyright notice and this permission notice appear in supporting
  31. documentation.
  32. The above copyright notice and this permission notice shall be included in
  33. all copies or substantial portions of the Software.
  34. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  35. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  36. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
  37. OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  38. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  39. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  40. Except as contained in this notice, the name of The Open Group shall not be
  41. used in advertising or otherwise to promote the sale, use or other dealings
  42. in this Software without prior written authorization from The Open Group.
  43. Copyright 1987, 1988 by Digital Equipment Corporation, Maynard, Massachusetts.
  44.                         All Rights Reserved
  45. Permission to use, copy, modify, and distribute this software and its 
  46. documentation for any purpose and without fee is hereby granted, 
  47. provided that the above copyright notice appear in all copies and that
  48. both that copyright notice and this permission notice appear in 
  49. supporting documentation, and that the name of Digital not be
  50. used in advertising or publicity pertaining to distribution of the
  51. software without specific, written prior permission.  
  52. DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  53. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  54. DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  55. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  56. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  57. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  58. SOFTWARE.
  59. ******************************************************************/
  60. /* $XFree86: xc/lib/Xaw/MultiSinkP.h,v 1.8 2001/01/17 19:42:28 dawes Exp $ */
  61. #ifndef _XawMultiSinkP_h
  62. #define _XawMultiSinkP_h
  63. #include <X11/Xfuncproto.h>
  64. /*
  65.  * MultiSink Object Private Data
  66.  */
  67. #include <X11/Xaw/TextSinkP.h> 
  68. #include <X11/Xaw/MultiSink.h> 
  69. /* new fields for the MultiSink object class */
  70. typedef struct _MultiSinkClassPart {
  71.     XtPointer extension;
  72. } MultiSinkClassPart;
  73. /* Full class record declaration */
  74. typedef struct _MultiSinkClassRec {
  75.     ObjectClassPart     object_class;
  76.     TextSinkClassPart text_sink_class;
  77.     MultiSinkClassPart multi_sink_class;
  78. } MultiSinkClassRec;
  79. extern MultiSinkClassRec multiSinkClassRec;
  80. /* New fields for the MultiSink object record */
  81. typedef struct {
  82.     /* resources */
  83.     Boolean echo;
  84.     Boolean display_nonprinting;
  85.     /* private */
  86.     GC normgc, invgc, xorgc;
  87.     XawTextPosition cursor_position;
  88.     XawTextInsertState laststate;
  89.     short cursor_x, cursor_y; /* Cursor Location */
  90.     XFontSet fontset; /* font set to draw */
  91. #ifndef OLDXAW
  92.     XtPointer pad[4]; /* for future use and keep binary compatability */
  93. #endif
  94. } MultiSinkPart;
  95. /* Full instance record declaration */
  96. typedef struct _MultiSinkRec {
  97.     ObjectPart          object;
  98.     TextSinkPart text_sink;
  99.     MultiSinkPart multi_sink;
  100. } MultiSinkRec;
  101. /*
  102.  * Semi-private functions
  103.  * for use by other Xaw modules only
  104.  */
  105. _XFUNCPROTOBEGIN
  106. void _XawMultiSinkPosToXY
  107. (
  108.  Widget w,
  109.  XawTextPosition pos,
  110.  Position *x,
  111.  Position *y
  112. );
  113. _XFUNCPROTOEND
  114. #endif /* _XawMultiSinkP_h */