69 lines
1.5 KiB
C
69 lines
1.5 KiB
C
/* @(#)45 1.1 src/gos/2d/MOTIF/lib/Xm/Label.h, libxm, gos411, 9428A410i 11/10/92 16:41:13 */
|
|
|
|
/*
|
|
* COMPONENT_NAME: LIBXM Motif Toolkit
|
|
*
|
|
* FUNCTIONS:
|
|
*
|
|
* ORIGINS: 73
|
|
*
|
|
*/
|
|
|
|
/*
|
|
* (c) Copyright 1989, 1990, 1991, 1992 OPEN SOFTWARE FOUNDATION, INC.
|
|
* ALL RIGHTS RESERVED
|
|
*/
|
|
/*
|
|
* Motif Release 1.2
|
|
*/
|
|
/* $RCSfile: Label.h,v $ $Revision: 1.7 $ $Date: 92/03/13 16:35:46 $ */
|
|
/*
|
|
* (c) Copyright 1989, DIGITAL EQUIPMENT CORPORATION, MAYNARD, MASS. */
|
|
/*
|
|
* (c) Copyright 1987, 1988, 1989, 1990, 1991, 1992 HEWLETT-PACKARD COMPANY */
|
|
#ifndef _XmLabel_h
|
|
#define _XmLabel_h
|
|
|
|
#include <Xm/Xm.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* Widget class and record definitions */
|
|
|
|
externalref WidgetClass xmLabelWidgetClass;
|
|
|
|
typedef struct _XmLabelClassRec * XmLabelWidgetClass;
|
|
typedef struct _XmLabelRec * XmLabelWidget;
|
|
|
|
/*fast subclass define */
|
|
#ifndef XmIsLabel
|
|
#define XmIsLabel(w) XtIsSubclass(w, xmLabelWidgetClass)
|
|
#endif /* XmIsLabel */
|
|
|
|
|
|
/******** Public Function Declarations ********/
|
|
#ifdef _NO_PROTO
|
|
|
|
extern Widget XmCreateLabel() ;
|
|
|
|
#else
|
|
|
|
extern Widget XmCreateLabel(
|
|
Widget parent,
|
|
char *name,
|
|
Arg *arglist,
|
|
Cardinal argCount) ;
|
|
|
|
#endif /* _NO_PROTO */
|
|
/******** End Public Function Declarations ********/
|
|
|
|
|
|
#ifdef __cplusplus
|
|
} /* Close scope of 'extern "C"' declaration which encloses file. */
|
|
#endif
|
|
|
|
#endif /* _XmLabel_h */
|
|
/* DON'T ADD ANYTHING AFTER THIS #endif */
|