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
|
/*
* 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 _XmtWorkingBox_h
#define _XmtWorkingBox_h
#include <Xmt/Layout.h>
externalref WidgetClass xmtWorkingBoxWidgetClass;
typedef struct _XmtWorkingBoxClassRec *XmtWorkingBoxWidgetClass;
typedef struct _XmtWorkingBoxRec *XmtWorkingBoxWidget;
externalref _Xconst char XmtWorkingBoxStrings[];
#ifndef XmtNbuttonLabel
#define XmtNbuttonLabel ((char*)&XmtWorkingBoxStrings[0])
#endif
#ifndef XmtNbuttonWidget
#define XmtNbuttonWidget ((char*)&XmtWorkingBoxStrings[12])
#endif
#ifndef XmtNicon
#define XmtNicon ((char*)&XmtWorkingBoxStrings[25])
#endif
#ifndef XmtNmessage
#define XmtNmessage ((char*)&XmtWorkingBoxStrings[30])
#endif
#ifndef XmtNscaleLabel
#define XmtNscaleLabel ((char*)&XmtWorkingBoxStrings[38])
#endif
#ifndef XmtNscaleMax
#define XmtNscaleMax ((char*)&XmtWorkingBoxStrings[49])
#endif
#ifndef XmtNscaleMin
#define XmtNscaleMin ((char*)&XmtWorkingBoxStrings[58])
#endif
#ifndef XmtNscaleValue
#define XmtNscaleValue ((char*)&XmtWorkingBoxStrings[67])
#endif
#ifndef XmtNscaleWidget
#define XmtNscaleWidget ((char*)&XmtWorkingBoxStrings[78])
#endif
#ifndef XmtNshowButton
#define XmtNshowButton ((char*)&XmtWorkingBoxStrings[90])
#endif
#ifndef XmtNshowScale
#define XmtNshowScale ((char*)&XmtWorkingBoxStrings[101])
#endif
#ifndef XmtCButtonLabel
#define XmtCButtonLabel ((char*)&XmtWorkingBoxStrings[111])
#endif
#ifndef XmtCIcon
#define XmtCIcon ((char*)&XmtWorkingBoxStrings[123])
#endif
#ifndef XmtCMessage
#define XmtCMessage ((char*)&XmtWorkingBoxStrings[128])
#endif
#ifndef XmtCScaleLabel
#define XmtCScaleLabel ((char*)&XmtWorkingBoxStrings[136])
#endif
#ifndef XmtCScaleMax
#define XmtCScaleMax ((char*)&XmtWorkingBoxStrings[147])
#endif
#ifndef XmtCScaleMin
#define XmtCScaleMin ((char*)&XmtWorkingBoxStrings[156])
#endif
#ifndef XmtCScaleValue
#define XmtCScaleValue ((char*)&XmtWorkingBoxStrings[165])
#endif
#ifndef XmtCShowButton
#define XmtCShowButton ((char*)&XmtWorkingBoxStrings[176])
#endif
#ifndef XmtCShowScale
#define XmtCShowScale ((char*)&XmtWorkingBoxStrings[187])
#endif
_XFUNCPROTOBEGIN
#if NeedFunctionPrototypes
extern Widget XmtCreateWorkingBox(Widget, String, ArgList, Cardinal);
extern Widget XmtCreateWorkingDialog(Widget, String, ArgList, Cardinal);
extern void XmtWorkingBoxSetScaleValue(Widget, int);
extern Boolean XmtWorkingBoxHandleEvents(Widget);
#else
extern Widget XmtCreateWorkingBox();
extern Widget XmtCreateWorkingDialog();
extern void XmtWorkingBoxSetScaleValue();
extern Boolean XmtWorkingBoxHandleEvents();
#endif
_XFUNCPROTOEND
#endif /* _XmtWorkingBox_h */
|