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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.  * $Xorg: SimpleMenP.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.  */
  23. /* $XFree86: xc/lib/Xaw/SimpleMenP.h,v 1.12 2001/01/17 19:42:30 dawes Exp $ */
  24. /*
  25.  * SimpleMenuP.h - Private Header file for SimpleMenu widget.
  26.  *
  27.  * Date:    April 3, 1989
  28.  *
  29.  * By:      Chris D. Peterson
  30.  *          MIT X Consortium
  31.  *          kit@expo.lcs.mit.edu
  32.  */
  33. #ifndef _SimpleMenuP_h
  34. #define _SimpleMenuP_h
  35. #include <X11/Xaw/SimpleMenu.h>
  36. #include <X11/Xaw/SmeP.h>
  37. #include <X11/ShellP.h>
  38. #include <X11/Xaw/XawInit.h>
  39. typedef struct {
  40.     XtPointer extension; /* For future needs */
  41. } SimpleMenuClassPart;
  42. typedef struct _SimpleMenuClassRec {
  43.     CoreClassPart     core_class;
  44.     CompositeClassPart     composite_class;
  45.     ShellClassPart     shell_class;
  46.     OverrideShellClassPart  override_shell_class;
  47.     SimpleMenuClassPart     simpleMenu_class;
  48. } SimpleMenuClassRec;
  49. extern SimpleMenuClassRec simpleMenuClassRec;
  50. typedef struct _SimpleMenuPart {
  51.   /* resources */
  52.     String label_string; /* The string for the label or NULL */
  53.     SmeObject label; /* If label_string is non-NULL then this is
  54.    the label widget */
  55.     WidgetClass label_class; /* Widget Class of the menu label object */
  56.     Dimension top_margin; /* Top and bottom margins */
  57.     Dimension bottom_margin;
  58.     Dimension row_height; /* height of each row (menu entry) */
  59.     Cursor cursor; /* The menu's cursor */
  60.     SmeObject popup_entry; /* The entry to position the cursor on for
  61.    when using XawPositionSimpleMenu */
  62.     Boolean menu_on_screen; /* Force the menus to be fully on the screen*/
  63.     int backing_store; /* What type of backing store to use */
  64.     /* private */
  65.     Boolean recursive_set_values; /* contain a possible infinite loop */
  66.     Boolean menu_width; /* If true then force width to remain 
  67.    core.width */
  68.     Boolean menu_height; /* Just like menu_width, but for height */
  69.     SmeObject entry_set; /* The entry that is currently set or
  70.    highlighted */
  71. #ifndef OLDXAW
  72.     Dimension left_margin;
  73.     Dimension right_margin;
  74.     XawDisplayList *display_list;
  75.     Widget sub_menu;
  76.     unsigned char state;
  77.     XtPointer pad[4]; /* for future use and keep binary compatability */
  78. #endif
  79. } SimpleMenuPart;
  80. typedef struct _SimpleMenuRec {
  81.     CorePart core;
  82.     CompositePart  composite;
  83.     ShellPart shell;
  84.     OverrideShellPart override;
  85.     SimpleMenuPart simple_menu;
  86. } SimpleMenuRec;
  87. #endif /* _SimpleMenuP_h */