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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.  * $Xorg: SmeP.h,v 1.4 2001/02/09 02:03:46 xorgcvs Exp $
  3.  *
  4. Copyright 1989, 1994, 1998  The Open Group
  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.
  10. The above copyright notice and this permission notice shall be included in
  11. all copies or substantial portions of the Software.
  12. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  13. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  14. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
  15. OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  16. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  17. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  18. Except as contained in this notice, the name of The Open Group shall not be
  19. used in advertising or otherwise to promote the sale, use or other dealings
  20. in this Software without prior written authorization from The Open Group.
  21.  */
  22. /* $XFree86: xc/lib/Xaw/SmeP.h,v 1.8 2001/12/14 19:54:43 dawes Exp $ */
  23. /*
  24.  * This is the private header file for the Athena Sme object.
  25.  * This object is intended to be used with the simple menu widget.  
  26.  *
  27.  * Date:    April 3, 1989
  28.  *
  29.  * By:      Chris D. Peterson
  30.  *          MIT X Consortium 
  31.  *          kit@expo.lcs.mit.edu
  32.  */
  33. #ifndef _XawSmeP_h
  34. #define _XawSmeP_h
  35. /*
  36.  * Sme Widget Private Data
  37.  */
  38. #include <X11/Xfuncproto.h>
  39. #include <X11/Xaw/Sme.h>
  40. _XFUNCPROTOBEGIN
  41. /* New fields for the Sme widget class */
  42. typedef struct _SmeClassPart {
  43.     XtWidgetProc highlight;
  44.     XtWidgetProc unhighlight;
  45.     XtWidgetProc notify;
  46.     XtPointer  extension;
  47. } SmeClassPart;
  48. /* Full class record */
  49. typedef struct _SmeClassRec {
  50.     RectObjClassPart    rect_class;
  51.     SmeClassPart sme_class;
  52. } SmeClassRec;
  53. extern SmeClassRec smeClassRec;
  54. /* New fields for the Sme widget */
  55. typedef struct {
  56.     /* resources */
  57.     XtCallbackList callbacks;
  58.     Boolean international;
  59. #ifndef OLDXAW
  60.     XtPointer pad[4]; /* for future use and keep binary compatability */
  61. #endif
  62. } SmePart;
  63. /* Full instance record */
  64. typedef struct _SmeRec {
  65.     ObjectPart object;
  66.     RectObjPart rectangle;
  67.     SmePart sme;
  68. } SmeRec;
  69. #define XtInheritHighlight ((XtWidgetProc)_XtInherit)
  70. #define XtInheritUnhighlight XtInheritHighlight
  71. #define XtInheritNotify      XtInheritHighlight
  72. _XFUNCPROTOEND
  73. #endif /* _XawSmeP_h */