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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2. * $XConsortium: AsciiSrcP.h,v 1.10 94/04/17 20:11:49 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.  * 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. /* 
  54.  * TextSrcP.h - Private definitions for AsciiSrc object
  55.  * 
  56.  */
  57. #ifndef _XawAsciiSrcP_h
  58. #define _XawAsciiSrcP_h
  59. #include <X11/Xaw3d/TextSrcP.h>
  60. #include <X11/Xaw3d/AsciiSrc.h>
  61. /************************************************************
  62.  *
  63.  * Private declarations.
  64.  *
  65.  ************************************************************/
  66. #ifdef L_tmpnam
  67. #define TMPSIZ L_tmpnam
  68. #else
  69. #ifdef PATH_MAX
  70. #define TMPSIZ PATH_MAX
  71. #else
  72. #define TMPSIZ 1024 /* bytes to allocate for tmpnam */
  73. #endif
  74. #endif
  75. #define MAGIC_VALUE ((XawTextPosition) -1) /* Magic value. */
  76. #define streq(a, b)        ( strcmp((a), (b)) == 0 )
  77. typedef struct _Piece { /* Piece of the text file of BUFSIZ allocated 
  78.    characters. */
  79.   char * text; /* The text in this buffer. */
  80.   XawTextPosition used; /* The number of characters of this buffer 
  81.    that have been used. */
  82.   struct _Piece *prev, *next; /* linked list pointers. */
  83. } Piece;
  84. /************************************************************
  85.  *
  86.  * New fields for the AsciiSrc object class record.
  87.  *
  88.  ************************************************************/
  89. typedef struct _AsciiSrcClassPart { char foo; } AsciiSrcClassPart;
  90. /* Full class record declaration */
  91. typedef struct _AsciiSrcClassRec {
  92.     ObjectClassPart     object_class;
  93.     TextSrcClassPart text_src_class;
  94.     AsciiSrcClassPart ascii_src_class;
  95. } AsciiSrcClassRec;
  96. extern AsciiSrcClassRec asciiSrcClassRec;
  97. /* New fields for the AsciiSrc object record */
  98. typedef struct _AsciiSrcPart {
  99.   /* Resources. */
  100.   char       *string; /* either the string, or the
  101.    file name, depending upon the type. */
  102.   XawAsciiType type; /* either string or disk. */
  103.   XawTextPosition piece_size; /* Size of text buffer for each piece. */
  104.   Boolean data_compression; /* compress to minimum memory automatically
  105.    on save? */
  106.   XtCallbackList callback; /* A callback list to call when the source is
  107.    changed. */
  108.   Boolean use_string_in_place; /* Use the string passed in place. */
  109.   int     ascii_length; /* length field for ascii string emulation. */
  110. #ifdef ASCII_DISK
  111.   String filename; /* name of file for Compatability. */
  112. #endif /* ASCII_DISK */
  113. /* Private data. */
  114.   Boolean is_tempfile;   /* Is this a temporary file? */
  115.   Boolean       changes;   /* Has this file been edited? */
  116.   Boolean       allocated_string; /* Have I allocated the
  117.      string in ascii_src->string? */
  118.   XawTextPosition length;  /* length of file */
  119.   Piece * first_piece; /* first piece of the text. */
  120. } AsciiSrcPart;
  121. /****************************************************************
  122.  *
  123.  * Full instance record declaration
  124.  *
  125.  ****************************************************************/
  126. typedef struct _AsciiSrcRec {
  127.   ObjectPart    object;
  128.   TextSrcPart text_src;
  129.   AsciiSrcPart ascii_src;
  130. } AsciiSrcRec;
  131. #endif /* _XawAsciiSrcP_h */