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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $XConsortium: MultiSrc.h,v 1.2 94/04/17 20:12:26 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 makes 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 DISCLAIMS 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) 1989, 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. */
  45. /*
  46.  * This file was modified from AsciiSrc.h.
  47.  *
  48.  * By Li Yuhong, Sept. 18, 1990
  49.  */
  50. #ifndef _XawMultiSrc_h
  51. #define _XawMultiSrc_h
  52. #include <X11/Xaw3d/TextSrc.h>
  53. /*Xfuncproto.h included by Intrinsic.h*/
  54. /* Resources:
  55.  Name      Class RepType Default Value
  56.  ----      ----- ------- -------------
  57.  callback      Callback Callback (none)
  58.  dataCompression     DataCompression Boolean True
  59.  length      Length int (internal)
  60.  pieceSize      PieceSize int BUFSIZ
  61.  string      String String NULL
  62.  type      Type XawAsciiType XawAsciiString
  63.  useStringInPlace    UseStringInPlace Boolean False
  64. */
  65.  
  66. /* Class record constants */
  67. extern WidgetClass multiSrcObjectClass;
  68. typedef struct _MultiSrcClassRec *MultiSrcObjectClass;
  69. typedef struct _MultiSrcRec      *MultiSrcObject;
  70. /*
  71.  * Just to make people's lives a bit easier.
  72.  */
  73. #define MultiSourceObjectClass MultiSrcObjectClass
  74. #define MultiSourceObject      MultiSrcObject
  75. /*
  76.  * Resource Definitions.
  77.  */
  78. #define XtCDataCompression "DataCompression"
  79. #define XtCPieceSize "PieceSize"
  80. #define XtCType "Type"
  81. #define XtCUseStringInPlace "UseStringInPlace"
  82. #define XtNdataCompression "dataCompression"
  83. #define XtNpieceSize "pieceSize"
  84. #define XtNtype "type"
  85. #define XtNuseStringInPlace "useStringInPlace"
  86. #define XtRMultiType "MultiType"
  87. #define XtEstring "string"
  88. #define XtEfile "file"
  89. /************************************************************
  90.  *
  91.  * THESE ROUTINES ARE NOT PUBLIC: Source should call
  92.  *
  93.  * the AsciiSrc API which currently forwards requests here.
  94.  *
  95.  * future versions (like theres going to be an R7 Xaw!) may
  96.  *
  97.  * eliminate this file or at least these functions entirely.
  98.  *
  99.  ************************************************************/
  100. _XFUNCPROTOBEGIN
  101. extern void XawMultiSourceFreeString(
  102. #if NeedFunctionPrototypes
  103.     Widget /* w */
  104. #endif
  105. );
  106. extern Boolean _XawMultiSave(
  107. #if NeedFunctionPrototypes
  108.     Widget /* w */
  109. #endif
  110. );
  111. extern Boolean _XawMultiSaveAsFile(
  112. #if NeedFunctionPrototypes
  113.     Widget /* w */,
  114.     _Xconst char* /* name */
  115. #endif 
  116. );
  117. _XFUNCPROTOEND
  118. #endif /* _XawMultiSrc_h  - Don't add anything after this line. */