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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.  * $XConsortium: PortholeP.h,v 1.3 94/04/17 20:12:36 kaleb Exp $
  3.  *
  4. Copyright (c) 1990, 1994  X Consortium
  5. Permission is hereby granted, free of charge, to any person obtaining a copy
  6. of this software and associated documentation files (the "Software"), to deal
  7. in the Software without restriction, including without limitation the rights
  8. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  9. copies of the Software, and to permit persons to whom the Software is
  10. furnished to do so, subject to the following conditions:
  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. X CONSORTIUM 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 X Consortium 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 X Consortium.
  22.  *
  23.  * Author:  Jim Fulton, MIT X Consortium
  24.  */
  25. #ifndef _XawPortholeP_h
  26. #define _XawPortholeP_h
  27. #include <X11/Xaw3d/Porthole.h>
  28. typedef struct { /* new fields in widget class */
  29.     int dummy;
  30. } PortholeClassPart;
  31. typedef struct _PortholeClassRec { /* Porthole widget class */
  32.     CoreClassPart core_class;
  33.     CompositeClassPart composite_class;
  34.     PortholeClassPart porthole_class;
  35. } PortholeClassRec;
  36. typedef struct { /* new fields in widget */
  37.     /* resources... */
  38.     XtCallbackList report_callbacks; /* callback/Callback */
  39.     /* private data... */
  40. } PortholePart;
  41. typedef struct _PortholeRec {
  42.     CorePart core;
  43.     CompositePart composite;
  44.     PortholePart porthole;
  45. } PortholeRec;
  46. /*
  47.  * external declarations
  48.  */
  49. extern PortholeClassRec portholeClassRec;
  50. #endif /* _XawPortholeP_h */