1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
|
/*
* Motif Tools Library, Version 3.1
* $Id$
*
* Written by David Flanagan.
* Copyright (c) 1992-2001 by David Flanagan.
* All Rights Reserved. See the file COPYRIGHT for details.
* This is open source software. See the file LICENSE for details.
* There is no warranty for this software. See NO_WARRANTY for details.
*
* $Log$
* Revision 1.1.1.1 2001/07/18 11:06:03 root
* Initial checkin.
*
* Revision 1.2 2001/06/12 16:25:28 andre
* *** empty log message ***
*
*
*/
#ifndef _XmtP_h
#define _XmtP_h
/*
* This header includes XmP.h and fixes problems with it
* and handles 1.1 to 1.2 portability issues
*/
#include <Xmt/Xmt.h>
#include <Xm/XmP.h>
#if XmVersion == 1001
#include <Xm/Traversal.h>
#endif
#if XmVersion >= 1002
#include <Xm/PrimitiveP.h>
#include <Xm/GadgetP.h>
#include <Xm/ManagerP.h>
#endif
#if XmVersion == 1001
/* XmP.h uses NULL instead of None, resulting in a compiler warning */
#ifdef XtIsRealized
#undef XtIsRealized
#endif
#define XtIsRealized(widget) \
(XtIsWidget(widget) ? \
((Widget)(widget))->core.window != None : \
((Object)(widget))->object.parent->core.window != None)
#endif /* XmVersion 1001 */
/*
* In Motif 1.1.0, and maybe other old 1.1 versions as well,
* XmMenuProc and other XmRowColumn method types are not defined.
* If needed, we define them here.
*/
#ifdef MISSING_METHOD_TYPES
#define XmMenuProc XtProc
#define XmArmAndActivate XtProc
#define XmMenuTrav XtProc
#endif
/*
* Inheritance symbols not defined in Motif 1.1
*/
#if XmVersion == 1001
/* HP Motif does these inheritance symbols a little differently */
#if defined(HP_MOTIF) || defined(HP_NLS)
#ifndef XmInheritArmAndActivate
#define XmInheritArmAndActivate (XtActionProc) _XtInherit
#endif
#ifndef XmInheritMenuTraversalProc
#define XmInheritMenuTraversalProc (XmMenuTraversalProc) _XtInherit
#endif
#else /* if not HP/Motif */
#ifndef XmInheritArmAndActivate
#define XmInheritArmAndActivate (XmArmAndActivate) _XtInherit
#endif
#ifndef XmInheritMenuTraversalProc
#define XmInheritMenuTraversalProc (XmMenuTrav) _XtInherit
#endif
#ifndef XmInheritFocusMovedProc
#define XmInheritFocusMovedProc XtInheritFocusMovedProc
#endif
#endif
#ifndef XmInheritMenuProc
#define XmInheritMenuProc (XmMenuProc) _XtInherit
#endif
#ifndef XmInheritBorderHighlight
#define XmInheritBorderHighlight (XtWidgetProc) _XtInherit
#endif
#ifndef XmInheritBorderUnhighlight
#define XmInheritBorderUnhighlight (XtWidgetProc) _XtInherit
#endif
#endif
/*
* An inheritance symbol omited from 1.2.0
*/
#if XmVersion == 1002
#ifndef XmInheritMenuTraversalProc
#define XmInheritMenuTraversalProc (XmMenuTraversalProc) _XtInherit
#endif
#endif
/*
* Some internal functions' signatures changed between 1.1 and 1.2,
* so define some wrapper macros that work correctly for either release.
*/
#if XmVersion <= 1001
#define _XmtConfigureObject(g, x, y, w, h, b)\
_XmConfigureObject((RectObj)g, x, y, w, h, b)
#define _XmtResizeObject(g, w, h, bw) _XmResizeObject((RectObj)g, w, h, bw);
#define _XmtMoveObject(g, x, y) _XmMoveObject((RectObj)g, x, y);
#define _XmtRedisplayGadgets(w, e, r)\
_XmRedisplayGadgets((CompositeWidget)w, (XExposeEvent *)e, r)
#else
#define _XmtConfigureObject(g,x,y,w,h,b) _XmConfigureObject(g, x, y, w, h, b)
#define _XmtResizeObject(g, w, h, bw) _XmResizeObject(g, w, h, bw);
#define _XmtMoveObject(g, x, y) _XmMoveObject(g, x, y);
#define _XmtRedisplayGadgets(w, e, r) _XmRedisplayGadgets(w, e, r)
#endif
#if XmVersion >= 2000
/*
* ARH These functions have been removed from view in Motif 2.0.
* Suitable replacements need to be provided, but this will
* get us going.
*/
extern void _XmTextMarginsProc(Widget w, XmBaselineMargins *margins_rec) ;
extern void _XmDestroyParentCallback(Widget w, XtPointer client_data,
XtPointer call_data) ;
#endif
#endif /* _XmtP_h */
|