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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.  * $Xorg: SmeBSBP.h,v 1.4 2001/02/09 02:03:45 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.  * Author:  Chris D. Peterson, MIT X Consortium
  23.  */
  24. /* $XFree86: xc/lib/Xaw/SmeBSBP.h,v 1.8 2001/01/17 19:42:31 dawes Exp $ */
  25. #ifndef _XawSmeBSBP_h
  26. #define _XawSmeBSBP_h
  27. /*
  28.  * Sme Object Private Data
  29.  */
  30. #include <X11/Xaw/SmeP.h>
  31. #include <X11/Xaw/SmeBSB.h>
  32. typedef struct _SmeBSBClassPart {
  33.     XtPointer extension;
  34. } SmeBSBClassPart;
  35. /* Full class record declaration */
  36. typedef struct _SmeBSBClassRec {
  37.     RectObjClassPart rect_class;
  38.     SmeClassPart sme_class;
  39.     SmeBSBClassPart sme_bsb_class;
  40. } SmeBSBClassRec;
  41. extern SmeBSBClassRec smeBSBClassRec;
  42. /* New fields for the Sme Object record */
  43. typedef struct {
  44.     /* resources */
  45.     String label; /* The entry label */
  46.     int vert_space; /* extra vert space to leave, as a
  47.    percentage of the font height of
  48.    the label */
  49.     Pixmap left_bitmap, right_bitmap; /* bitmaps to show */
  50.     Dimension left_margin, right_margin;/* left and right margins */
  51.     Pixel foreground; /* foreground color */
  52.     XFontStruct *font; /* The font to show label in */
  53.     XFontSet fontset; /* or fontset */
  54.     XtJustify justify; /* Justification for the label. */
  55.     /* private */
  56.     Boolean set_values_area_cleared; /* do we need to unhighlight? */
  57.     GC norm_gc; /* noral color gc */
  58.     GC rev_gc; /* reverse color gc */
  59.     GC norm_gray_gc; /* Normal color (grayed out) gc */
  60.     GC invert_gc; /* gc for flipping colors */
  61.     Dimension left_bitmap_width; /* size of each bitmap */
  62.     Dimension left_bitmap_height;
  63.     Dimension right_bitmap_width;
  64.     Dimension right_bitmap_height;
  65. #ifndef OLDXAW
  66.     /* new resources */
  67.     String menu_name; /* name of nested sub menu or NULL */
  68.     XtPointer pad[4]; /* for future use and keep binary compatability */
  69. #endif
  70. } SmeBSBPart;
  71. /*
  72.  * Full instance record declaration
  73.  */
  74. typedef struct _SmeBSBRec {
  75.     ObjectPart object;
  76.     RectObjPart rectangle;
  77.     SmePart sme;
  78.     SmeBSBPart sme_bsb;
  79. } SmeBSBRec;
  80. #endif /* _XawSmeBSBP_h */