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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.  * $Xorg: SimpleMenu.h,v 1.4 2001/02/09 02:03:45 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.  * Author:  Chris D. Peterson, MIT X Consortium
  23.  */
  24. /* $XFree86: xc/lib/Xaw/SimpleMenu.h,v 1.7 2001/01/17 19:42:30 dawes Exp $ */
  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.  * SimpleMenu widget
  47.  */
  48. /* Resources:
  49.  Name      Class RepType Default Value
  50.  ----      ----- ------- -------------
  51.  background      Background Pixel XtDefaultBackground
  52.  backgroundPixmap    BackgroundPixmap Pixmap          None
  53.  borderColor      BorderColor Pixel XtDefaultForeground
  54.  borderPixmap      BorderPixmap Pixmap None
  55.  borderWidth      BorderWidth Dimension 1
  56.  bottomMargin        VerticalMargins    Dimension       VerticalSpace
  57.  columnWidth         ColumnWidth        Dimension       Width of widest text
  58.  cursor              Cursor             Cursor          None
  59.  destroyCallback     Callback Pointer NULL
  60.  displayList      DisplayList XawDisplayList* NULL
  61.  height      Height Dimension 0
  62.  label               Label              String          NULL (No label)
  63.  labelClass          LabelClass         Pointer         smeBSBObjectClass
  64.  leftMargin      HorizontalMargins Dimension 0
  65.  mappedWhenManaged   MappedWhenManaged Boolean True
  66.  rightMargin      HorizontalMargins Dimension 0
  67.  rowHeight           RowHeight          Dimension       Height of Font
  68.  sensitive      Sensitive Boolean True
  69.  topMargin           VerticalMargins    Dimension       VerticalSpace
  70.  width      Width Dimension 0
  71.  x      Position Position 0
  72.  y      Position Position 0
  73. */
  74. typedef struct _SimpleMenuClassRec* SimpleMenuWidgetClass;
  75. typedef struct _SimpleMenuRec* SimpleMenuWidget;
  76. extern WidgetClass simpleMenuWidgetClass;
  77. #define XtNcursor "cursor"
  78. #define XtNbottomMargin "bottomMargin"
  79. #define XtNcolumnWidth "columnWidth"
  80. #define XtNlabelClass "labelClass"
  81. #define XtNmenuOnScreen "menuOnScreen"
  82. #define XtNpopupOnEntry "popupOnEntry"
  83. #define XtNrowHeight "rowHeight"
  84. #define XtNtopMargin "topMargin"
  85. #define XtNleftMargin "leftMargin"
  86. #define XtNrightMargin "rightMargin"
  87. #define XtCColumnWidth "ColumnWidth"
  88. #define XtCLabelClass "LabelClass"
  89. #define XtCMenuOnScreen "MenuOnScreen"
  90. #define XtCPopupOnEntry "PopupOnEntry"
  91. #define XtCRowHeight "RowHeight"
  92. #define XtCVerticalMargins "VerticalMargins"
  93. #ifndef OLDXAW
  94. #define XtCHorizontalMargins "HorizontalMargins"
  95. #define XawNdisplayList "displayList"
  96. #define XawCDisplayList "DisplayList"
  97. #define XawRDisplayList "XawDisplayList"
  98. #endif
  99. /*
  100.  * Public Functions
  101.  */
  102. _XFUNCPROTOBEGIN
  103. /*
  104.  * Function:
  105.  * XawSimpleMenuAddGlobalActions
  106.  *
  107.  * Parameters:
  108.  * app_con - appcontext
  109.  *
  110.  * Description:
  111.  * Adds the global actions to the simple menu widget.
  112.  */
  113. void XawSimpleMenuAddGlobalActions
  114. (
  115.  XtAppContext app_con
  116.  );
  117. /*
  118.  * Function:
  119.  * XawSimpleMenuGetActiveEntry
  120.  *
  121.  * Parameters:
  122.  * w - smw widget
  123.  *
  124.  * Description:
  125.  * Gets the currently active (set) entry.
  126.  *
  127.  * Returns:
  128.  * The currently set entry or NULL if none is set
  129.  */
  130. Widget XawSimpleMenuGetActiveEntry
  131. (
  132.  Widget w
  133.  );
  134. /*
  135.  * Function:
  136.  * XawSimpleMenuClearActiveEntry
  137.  *
  138.  * Parameters:
  139.  * w - smw widget
  140.  *
  141.  * Description:
  142.  * Unsets the currently active (set) entry.
  143.  */
  144. void XawSimpleMenuClearActiveEntry
  145. (
  146.  Widget w
  147. );
  148. _XFUNCPROTOEND
  149. #endif /* _SimpleMenu_h */