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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2. * $Xorg: AsciiSrcP.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/AsciiSrcP.h,v 1.8 2001/01/17 19:42:25 dawes Exp $ */
  40. /*
  41.  * AsciiSrcP.h - Private Header for Ascii Text Source.
  42.  *
  43.  * This is the private header file for the Ascii Text Source.
  44.  * It is intended to be used with the Text widget, the simplest way to use
  45.  * this text source is to use the AsciiText Object.
  46.  *
  47.  * Date:    June 29, 1989
  48.  *
  49.  * By:      Chris D. Peterson
  50.  *          MIT X Consortium 
  51.  *          kit@expo.lcs.mit.edu
  52.  */
  53. #ifndef _XawAsciiSrcP_h
  54. #define _XawAsciiSrcP_h
  55. #include <X11/Xaw/TextSrcP.h>
  56. #include <X11/Xaw/AsciiSrc.h>
  57. #ifdef L_tmpnam
  58. #define TMPSIZ L_tmpnam
  59. #else
  60. #ifdef PATH_MAX
  61. #define TMPSIZ PATH_MAX
  62. #else
  63. #define TMPSIZ 1024 /* bytes to allocate for tmpnam */
  64. #endif
  65. #endif
  66. typedef struct _Piece { /* Piece of the text file of BUFSIZ allocated 
  67.    characters */
  68.     char *text; /* The text in this buffer */
  69.     XawTextPosition used; /* The number of characters of this buffer 
  70.    that have been used */
  71.     struct _Piece *prev, *next; /* linked list pointers */
  72. } Piece;
  73. typedef struct _AsciiSrcClassPart {
  74.     XtPointer extension;
  75. } AsciiSrcClassPart;
  76. /* Full class record */
  77. typedef struct _AsciiSrcClassRec {
  78.     ObjectClassPart     object_class;
  79.     TextSrcClassPart text_src_class;
  80.     AsciiSrcClassPart ascii_src_class;
  81. } AsciiSrcClassRec;
  82. extern AsciiSrcClassRec asciiSrcClassRec;
  83. /* New fields for the AsciiSrc object */
  84. typedef struct _AsciiSrcPart {
  85.     /* resources */
  86.     char *string; /* either the string, or the
  87.    file name, depending upon the type */
  88.     XawAsciiType type; /* either string or disk */
  89.     XawTextPosition piece_size; /* Size of text buffer for each piece */
  90.     Boolean data_compression; /* compress to minimum memory automatically
  91.    on save? */
  92. #ifdef OLDXAW
  93.     XtCallbackList callback;
  94. #endif
  95.     Boolean use_string_in_place;/* Use the string passed in place */
  96.     int ascii_length; /* length field for ascii string emulation */
  97. #ifdef ASCII_DISK
  98.     String filename; /* name of file for Compatability */
  99. #endif /* ASCII_DISK */
  100.     /* private */
  101.     Boolean is_tempfile; /* Is this a temporary file? */
  102. #ifdef OLDXAW
  103.     Boolean changes;
  104. #endif
  105.     Boolean allocated_string; /* Have I allocated the
  106.    string in ascii_src->string? */
  107.     XawTextPosition length;  /* length of file */
  108.     Piece *first_piece; /* first piece of the text */
  109. #ifndef OLDXAW
  110.     XtPointer pad[4]; /* for future use and keep binary compatability */
  111. #endif
  112. } AsciiSrcPart;
  113. /* instance record */
  114. typedef struct _AsciiSrcRec {
  115.     ObjectPart    object;
  116.     TextSrcPart   text_src;
  117.     AsciiSrcPart  ascii_src;
  118. } AsciiSrcRec;
  119. #endif /* _XawAsciiSrcP_h */