mirror of https://github.com/XEphem/XEphem.git
217 lines
7.5 KiB
C
217 lines
7.5 KiB
C
/*
|
|
* @OPENGROUP_COPYRIGHT@
|
|
* COPYRIGHT NOTICE
|
|
* Copyright (c) 1990, 1991, 1992, 1993 Open Software Foundation, Inc.
|
|
* Copyright (c) 1996, 1997, 1998, 1999, 2000 The Open Group
|
|
* ALL RIGHTS RESERVED (MOTIF). See the file named COPYRIGHT.MOTIF for
|
|
* the full copyright text.
|
|
*
|
|
* This software is subject to an open license. It may only be
|
|
* used on, with or for operating systems which are themselves open
|
|
* source systems. You must contact The Open Group for a license
|
|
* allowing distribution and sublicensing of this software on, with,
|
|
* or for operating systems which are not Open Source programs.
|
|
*
|
|
* See http://www.opengroup.org/openmotif/license for full
|
|
* details of the license agreement. Any use, reproduction, or
|
|
* distribution of the program constitutes recipient's acceptance of
|
|
* this agreement.
|
|
*
|
|
* EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS
|
|
* PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
* KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY
|
|
* WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY
|
|
* OR FITNESS FOR A PARTICULAR PURPOSE
|
|
*
|
|
* EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT
|
|
* NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT,
|
|
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
* DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
* ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE
|
|
* EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE
|
|
* POSSIBILITY OF SUCH DAMAGES.
|
|
*/
|
|
/*
|
|
* HISTORY
|
|
*/
|
|
|
|
#ifdef REV_INFO
|
|
#ifndef lint
|
|
#endif
|
|
#endif
|
|
|
|
#ifndef _XmRowColumnI_h
|
|
#define _XmRowColumnI_h
|
|
|
|
#include <Xm/RowColumnP.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define UNDEFINED_TYPE -1
|
|
#define POST_TIME_OUT 3 /* sec */ * 1000
|
|
|
|
#define Double(x) ((x) << 1)
|
|
#define Half(x) ((x) >> 1)
|
|
|
|
#define IsSensitive(r) XtIsSensitive(r)
|
|
#define IsManaged(w) XtIsManaged(w)
|
|
#define IsNull(p) ((p) == NULL)
|
|
|
|
#define PackTight(m) (RC_Packing (m) == XmPACK_TIGHT)
|
|
#define PackColumn(m) (RC_Packing (m) == XmPACK_COLUMN)
|
|
#define PackNone(m) (RC_Packing (m) == XmPACK_NONE)
|
|
|
|
#define Asking(i) ((i) == 0)
|
|
#define IsVertical(m) \
|
|
(((XmRowColumnWidget) (m))->row_column.orientation == XmVERTICAL)
|
|
#define IsHorizontal(m) \
|
|
(((XmRowColumnWidget) (m))->row_column.orientation == XmHORIZONTAL)
|
|
#define IsAligned(m) \
|
|
(((XmRowColumnWidget) (m))->row_column.do_alignment)
|
|
|
|
#define IsPopup(m) \
|
|
(((XmRowColumnWidget) (m))->row_column.type == XmMENU_POPUP)
|
|
#define IsPulldown(m) \
|
|
(((XmRowColumnWidget) (m))->row_column.type == XmMENU_PULLDOWN)
|
|
#define IsOption(m) \
|
|
(((XmRowColumnWidget) (m))->row_column.type == XmMENU_OPTION)
|
|
#define IsBar(m) \
|
|
(((XmRowColumnWidget) (m))->row_column.type == XmMENU_BAR)
|
|
#define IsWorkArea(m) \
|
|
(((XmRowColumnWidget) (m))->row_column.type == XmWORK_AREA)
|
|
#define IsRadio(m) \
|
|
((((XmRowColumnWidget) (m))->row_column.type == XmWORK_AREA) && \
|
|
((((XmRowColumnWidget) (m))->row_column.radio)))
|
|
#define IsHelp(m,w) ((w) == RC_HelpPb (m))
|
|
|
|
#define WasManaged(w) \
|
|
(((XmRowColumnConstraintRec *) ((w)->core.constraints))-> \
|
|
row_column.was_managed)
|
|
|
|
#define SavedMarginTop(w) \
|
|
(((XmRowColumnConstraintRec *) ((w)->core.constraints))-> \
|
|
row_column.margin_top)
|
|
|
|
#define SavedMarginBottom(w) \
|
|
(((XmRowColumnConstraintRec *) ((w)->core.constraints))-> \
|
|
row_column.margin_bottom)
|
|
|
|
#define SavedBaseline(w) \
|
|
(((XmRowColumnConstraintRec *) ((w)->core.constraints))-> \
|
|
row_column.baseline)
|
|
|
|
#define BX(b) ((b)->x)
|
|
#define BY(b) ((b)->y)
|
|
#define BWidth(b) ((b)->width)
|
|
#define BHeight(b) ((b)->height)
|
|
#define BBorder(b) ((b)->border_width)
|
|
|
|
#define SetPosition(b,x,y) { BX (b) = x; BY (b) = y; }
|
|
|
|
#define ChangeMargin(margin,new_w,sum) { \
|
|
if ((margin) != new_w) \
|
|
{ \
|
|
sum += new_w - (margin); \
|
|
(margin) = new_w; \
|
|
}\
|
|
}
|
|
|
|
#define ChangeMarginDouble(margin,new_w,sum) { \
|
|
if ((margin) != new_w) \
|
|
{ \
|
|
sum += 2* (new_w - (margin)); \
|
|
(margin) = new_w; \
|
|
}\
|
|
}
|
|
|
|
#define ForAllChildren(m, i, q) \
|
|
for (i = 0, q = m->composite.children; \
|
|
i < m->composite.num_children; \
|
|
i++, q++)
|
|
|
|
#define ForManagedChildren(m, i, q) \
|
|
for (i = 0, q = m->composite.children; \
|
|
i < m->composite.num_children; \
|
|
i++, q++) \
|
|
\
|
|
if (XtIsManaged(*q))
|
|
|
|
#define AlignmentBaselineTop(m) \
|
|
(((XmRowColumnWidget) (m))->row_column.entry_vertical_alignment == XmALIGNMENT_BASELINE_TOP)
|
|
#define AlignmentBaselineBottom(m) \
|
|
(((XmRowColumnWidget) (m))->row_column.entry_vertical_alignment == XmALIGNMENT_BASELINE_BOTTOM)
|
|
#define AlignmentCenter(m) \
|
|
(((XmRowColumnWidget) (m))->row_column.entry_vertical_alignment == XmALIGNMENT_CENTER)
|
|
#define AlignmentTop(m) \
|
|
(((XmRowColumnWidget) (m))->row_column.entry_vertical_alignment == XmALIGNMENT_CONTENTS_TOP)
|
|
#define AlignmentBottom(m) \
|
|
(((XmRowColumnWidget) (m))->row_column.entry_vertical_alignment == XmALIGNMENT_CONTENTS_BOTTOM)
|
|
|
|
/* Warning Messages */
|
|
#define BadWidthSVMsg _XmMMsgRowColumn_0000
|
|
#define BadHeightSVMsg _XmMMsgRowColumn_0001
|
|
#define BadPopupHelpMsg _XmMMsgRowColumn_0002
|
|
#define BadPulldownHelpMsg _XmMMsgRowColumn_0003
|
|
#define BadOptionHelpMsg _XmMMsgRowColumn_0004
|
|
#define BadWorkAreaHelpMsg _XmMMsgRowColumn_0005
|
|
#define BadTypeParentMsg _XmMMsgRowColumn_0007
|
|
#define BadTypeSVMsg _XmMMsgRowColumn_0008
|
|
#define BadMenuBarHomogenousSVMsg _XmMMsgRowColumn_0015
|
|
#define BadMenuBarEntryClassSVMsg _XmMMsgRowColumn_0016
|
|
#define BadPulldownWhichButtonSVMsg _XmMMsgRowColumn_0017
|
|
#define BadPulldownMenuPostSVMsg _XmMMsgRowColumn_0018
|
|
#define BadMenuPostMsg _XmMMsgRowColumn_0019
|
|
#define BadShadowThicknessSVMsg _XmMMsgRowColumn_0020
|
|
#define WrongMenuChildMsg _XmMMsgRowColumn_0022
|
|
#define WrongChildMsg _XmMMsgRowColumn_0023
|
|
#define BadOptionIsHomogeneousSVMsg _XmMMsgRowColumn_0025
|
|
#define TearOffSharedMenupaneMsg _XmMMsgRowColumn_0026
|
|
#define BadMnemonicCharMsg _XmMMsgRowColumn_0027
|
|
|
|
#define RCIndex(w) (((XmRowColumnConstraintRec *)(w)->core.constraints)\
|
|
->row_column.position_index)
|
|
|
|
|
|
/******** Private Function Declarations ********/
|
|
|
|
extern void _XmRC_KeyboardInputHandler(
|
|
Widget reportingWidget,
|
|
XtPointer data,
|
|
XEvent *event,
|
|
Boolean *cont );
|
|
extern void _XmAllowAcceleratedInsensitiveUnmanagedMenuItems(
|
|
Widget wid,
|
|
#if NeedWidePrototypes
|
|
int allowed);
|
|
#else
|
|
Boolean allowed);
|
|
#endif /* NeedWidePrototypes */
|
|
extern void _XmPostPopupMenu(
|
|
Widget wid,
|
|
XEvent *event) ;
|
|
extern void _XmCallRowColumnMapCallback(
|
|
Widget wid,
|
|
XEvent *event) ;
|
|
extern void _XmCallRowColumnUnmapCallback(
|
|
Widget wid,
|
|
XEvent *event) ;
|
|
extern void _XmRC_RemoveFromPostFromListOnDestroyCB (
|
|
Widget w,
|
|
caddr_t clientData,
|
|
caddr_t callData) ;
|
|
|
|
extern void _XmRC_CheckAndSetOptionCascade(XmRowColumnWidget menu) ;
|
|
|
|
/******** End Private Function Declarations ********/
|
|
|
|
#ifdef __cplusplus
|
|
} /* Close scope of 'extern "C"' declaration which encloses file. */
|
|
#endif
|
|
|
|
#endif /* _XmRowColumnI_h */
|
|
/* DON'T ADD STUFF AFTER THIS #endif */
|