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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.  * $XConsortium: SmeBSBP.h,v 1.8 94/04/17 21:44:11 rws Exp $
  3.  *
  4. Copyright (c) 1989, 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:  Chris D. Peterson, MIT X Consortium
  24.  */
  25. /* 
  26.  * SmeP.h - Private definitions for Sme object
  27.  * 
  28.  */
  29. #ifndef _XawSmeBSBP_h
  30. #define _XawSmeBSBP_h
  31. /***********************************************************************
  32.  *
  33.  * Sme Object Private Data
  34.  *
  35.  ***********************************************************************/
  36. #include <X11/Xaw3d/SmeThreeDP.h>
  37. #include <X11/Xaw3d/SmeBSB.h>
  38. /************************************************************
  39.  *
  40.  * New fields for the Sme Object class record.
  41.  *
  42.  ************************************************************/
  43. typedef struct _SmeBSBClassPart {
  44.   XtPointer extension;
  45. } SmeBSBClassPart;
  46. /* Full class record declaration */
  47. typedef struct _SmeBSBClassRec {
  48.     RectObjClassPart rect_class;
  49.     SmeClassPart sme_class;
  50.     SmeThreeDClassPart sme_threeD_class;
  51.     SmeBSBClassPart sme_bsb_class;
  52. } SmeBSBClassRec;
  53. extern SmeBSBClassRec smeBSBClassRec;
  54. /* New fields for the Sme Object record */
  55. typedef struct {
  56.     /* resources */
  57.     String label; /* The entry label. */
  58.     int vert_space; /* extra vert space to leave, as a percentage
  59.    of the font height of the label. */
  60.     Pixmap left_bitmap, right_bitmap; /* bitmaps to show. */
  61.     Dimension left_margin, right_margin; /* left and right margins. */
  62.     Pixel foreground; /* foreground color. */
  63.     XFontStruct * font; /* The font to show label in. */
  64.     XFontSet fontset; /* or fontset */
  65.     XtJustify justify; /* Justification for the label. */
  66. /* private resources. */
  67.     Boolean set_values_area_cleared; /* Remember if we need to unhighlight. */
  68.     GC norm_gc; /* noral color gc. */
  69.     GC rev_gc; /* reverse color gc. */
  70.     GC norm_gray_gc; /* Normal color (grayed out) gc. */
  71.     GC invert_gc; /* gc for flipping colors. */
  72.     Dimension left_bitmap_width; /* size of each bitmap. */
  73.     Dimension left_bitmap_height;
  74.     Dimension right_bitmap_width;
  75.     Dimension right_bitmap_height;
  76. } SmeBSBPart;
  77. /****************************************************************
  78.  *
  79.  * Full instance record declaration
  80.  *
  81.  ****************************************************************/
  82. typedef struct _SmeBSBRec {
  83.     ObjectPart object;
  84.     RectObjPart rectangle;
  85.     SmePart sme;
  86.     SmeThreeDPart sme_threeD;
  87.     SmeBSBPart sme_bsb;
  88. } SmeBSBRec;
  89. /************************************************************
  90.  *
  91.  * Private declarations.
  92.  *
  93.  ************************************************************/
  94. #endif /* _XawSmeBSBP_h */