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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $Xorg: MenuButtoP.h,v 1.4 2001/02/09 02:03:44 xorgcvs Exp $ 
  2.  *
  3. Copyright 1989,1998  The Open Group
  4. Permission to use, copy, modify, distribute, and sell this software and its
  5. documentation for any purpose is hereby granted without fee, provided that
  6. the above copyright notice appear in all copies and that both that
  7. copyright notice and this permission notice appear in supporting
  8. documentation.
  9. The above copyright notice and this permission notice shall be included in
  10. all copies or substantial portions of the Software.
  11. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  12. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  13. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
  14. OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  15. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  16. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  17. Except as contained in this notice, the name of The Open Group shall not be
  18. used in advertising or otherwise to promote the sale, use or other dealings
  19. in this Software without prior written authorization from The Open Group.
  20.  */
  21. /* $XFree86: xc/lib/Xaw/MenuButtoP.h,v 1.7 2001/01/17 19:42:27 dawes Exp $ */
  22. /*
  23.  * MenuButtonP.h - Private Header file for MenuButton widget.
  24.  *
  25.  * This is the private header file for the Athena MenuButton widget.
  26.  * It is intended to provide an easy method of activating pulldown menus.
  27.  *
  28.  * Date:    May 2, 1989
  29.  *
  30.  * By:      Chris D. Peterson
  31.  *          MIT X Consortium 
  32.  *          kit@expo.lcs.mit.edu
  33.  */
  34. #ifndef _XawMenuButtonP_h
  35. #define _XawMenuButtonP_h
  36. #include <X11/Xaw/MenuButton.h>
  37. #include <X11/Xaw/CommandP.h>
  38. /* New fields for the MenuButton widget class */
  39. typedef struct _MenuButtonClass {
  40.     XtPointer extension;
  41. } MenuButtonClassPart;
  42. /* class record declaration */
  43. typedef struct _MenuButtonClassRec {
  44.     CoreClassPart     core_class;
  45.     SimpleClassPart     simple_class;
  46.     LabelClassPart     label_class;
  47.     CommandClassPart     command_class;
  48.     MenuButtonClassPart     menuButton_class;
  49. } MenuButtonClassRec;
  50. extern MenuButtonClassRec menuButtonClassRec;
  51. /* New fields for the MenuButton widget */
  52. typedef struct {
  53.     /* resources */
  54.     String menu_name;
  55. #ifndef OLDXAW
  56.     XtPointer pad[4]; /* for future use and keep binary compatability */
  57. #endif
  58. } MenuButtonPart;
  59. /* widget declaration */
  60. typedef struct _MenuButtonRec {
  61.     CorePart         core;
  62.     SimplePart      simple;
  63.     LabelPart      label;
  64.     CommandPart      command;
  65.     MenuButtonPart   menu_button;
  66. } MenuButtonRec;
  67. #endif /* _XawMenuButtonP_h */