1994689c1Smrg/* 27a84e134Smrg * 37a84e134SmrgCopyright 1989,1998 The Open Group 47a84e134Smrg 57a84e134SmrgPermission to use, copy, modify, distribute, and sell this software and its 67a84e134Smrgdocumentation for any purpose is hereby granted without fee, provided that 77a84e134Smrgthe above copyright notice appear in all copies and that both that 87a84e134Smrgcopyright notice and this permission notice appear in supporting 97a84e134Smrgdocumentation. 107a84e134Smrg 117a84e134SmrgThe above copyright notice and this permission notice shall be included in 127a84e134Smrgall copies or substantial portions of the Software. 137a84e134Smrg 147a84e134SmrgTHE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 157a84e134SmrgIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 167a84e134SmrgFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 177a84e134SmrgOPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN 187a84e134SmrgAN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 197a84e134SmrgCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 207a84e134Smrg 217a84e134SmrgExcept as contained in this notice, the name of The Open Group shall not be 227a84e134Smrgused in advertising or otherwise to promote the sale, use or other dealings 237a84e134Smrgin this Software without prior written authorization from The Open Group. 247a84e134Smrg */ 257a84e134Smrg 267a84e134Smrg/* 277a84e134Smrg * MenuButtonP.h - Private Header file for MenuButton widget. 287a84e134Smrg * 297a84e134Smrg * This is the private header file for the Athena MenuButton widget. 307a84e134Smrg * It is intended to provide an easy method of activating pulldown menus. 317a84e134Smrg * 327a84e134Smrg * Date: May 2, 1989 337a84e134Smrg * 347a84e134Smrg * By: Chris D. Peterson 35421c997bSmrg * MIT X Consortium 367a84e134Smrg * kit@expo.lcs.mit.edu 377a84e134Smrg */ 387a84e134Smrg 397a84e134Smrg#ifndef _XawMenuButtonP_h 407a84e134Smrg#define _XawMenuButtonP_h 417a84e134Smrg 427a84e134Smrg#include <X11/Xaw/MenuButton.h> 437a84e134Smrg#include <X11/Xaw/CommandP.h> 447a84e134Smrg 457a84e134Smrg/* New fields for the MenuButton widget class */ 467a84e134Smrgtypedef struct _MenuButtonClass { 477a84e134Smrg XtPointer extension; 487a84e134Smrg} MenuButtonClassPart; 497a84e134Smrg 507a84e134Smrg/* class record declaration */ 517a84e134Smrgtypedef struct _MenuButtonClassRec { 527a84e134Smrg CoreClassPart core_class; 537a84e134Smrg SimpleClassPart simple_class; 547a84e134Smrg LabelClassPart label_class; 557a84e134Smrg CommandClassPart command_class; 567a84e134Smrg MenuButtonClassPart menuButton_class; 577a84e134Smrg} MenuButtonClassRec; 587a84e134Smrg 597a84e134Smrgextern MenuButtonClassRec menuButtonClassRec; 607a84e134Smrg 617a84e134Smrg/* New fields for the MenuButton widget */ 627a84e134Smrgtypedef struct { 637a84e134Smrg /* resources */ 645ec34c4cSmrg char * menu_name; 657a84e134Smrg#ifndef OLDXAW 665b16253fSmrg XtPointer pad[4]; /* for future use and keep binary compatibility */ 677a84e134Smrg#endif 687a84e134Smrg} MenuButtonPart; 697a84e134Smrg 707a84e134Smrg/* widget declaration */ 717a84e134Smrgtypedef struct _MenuButtonRec { 727a84e134Smrg CorePart core; 737a84e134Smrg SimplePart simple; 747a84e134Smrg LabelPart label; 757a84e134Smrg CommandPart command; 767a84e134Smrg MenuButtonPart menu_button; 777a84e134Smrg} MenuButtonRec; 787a84e134Smrg 797a84e134Smrg#endif /* _XawMenuButtonP_h */ 80