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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.  * $XConsortium: SimpleMenu.h,v 1.22 94/04/17 20:12:47 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.  * Author:  Chris D. Peterson, MIT X Consortium
  24.  */
  25. /*
  26.  * SimpleMenu.h - Public Header file for SimpleMenu widget.
  27.  *
  28.  * This is the public header file for the Athena SimpleMenu widget.
  29.  * It is intended to provide one pane pulldown and popup menus within
  30.  * the framework of the X Toolkit.  As the name implies it is a first and
  31.  * by no means complete implementation of menu code. It does not attempt to
  32.  * fill the needs of all applications, but does allow a resource oriented
  33.  * interface to menus.
  34.  *
  35.  * Date:    April 3, 1989
  36.  *
  37.  * By:      Chris D. Peterson
  38.  *          MIT X Consortium 
  39.  *          kit@expo.lcs.mit.edu
  40.  */
  41. #ifndef _SimpleMenu_h
  42. #define _SimpleMenu_h
  43. #include <X11/Shell.h>
  44. #include <X11/Xmu/Converters.h>
  45. /****************************************************************
  46.  *
  47.  * SimpleMenu widget
  48.  *
  49.  ****************************************************************/
  50. /* SimpleMenu Resources:
  51.  Name      Class RepType Default Value
  52.  ----      ----- ------- -------------
  53.  background      Background Pixel XtDefaultBackground
  54.  backgroundPixmap    BackgroundPixmap Pixmap          None
  55.  borderColor      BorderColor Pixel XtDefaultForeground
  56.  borderPixmap      BorderPixmap Pixmap None
  57.  borderWidth      BorderWidth Dimension 1
  58.  bottomMargin        VerticalMargins    Dimension       VerticalSpace
  59.  columnWidth         ColumnWidth        Dimension       Width of widest text
  60.  cursor              Cursor             Cursor          None
  61.  destroyCallback     Callback Pointer NULL
  62.  height      Height Dimension 0
  63.  label               Label              String          NULL (No label)
  64.  labelClass          LabelClass         Pointer         smeBSBObjectClass
  65.  mappedWhenManaged   MappedWhenManaged Boolean True
  66.  rowHeight           RowHeight          Dimension       Height of Font
  67.  sensitive      Sensitive Boolean True
  68.  topMargin           VerticalMargins    Dimension       VerticalSpace
  69.  width      Width Dimension 0
  70.  x      Position Position 0n
  71.  y      Position Position 0
  72. */
  73. typedef struct _SimpleMenuClassRec* SimpleMenuWidgetClass;
  74. typedef struct _SimpleMenuRec* SimpleMenuWidget;
  75. extern WidgetClass simpleMenuWidgetClass;
  76. #define XtNcursor "cursor"
  77. #define XtNbottomMargin "bottomMargin"
  78. #define XtNcolumnWidth "columnWidth"
  79. #define XtNlabelClass "labelClass"
  80. #define XtNmenuOnScreen "menuOnScreen"
  81. #define XtNpopupOnEntry "popupOnEntry"
  82. #define XtNrowHeight "rowHeight"
  83. #define XtNtopMargin "topMargin"
  84. #define XtCColumnWidth "ColumnWidth"
  85. #define XtCLabelClass "LabelClass"
  86. #define XtCMenuOnScreen "MenuOnScreen"
  87. #define XtCPopupOnEntry "PopupOnEntry"
  88. #define XtCRowHeight "RowHeight"
  89. #define XtCVerticalMargins "VerticalMargins"
  90. /************************************************************
  91.  *
  92.  * Public Functions.
  93.  *
  94.  ************************************************************/
  95. _XFUNCPROTOBEGIN
  96. /* Function Name: XawSimpleMenuAddGlobalActions
  97.  * Description: adds the global actions to the simple menu widget.
  98.  * Arguments: app_con - the appcontext.
  99.  * Returns: none.
  100.  */
  101. extern void XawSimpleMenuAddGlobalActions(
  102. #if NeedFunctionPrototypes
  103.     XtAppContext /* app_con */
  104. #endif
  105. );
  106.  
  107. /* Function Name: XawSimpleMenuGetActiveEntry
  108.  * Description: Gets the currently active (set) entry.
  109.  * Arguments: w - the smw widget.
  110.  * Returns: the currently set entry or NULL if none is set.
  111.  */
  112. extern Widget XawSimpleMenuGetActiveEntry(
  113. #if NeedFunctionPrototypes
  114.     Widget /* w */
  115. #endif
  116. );
  117. /* Function Name: XawSimpleMenuClearActiveEntry
  118.  * Description: Unsets the currently active (set) entry.
  119.  * Arguments: w - the smw widget.
  120.  * Returns: none.
  121.  */
  122. extern void XawSimpleMenuClearActiveEntry(
  123. #if NeedFunctionPrototypes
  124.     Widget /* w */
  125. #endif
  126. );
  127. _XFUNCPROTOEND
  128. #endif /* _SimpleMenu_h */