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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.  * $XConsortium: AsciiTextP.h,v 1.17 94/04/17 20:11:52 kaleb Exp $ 
  3.  */
  4. /***********************************************************
  5. Copyright (c) 1987, 1988, 1994  X Consortium
  6. Permission is hereby granted, free of charge, to any person obtaining a copy
  7. of this software and associated documentation files (the "Software"), to deal
  8. in the Software without restriction, including without limitation the rights
  9. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  10. copies of the Software, and to permit persons to whom the Software is
  11. furnished to do so, subject to the following conditions:
  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. X CONSORTIUM 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 X Consortium 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 X Consortium.
  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. /***********************************************************************
  41.  *
  42.  * AsciiText Widget
  43.  *
  44.  ***********************************************************************/
  45. /*
  46.  * AsciiText.c - Private header file for AsciiText Widget.
  47.  *
  48.  * This Widget is intended to be used as a simple front end to the 
  49.  * text widget with an ascii source and ascii sink attached to it.
  50.  *
  51.  * Date:    June 29, 1989
  52.  *
  53.  * By:      Chris D. Peterson
  54.  *          MIT X Consortium 
  55.  *          kit@expo.lcs.mit.edu
  56.  */
  57. #ifndef _AsciiTextP_h
  58. #define _AsciiTextP_h
  59. #include <X11/Xaw3d/TextP.h>
  60. #include <X11/Xaw3d/AsciiText.h>
  61. #include <X11/Xaw3d/AsciiSrc.h>
  62. #include <X11/Xaw3d/MultiSrc.h>
  63. typedef struct {int empty;} AsciiClassPart;
  64. typedef struct _AsciiTextClassRec {
  65.     CoreClassPart core_class;
  66.     SimpleClassPart simple_class;
  67.     TextClassPart text_class;
  68.     AsciiClassPart ascii_class;
  69. } AsciiTextClassRec;
  70. extern AsciiTextClassRec asciiTextClassRec;
  71. typedef struct { char foo; /* keep compiler happy. */ } AsciiPart;
  72. typedef struct _AsciiRec {
  73.     CorePart core;
  74.     SimplePart simple;
  75.     TextPart text;
  76.     AsciiPart ascii;
  77. } AsciiRec;
  78. /************************************************************
  79.  *
  80.  * Ascii String Emulation widget.
  81.  *
  82.  ************************************************************/ 
  83. #ifdef ASCII_STRING
  84. typedef struct {int empty;} AsciiStringClassPart;
  85. typedef struct _AsciiStringClassRec {
  86.     CoreClassPart core_class;
  87.     SimpleClassPart simple_class;
  88.     TextClassPart text_class;
  89.     AsciiClassPart ascii_class;
  90.     AsciiStringClassPart string_class;
  91. } AsciiStringClassRec;
  92. extern AsciiStringClassRec asciiStringClassRec;
  93. typedef struct { char foo; /* keep compiler happy. */ } AsciiStringPart;
  94. typedef struct _AsciiStringRec {
  95.     CorePart core;
  96.     SimplePart simple;
  97.     TextPart text;
  98.     AsciiPart           ascii;
  99.     AsciiStringPart     ascii_str;
  100. } AsciiStringRec;
  101. #endif /* ASCII_STRING */
  102. #ifdef ASCII_DISK
  103. /************************************************************
  104.  *
  105.  * Ascii Disk Emulation widget.
  106.  *
  107.  ************************************************************/ 
  108. typedef struct {int empty;} AsciiDiskClassPart;
  109. typedef struct _AsciiDiskClassRec {
  110.     CoreClassPart core_class;
  111.     SimpleClassPart simple_class;
  112.     TextClassPart text_class;
  113.     AsciiClassPart ascii_class;
  114.     AsciiDiskClassPart disk_class;
  115. } AsciiDiskClassRec;
  116. extern AsciiDiskClassRec asciiDiskClassRec;
  117. typedef struct { char foo; /* keep compiler happy. */ } AsciiDiskPart;
  118. typedef struct _AsciiDiskRec {
  119.     CorePart core;
  120.     SimplePart simple;
  121.     TextPart text;
  122.     AsciiPart           ascii;
  123.     AsciiDiskPart       ascii_disk;
  124. } AsciiDiskRec;
  125. #endif /* ASCII_DISK */
  126. #endif /* _AsciiTextP_h */