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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.  * $Xorg: MenuButton.h,v 1.4 2001/02/09 02:03:44 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/MenuButton.h,v 1.5 2001/01/17 19:42:27 dawes Exp $ */
  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/Xaw/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.  displayList      DisplayList XawDisplayList* NULL
  54.  font      Font XFontStruct* XtDefaultFont
  55.  foreground      Foreground Pixel XtDefaultForeground
  56.  height      Height Dimension text height
  57.  highlightThickness  Thickness Dimension 2
  58.  insensitiveBorder   Insensitive Pixmap Gray
  59.  internalHeight      Height Dimension 2
  60.  internalWidth      Width Dimension 4
  61.  justify      Justify XtJustify XtJustifyCenter
  62.  label      Label String NULL
  63.  mappedWhenManaged   MappedWhenManaged Boolean True
  64.  menuName            MenuName           String          "menu"
  65.  resize      Resize Boolean True
  66.  sensitive      Sensitive Boolean True
  67.  width      Width Dimension text width
  68.  x      Position Position 0
  69.  y      Position Position 0
  70. */
  71. #define XtNmenuName "menuName"
  72. #define XtCMenuName "MenuName"
  73. extern WidgetClass     menuButtonWidgetClass;
  74. typedef struct _MenuButtonClassRec   *MenuButtonWidgetClass;
  75. typedef struct _MenuButtonRec        *MenuButtonWidget;
  76. #endif /* _XawMenuButton_h */