98N/A/*
98N/A * $XConsortium: PortholeP.h,v 1.3 94/04/17 20:12:36 kaleb Exp $
1095N/A *
98N/ACopyright (c) 1990, 1994 X Consortium
98N/A
919N/APermission is hereby granted, free of charge, to any person obtaining a copy
919N/Aof this software and associated documentation files (the "Software"), to deal
919N/Ain the Software without restriction, including without limitation the rights
919N/Ato use, copy, modify, merge, publish, distribute, sublicense, and/or sell
919N/Acopies of the Software, and to permit persons to whom the Software is
919N/Afurnished to do so, subject to the following conditions:
919N/A
919N/AThe above copyright notice and this permission notice shall be included in
919N/Aall copies or substantial portions of the Software.
919N/A
919N/ATHE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
919N/AIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
919N/AFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
919N/AX CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
919N/AAN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
919N/ACONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
919N/A
98N/AExcept as contained in this notice, the name of the X Consortium shall not be
98N/Aused in advertising or otherwise to promote the sale, use or other dealings
98N/Ain this Software without prior written authorization from the X Consortium.
98N/A *
967N/A * Author: Jim Fulton, MIT X Consortium
98N/A */
493N/A
493N/A#ifndef _XawPortholeP_h
493N/A#define _XawPortholeP_h
967N/A
493N/A#include <X11/Xaw/Porthole.h>
957N/A
957N/Atypedef struct { /* new fields in widget class */
957N/A int dummy;
957N/A} PortholeClassPart;
957N/A
970N/Atypedef struct _PortholeClassRec { /* Porthole widget class */
970N/A CoreClassPart core_class;
970N/A CompositeClassPart composite_class;
970N/A PortholeClassPart porthole_class;
970N/A} PortholeClassRec;
970N/A
970N/A
970N/Atypedef struct { /* new fields in widget */
970N/A /* resources... */
970N/A XtCallbackList report_callbacks; /* callback/Callback */
970N/A /* private data... */
970N/A} PortholePart;
970N/A
970N/Atypedef struct _PortholeRec {
970N/A CorePart core;
970N/A CompositePart composite;
493N/A PortholePart porthole;
493N/A} PortholeRec;
851N/A
1097N/A
851N/A/*
591N/A * external declarations
591N/A */
591N/Aextern PortholeClassRec portholeClassRec;
1095N/A
606N/A
606N/A#endif /* _XawPortholeP_h */
705N/A