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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.  * $XConsortium: SmeBSB.h,v 1.7 94/04/17 20:12:49 kaleb 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. /*
  24.  * SmeBSB.h - Public Header file for SmeBSB object.
  25.  *
  26.  * This is the public header file for the Athena BSB Sme object.
  27.  * It is intended to be used with the simple menu widget.  This object
  28.  * provides bitmap - string - bitmap style entries.
  29.  *
  30.  * Date:    April 3, 1989
  31.  *
  32.  * By:      Chris D. Peterson
  33.  *          MIT X Consortium 
  34.  *          kit@expo.lcs.mit.edu
  35.  */
  36. #ifndef _SmeBSB_h
  37. #define _SmeBSB_h
  38. #include <X11/Xmu/Converters.h>
  39. #include <X11/Xaw3d/Sme.h>
  40. /****************************************************************
  41.  *
  42.  * SmeBSB object
  43.  *
  44.  ****************************************************************/
  45. /* BSB Menu Entry Resources:
  46.  Name      Class RepType Default Value
  47.  ----      ----- ------- -------------
  48.  callback            Callback           Callback        NULL
  49.  destroyCallback     Callback Pointer NULL
  50.  font                Font               XFontStruct *   XtDefaultFont
  51.  foreground          Foreground         Pixel           XtDefaultForeground
  52.  height      Height Dimension 0
  53.  label               Label              String          Name of entry
  54.  leftBitmap          LeftBitmap         Pixmap          None
  55.  leftMargin          HorizontalMargins  Dimension       4
  56.  rightBitmap         RightBitmap        Pixmap          None
  57.  rightMargin         HorizontalMargins  Dimension       4
  58.  sensitive      Sensitive Boolean True
  59.  vertSpace           VertSpace          int             25
  60.  width      Width Dimension 0
  61.  x      Position Position 0n
  62.  y      Position Position 0
  63. */
  64. typedef struct _SmeBSBClassRec    *SmeBSBObjectClass;
  65. typedef struct _SmeBSBRec         *SmeBSBObject;
  66. extern WidgetClass smeBSBObjectClass;
  67. #define XtNleftBitmap "leftBitmap"
  68. #define XtNleftMargin "leftMargin"
  69. #define XtNrightBitmap "rightBitmap"
  70. #define XtNrightMargin "rightMargin"
  71. #define XtNvertSpace   "vertSpace"
  72. #ifndef XtNfontSet
  73. #define XtNfontSet "fontSet"
  74. #endif
  75. #ifndef XtCFontSet
  76. #define XtCFontSet "FontSet"
  77. #endif
  78. #define XtCLeftBitmap "LeftBitmap"
  79. #define XtCHorizontalMargins "HorizontalMargins"
  80. #define XtCRightBitmap "RightBitmap"
  81. #define XtCVertSpace   "VertSpace"
  82. #endif /* _SmeBSB_h */