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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $Xorg: MultiSrc.h,v 1.4 2001/02/09 02:03:44 xorgcvs 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 1989, 1991, 1994, 1998  The Open Group
  27. Permission to use, copy, modify, distribute, and sell this software and its
  28. documentation for any purpose is hereby granted without fee, provided that
  29. the above copyright notice appear in all copies and that both that
  30. copyright notice and this permission notice appear in supporting
  31. documentation.
  32. The above copyright notice and this permission notice shall be included in
  33. all copies or substantial portions of the Software.
  34. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  35. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  36. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
  37. OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  38. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  39. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  40. Except as contained in this notice, the name of The Open Group shall not be
  41. used in advertising or otherwise to promote the sale, use or other dealings
  42. in this Software without prior written authorization from The Open Group.
  43. */
  44. /* $XFree86: xc/lib/Xaw/MultiSrc.h,v 1.6 2001/01/17 19:42:28 dawes Exp $ */
  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/Xaw/TextSrc.h>
  53. /* Resources:
  54.  Name      Class RepType Default Value
  55.  ----      ----- ------- -------------
  56.  dataCompression     DataCompression Boolean True
  57.  length      Length int (internal)
  58.  pieceSize      PieceSize int BUFSIZ
  59.  string      String String NULL
  60.  type      Type XawAsciiType XawAsciiString
  61.  useStringInPlace    UseStringInPlace Boolean False
  62. */
  63.  
  64. extern WidgetClass multiSrcObjectClass;
  65. typedef struct _MultiSrcClassRec *MultiSrcObjectClass;
  66. typedef struct _MultiSrcRec      *MultiSrcObject;
  67. #define MultiSourceObjectClass MultiSrcObjectClass
  68. #define MultiSourceObject      MultiSrcObject
  69. #define XtCDataCompression "DataCompression"
  70. #define XtCPieceSize "PieceSize"
  71. #define XtCType "Type"
  72. #define XtCUseStringInPlace "UseStringInPlace"
  73. #define XtNdataCompression "dataCompression"
  74. #define XtNpieceSize "pieceSize"
  75. #define XtNtype "type"
  76. #define XtNuseStringInPlace "useStringInPlace"
  77. #define XtRMultiType "MultiType"
  78. #define XtEstring "string"
  79. #define XtEfile "file"
  80. /************************************************************
  81.  *
  82.  * THESE ROUTINES ARE NOT PUBLIC: Source should call
  83.  *
  84.  * the AsciiSrc API which currently forwards requests here.
  85.  *
  86.  * future versions (like theres going to be an R7 Xaw!) may
  87.  *
  88.  * eliminate this file or at least these functions entirely.
  89.  *
  90.  ************************************************************/
  91. _XFUNCPROTOBEGIN
  92. void XawMultiSourceFreeString
  93. (
  94.  Widget w
  95.  );
  96. Bool _XawMultiSave
  97. (
  98.  Widget w
  99. );
  100. Bool _XawMultiSaveAsFile
  101. (
  102.  Widget w,
  103.  _Xconst char *name
  104.  );
  105. _XFUNCPROTOEND
  106. #endif /* _XawMultiSrc_h  */