97 lines
2.4 KiB
C
97 lines
2.4 KiB
C
/* @(#)75 1.2 src/gos/2d/MOTIF/lib/Xm/Command.h, libxm, gos411, 9428A410i 11/10/92 17:27:07 */
|
|
|
|
/*
|
|
* 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.1
|
|
*/
|
|
/* $RCSfile: Command.h,v $ $Revision: 1.7.2.2 $ $Date: 92/08/07 13:11:32 $ */
|
|
/*
|
|
* (c) Copyright 1989, DIGITAL EQUIPMENT CORPORATION, MAYNARD, MASS. */
|
|
/*
|
|
* (c) Copyright 1987, 1988, 1989, 1990, 1991, 1992 HEWLETT-PACKARD COMPANY */
|
|
#ifndef _XmCommand_h
|
|
#define _XmCommand_h
|
|
|
|
#include <Xm/Xm.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* Class record constants */
|
|
|
|
externalref WidgetClass xmCommandWidgetClass;
|
|
|
|
typedef struct _XmCommandClassRec * XmCommandWidgetClass;
|
|
typedef struct _XmCommandRec * XmCommandWidget;
|
|
|
|
|
|
#ifndef XmIsCommand
|
|
#define XmIsCommand(w) (XtIsSubclass (w, xmCommandWidgetClass))
|
|
#endif
|
|
|
|
|
|
|
|
/******** Public Function Declarations ********/
|
|
#ifdef _NO_PROTO
|
|
|
|
extern Widget XmCreateCommand() ;
|
|
extern Widget XmCommandGetChild() ;
|
|
extern void XmCommandSetValue() ;
|
|
extern void XmCommandAppendValue() ;
|
|
extern void XmCommandError() ;
|
|
extern Widget XmCreateCommandDialog() ;
|
|
|
|
#else
|
|
|
|
extern Widget XmCreateCommand(
|
|
Widget parent,
|
|
String name,
|
|
ArgList al,
|
|
Cardinal ac) ;
|
|
extern Widget XmCommandGetChild(
|
|
Widget widget,
|
|
#if NeedWidePrototypes
|
|
unsigned int child) ;
|
|
#else
|
|
unsigned char child) ;
|
|
#endif /* NeedWidePrototypes */
|
|
extern void XmCommandSetValue(
|
|
Widget widget,
|
|
XmString value) ;
|
|
extern void XmCommandAppendValue(
|
|
Widget widget,
|
|
XmString value) ;
|
|
extern void XmCommandError(
|
|
Widget widget,
|
|
XmString error) ;
|
|
extern Widget XmCreateCommandDialog(
|
|
Widget ds_p,
|
|
String name,
|
|
ArgList fsb_args,
|
|
Cardinal fsb_n) ;
|
|
|
|
|
|
#endif /* _NO_PROTO */
|
|
/******** End Public Function Declarations ********/
|
|
|
|
|
|
#ifdef __cplusplus
|
|
} /* Close scope of 'extern "C"' declaration which encloses file. */
|
|
#endif
|
|
|
|
#endif /* _XmCommand_h */
|
|
/* DON'T ADD ANYTHING AFTER THIS #endif */
|