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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $XConsortium: MultiSinkP.h,v 1.2 94/04/17 20:12:24 kaleb 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 (c) 1987, 1988, 1994  X Consortium
  27. Permission is hereby granted, free of charge, to any person obtaining a copy
  28. of this software and associated documentation files (the "Software"), to deal
  29. in the Software without restriction, including without limitation the rights
  30. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  31. copies of the Software, and to permit persons to whom the Software is
  32. furnished to do so, subject to the following conditions:
  33. The above copyright notice and this permission notice shall be included in
  34. all copies or substantial portions of the Software.
  35. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  36. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  37. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
  38. X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  39. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  40. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  41. Except as contained in this notice, the name of the X Consortium shall not be
  42. used in advertising or otherwise to promote the sale, use or other dealings
  43. in this Software without prior written authorization from the X Consortium.
  44. Copyright 1987, 1988 by Digital Equipment Corporation, Maynard, Massachusetts.
  45.                         All Rights Reserved
  46. Permission to use, copy, modify, and distribute this software and its 
  47. documentation for any purpose and without fee is hereby granted, 
  48. provided that the above copyright notice appear in all copies and that
  49. both that copyright notice and this permission notice appear in 
  50. supporting documentation, and that the name of Digital not be
  51. used in advertising or publicity pertaining to distribution of the
  52. software without specific, written prior permission.  
  53. DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  54. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  55. DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  56. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  57. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  58. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  59. SOFTWARE.
  60. ******************************************************************/
  61. /* 
  62.  * multiSinkP.h - Private definitions for multiSink object
  63.  * 
  64.  */
  65. #ifndef _XawMultiSinkP_h
  66. #define _XawMultiSinkP_h
  67. /***********************************************************************
  68.  *
  69.  * MultiSink Object Private Data
  70.  *
  71.  ***********************************************************************/
  72. #include <X11/Xaw3d/TextSinkP.h> 
  73. #include <X11/Xaw3d/MultiSink.h> 
  74. /************************************************************
  75.  *
  76.  * New fields for the MultiSink object class record.
  77.  *
  78.  ************************************************************/
  79. typedef struct _MultiSinkClassPart {
  80.   int foo;
  81. } MultiSinkClassPart;
  82. /* Full class record declaration */
  83. typedef struct _MultiSinkClassRec {
  84.     ObjectClassPart     object_class;
  85.     TextSinkClassPart text_sink_class;
  86.     MultiSinkClassPart multi_sink_class;
  87. } MultiSinkClassRec;
  88. extern MultiSinkClassRec multiSinkClassRec;
  89. /* New fields for the MultiSink object record */
  90. typedef struct {
  91.     /* public resources */
  92.     Boolean echo;
  93.     Boolean display_nonprinting;
  94.     /* private state */
  95.     GC normgc, invgc, xorgc;
  96.     Pixmap insertCursorOn;
  97.     XawTextInsertState laststate;
  98.     short cursor_x, cursor_y; /* Cursor Location. */
  99.     XFontSet fontset; /* font set to draw */
  100. } MultiSinkPart;
  101. /****************************************************************
  102.  *
  103.  * Full instance record declaration
  104.  *
  105.  ****************************************************************/
  106. typedef struct _MultiSinkRec {
  107.     ObjectPart          object;
  108.     TextSinkPart text_sink;
  109.     MultiSinkPart multi_sink;
  110. } MultiSinkRec;
  111. /********************************************
  112.  *
  113.  * Semi-private functions
  114.  * for use by other Xaw modules only
  115.  *
  116.  *******************************************/
  117. extern void _XawMultiSinkPosToXY(
  118. #if NeedFunctionPrototypes
  119.     Widget /* w */,
  120.     XawTextPosition /* pos */,
  121.     Position * /* x */,
  122.     Position * /*y */
  123. #endif
  124. );
  125. #endif /* _XawMultiSinkP_h */