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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.  * $Xorg: AsciiTextP.h,v 1.4 2001/02/09 02:03:42 xorgcvs Exp $
  3.  */
  4. /***********************************************************
  5. Copyright 1987, 1988, 1994, 1998  The Open Group
  6. Permission to use, copy, modify, distribute, and sell this software and its
  7. documentation for any purpose is hereby granted without fee, provided that
  8. the above copyright notice appear in all copies and that both that
  9. copyright notice and this permission notice appear in supporting
  10. documentation.
  11. The above copyright notice and this permission notice shall be included in
  12. all copies or substantial portions of the Software.
  13. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  14. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  15. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
  16. OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  17. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  18. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  19. Except as contained in this notice, the name of The Open Group shall not be
  20. used in advertising or otherwise to promote the sale, use or other dealings
  21. in this Software without prior written authorization from The Open Group.
  22. Copyright 1987, 1988 by Digital Equipment Corporation, Maynard, Massachusetts.
  23.                         All Rights Reserved
  24. Permission to use, copy, modify, and distribute this software and its 
  25. documentation for any purpose and without fee is hereby granted, 
  26. provided that the above copyright notice appear in all copies and that
  27. both that copyright notice and this permission notice appear in 
  28. supporting documentation, and that the name of Digital not be
  29. used in advertising or publicity pertaining to distribution of the
  30. software without specific, written prior permission.  
  31. DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  32. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  33. DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  34. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  35. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  36. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  37. SOFTWARE.
  38. ******************************************************************/
  39. /* $XFree86: xc/lib/Xaw/AsciiTextP.h,v 1.8 2001/01/17 19:42:25 dawes Exp $ */
  40. /*
  41.  * AsciiText.c - Private header file for AsciiText Widget.
  42.  *
  43.  * This Widget is intended to be used as a simple front end to the 
  44.  * text widget with an ascii source and ascii sink attached to it.
  45.  *
  46.  * Date:    June 29, 1989
  47.  *
  48.  * By:      Chris D. Peterson
  49.  *          MIT X Consortium 
  50.  *          kit@expo.lcs.mit.edu
  51.  */
  52. #ifndef _AsciiTextP_h
  53. #define _AsciiTextP_h
  54. #include <X11/Xaw/TextP.h>
  55. #include <X11/Xaw/AsciiText.h>
  56. #include <X11/Xaw/AsciiSrc.h>
  57. #include <X11/Xaw/MultiSrc.h>
  58. typedef struct {
  59.   XtPointer extension;
  60. } AsciiClassPart;
  61. typedef struct _AsciiTextClassRec {
  62.     CoreClassPart core_class;
  63.     SimpleClassPart simple_class;
  64.     TextClassPart text_class;
  65.     AsciiClassPart ascii_class;
  66. } AsciiTextClassRec;
  67. extern AsciiTextClassRec asciiTextClassRec;
  68. typedef struct {
  69.     int resource;
  70. #ifndef OLDXAW
  71.     XtPointer pad[4]; /* for future use and keep binary compatability */
  72. #endif
  73. } AsciiPart;
  74. typedef struct _AsciiRec {
  75.     CorePart core;
  76.     SimplePart simple;
  77.     TextPart text;
  78.     AsciiPart ascii;
  79. } AsciiRec;
  80. /*
  81.  * Ascii String Emulation widget
  82.  */
  83. #ifdef ASCII_STRING
  84. typedef struct {
  85.   XtPointer extension;
  86. } AsciiStringClassPart;
  87. typedef struct _AsciiStringClassRec {
  88.     CoreClassPart core_class;
  89.     SimpleClassPart simple_class;
  90.     TextClassPart text_class;
  91.     AsciiClassPart ascii_class;
  92.     AsciiStringClassPart string_class;
  93. } AsciiStringClassRec;
  94. extern AsciiStringClassRec asciiStringClassRec;
  95. typedef struct {
  96.     int resource;
  97. #ifndef OLDXAW
  98.     XtPointer pad[4]; /* for future use and keep binary compatability */
  99. #endif
  100. } AsciiStringPart;
  101. typedef struct _AsciiStringRec {
  102.     CorePart core;
  103.     SimplePart simple;
  104.     TextPart text;
  105.     AsciiPart           ascii;
  106.     AsciiStringPart     ascii_str;
  107. } AsciiStringRec;
  108. #endif /* ASCII_STRING */
  109. #ifdef ASCII_DISK
  110. /*
  111.  * Ascii Disk Emulation widget
  112.  */
  113. typedef struct {
  114.     XtPointer extension;
  115. } AsciiDiskClassPart;
  116. typedef struct _AsciiDiskClassRec {
  117.     CoreClassPart core_class;
  118.     SimpleClassPart simple_class;
  119.     TextClassPart text_class;
  120.     AsciiClassPart ascii_class;
  121.     AsciiDiskClassPart disk_class;
  122. } AsciiDiskClassRec;
  123. extern AsciiDiskClassRec asciiDiskClassRec;
  124. typedef struct {
  125.     char resource;
  126. #ifndef OLDXAW
  127.     XtPointer pad[4]; /* for future use and keep binary compatability */
  128. #endif
  129. } AsciiDiskPart;
  130. typedef struct _AsciiDiskRec {
  131.     CorePart core;
  132.     SimplePart simple;
  133.     TextPart text;
  134.     AsciiPart           ascii;
  135.     AsciiDiskPart       ascii_disk;
  136. } AsciiDiskRec;
  137. #endif /* ASCII_DISK */
  138. #endif /* _AsciiTextP_h */