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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $XConsortium: MultiSrcP.h,v 1.2 94/04/17 20:12:27 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 DISCLAIM 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, 1991, 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.  * MultiSrcP.h - Private Header for Multi Text Source.
  63.  *
  64.  * This is the private header file for the Multi Text Source.
  65.  * It is intended to be used with the Text widget, the simplest way to use
  66.  * this text source is to use the MultiText Object.
  67.  *
  68.  * Date:    June 29, 1989
  69.  *
  70.  * By:      Chris D. Peterson
  71.  *          MIT X Consortium 
  72.  *          kit@expo.lcs.mit.edu
  73.  */
  74. /* 
  75.  * TextSrcP.h - Private definitions for MultiSrc object
  76.  * 
  77.  */
  78. /*
  79.  * This file was changed from AsciiSrcP.h.
  80.  *
  81.  * By Li Yuhong, Sept. 18, 1990
  82.  */
  83. #ifndef _XawMultiSrcP_h
  84. #define _XawMultiSrcP_h
  85. #include <X11/Xaw3d/TextSrcP.h>
  86. #include <X11/Xaw3d/MultiSrc.h>
  87. /************************************************************
  88.  *
  89.  * Private declarations.
  90.  *
  91.  ************************************************************/
  92. #ifdef L_tmpnam
  93. #define TMPSIZ L_tmpnam
  94. #else
  95. #ifdef PATH_MAX
  96. #define TMPSIZ PATH_MAX
  97. #else
  98. #define TMPSIZ 1024 /* bytes to allocate for tmpnam */
  99. #endif
  100. #endif
  101. #define MAGIC_VALUE ((XawTextPosition) -1) /* Magic value. */
  102. #define streq(a, b)        ( strcmp((a), (b)) == 0 )
  103. typedef struct _MultiPiece { /* Piece of the text file of BUFSIZ allocated 
  104.    characters. */
  105.   wchar_t* text; /* The text in this buffer. */
  106.   XawTextPosition used; /* The number of characters of this buffer 
  107.    that have been used. */
  108.   struct _MultiPiece *prev, *next; /* linked list pointers. */
  109. } MultiPiece;
  110. /************************************************************
  111.  *
  112.  * New fields for the MultiSrc object class record.
  113.  *
  114.  ************************************************************/
  115. typedef struct _MultiSrcClassPart { char foo; } MultiSrcClassPart;
  116. /* Full class record declaration */
  117. typedef struct _MultiSrcClassRec {
  118.     ObjectClassPart     object_class;
  119.     TextSrcClassPart text_src_class;
  120.     MultiSrcClassPart multi_src_class;
  121. } MultiSrcClassRec;
  122. extern MultiSrcClassRec multiSrcClassRec;
  123. /* New fields for the MultiSrc object record */
  124. typedef struct _MultiSrcPart {
  125.   /* Resources. */
  126.   XIC ic; /* for X Input Method. */
  127.   XtPointer string; /* either the string, or the file name, depend-
  128.                                  ing upon the `type'.  ALWAYS IN MB FORMAT. */
  129.   XawAsciiType type; /* either string or disk. */
  130.   XawTextPosition piece_size; /* Size of text buffer for each piece. */
  131.   Boolean data_compression; /* compress to minimum memory automatically
  132.    on save? */
  133.   XtCallbackList callback; /* A callback list to call when the source is
  134.    changed. */
  135.   Boolean use_string_in_place; /* Use the string passed in place. */
  136.   int     multi_length; /* length field for multi string emulation. */
  137. /* Private data. */
  138.   Boolean is_tempfile;   /* Is this a temporary file? */
  139.   Boolean       changes;   /* Has this file been edited? */
  140.   Boolean       allocated_string; /* Have I allocated the
  141.      string in multi_src->string? */
  142.   XawTextPosition length;  /* length of file - IN CHARACTERS, NOT BYTES. */
  143.   MultiPiece * first_piece; /* first piece of the text. */
  144. } MultiSrcPart;
  145. /****************************************************************
  146.  *
  147.  * Full instance record declaration
  148.  *
  149.  ****************************************************************/
  150. typedef struct _MultiSrcRec {
  151.   ObjectPart    object;
  152.   TextSrcPart text_src;
  153.   MultiSrcPart multi_src;
  154. } MultiSrcRec;
  155. #if NeedFunctionPrototypes
  156. extern void _XawMultiSourceFreeString( Widget );
  157. #else
  158. extern void _XawMultiSourceFreeString();
  159. #endif
  160. #endif /* _XawMultiSrcP_h  --- Don't add anything after this line. */