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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.  * $XConsortium: MenuButton.h,v 1.9 94/04/17 20:12:21 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.  *
  25.  * MenuButton Widget
  26.  *
  27.  ***********************************************************************/
  28. /*
  29.  * MenuButton.h - Public Header file for MenuButton widget.
  30.  *
  31.  * This is the public header file for the Athena MenuButton widget.
  32.  * It is intended to provide an easy method of activating pulldown menus.
  33.  *
  34.  * Date:    May 2, 1989
  35.  *
  36.  * By:      Chris D. Peterson
  37.  *          MIT X Consortium 
  38.  *          kit@expo.lcs.mit.edu
  39.  */
  40. #ifndef _XawMenuButton_h
  41. #define _XawMenuButton_h
  42. #include <X11/Xaw3d/Command.h>
  43. /* Resources:
  44.  Name      Class RepType Default Value
  45.  ----      ----- ------- -------------
  46.  background      Background Pixel XtDefaultBackground
  47.  bitmap      Pixmap Pixmap None
  48.  border      BorderColor Pixel XtDefaultForeground
  49.  borderWidth      BorderWidth Dimension 1
  50.  callback      Callback Pointer NULL
  51.  cursor      Cursor Cursor None
  52.  destroyCallback     Callback Pointer NULL
  53.  font      Font XFontStruct* XtDefaultFont
  54.  foreground      Foreground Pixel XtDefaultForeground
  55.  height      Height Dimension text height
  56.  highlightThickness  Thickness Dimension 2
  57.  insensitiveBorder   Insensitive Pixmap Gray
  58.  internalHeight      Height Dimension 2
  59.  internalWidth      Width Dimension 4
  60.  justify      Justify XtJustify XtJustifyCenter
  61.  label      Label String NULL
  62.  mappedWhenManaged   MappedWhenManaged Boolean True
  63.  menuName            MenuName           String          "menu"
  64.  resize      Resize Boolean True
  65.  sensitive      Sensitive Boolean True
  66.  width      Width Dimension text width
  67.  x      Position Position 0
  68.  y      Position Position 0
  69. */
  70. #define XtNmenuName "menuName"
  71. #define XtCMenuName "MenuName"
  72. extern WidgetClass     menuButtonWidgetClass;
  73. typedef struct _MenuButtonClassRec   *MenuButtonWidgetClass;
  74. typedef struct _MenuButtonRec        *MenuButtonWidget;
  75. #endif /* _XawMenuButton_h */