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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.  * $XConsortium: SimpleMenP.h,v 1.14 94/04/17 20:12:44 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.  * 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/Xaw3d/SimpleMenu.h>
  36. #include <X11/Xaw3d/SmeP.h>
  37. #include <X11/ShellP.h>
  38. typedef struct {
  39.     XtPointer extension; /* For future needs. */
  40. } SimpleMenuClassPart;
  41. typedef struct _SimpleMenuClassRec {
  42.   CoreClassPart           core_class;
  43.   CompositeClassPart      composite_class;
  44.   ShellClassPart          shell_class;
  45.   OverrideShellClassPart  override_shell_class;
  46.   SimpleMenuClassPart   simpleMenu_class;
  47. } SimpleMenuClassRec;
  48. extern SimpleMenuClassRec simpleMenuClassRec;
  49. typedef struct _SimpleMenuPart {
  50.   /* resources */
  51.   String       label_string; /* The string for the label or NULL. */
  52.   SmeObject   label; /* If label_string is non-NULL then this is
  53.    the label widget. */
  54.   WidgetClass  label_class; /* Widget Class of the menu label object. */
  55.   Dimension    top_margin; /* Top and bottom margins. */
  56.   Dimension    bottom_margin;
  57.   Dimension    row_height; /* height of each row (menu entry) */
  58.   Cursor       cursor; /* The menu's cursor. */
  59.   SmeObject popup_entry; /* The entry to position the cursor on for
  60.    when using XawPositionSimpleMenu. */
  61.   Boolean      menu_on_screen; /* Force the menus to be fully on the screen.*/
  62.   int          backing_store; /* What type of backing store to use. */
  63.   /* private state */
  64.   Boolean recursive_set_values; /* contain a possible infinite loop. */
  65.   Boolean menu_width; /* If true then force width to remain 
  66.    core.width */
  67.   Boolean menu_height; /* Just like menu_width, but for height. */
  68.   SmeObject entry_set; /* The entry that is currently set or
  69.    highlighted. */
  70. } SimpleMenuPart;
  71. typedef struct _SimpleMenuRec {
  72.   CorePart core;
  73.   CompositePart  composite;
  74.   ShellPart          shell;
  75.   OverrideShellPart     override;
  76.   SimpleMenuPart simple_menu;
  77. } SimpleMenuRec;
  78. #endif /* _SimpleMenuP_h */