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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $XConsortium: MenuButtoP.h,v 1.8 94/04/17 20:12:18 converse Exp $
  2.  *
  3. Copyright (c) 1989  X Consortium
  4. Permission is hereby granted, free of charge, to any person obtaining a copy
  5. of this software and associated documentation files (the "Software"), to deal
  6. in the Software without restriction, including without limitation the rights
  7. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  8. copies of the Software, and to permit persons to whom the Software is
  9. furnished to do so, subject to the following conditions:
  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. X CONSORTIUM 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 X Consortium 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 X Consortium.
  21.  */
  22. /***********************************************************************
  23.  *
  24.  * MenuButton Widget
  25.  *
  26.  ***********************************************************************/
  27. /*
  28.  * MenuButtonP.h - Private Header file for MenuButton widget.
  29.  *
  30.  * This is the private header file for the Athena MenuButton widget.
  31.  * It is intended to provide an easy method of activating pulldown menus.
  32.  *
  33.  * Date:    May 2, 1989
  34.  *
  35.  * By:      Chris D. Peterson
  36.  *          MIT X Consortium 
  37.  *          kit@expo.lcs.mit.edu
  38.  */
  39. #ifndef _XawMenuButtonP_h
  40. #define _XawMenuButtonP_h
  41. #include <X11/Xaw3d/MenuButton.h>
  42. #include <X11/Xaw3d/CommandP.h>
  43. /************************************
  44.  *
  45.  *  Class structure
  46.  *
  47.  ***********************************/
  48.    /* New fields for the MenuButton widget class record */
  49. typedef struct _MenuButtonClass 
  50. {
  51.   int makes_compiler_happy;  /* not used */
  52. } MenuButtonClassPart;
  53.    /* Full class record declaration */
  54. typedef struct _MenuButtonClassRec {
  55.   CoreClassPart     core_class;
  56.   SimpleClassPart     simple_class;
  57.   ThreeDClassPart           threeD_class;
  58.   LabelClassPart     label_class;
  59.   CommandClassPart     command_class;
  60.   MenuButtonClassPart     menuButton_class;
  61. } MenuButtonClassRec;
  62. extern MenuButtonClassRec menuButtonClassRec;
  63. /***************************************
  64.  *
  65.  *  Instance (widget) structure 
  66.  *
  67.  **************************************/
  68.     /* New fields for the MenuButton widget record */
  69. typedef struct {
  70.   /* resources */
  71.   String menu_name;
  72. } MenuButtonPart;
  73.    /* Full widget declaration */
  74. typedef struct _MenuButtonRec {
  75.     CorePart         core;
  76.     SimplePart      simple;
  77.     ThreeDPart       threeD;
  78.     LabelPart      label;
  79.     CommandPart      command;
  80.     MenuButtonPart   menu_button;
  81. } MenuButtonRec;
  82. #endif /* _XawMenuButtonP_h */