#ifndef shuttlebar_h
#define shuttlebar_h

#include <X11/Simple.h>

#define XtNinitialSpeed		"initialSpeed"
#define XtNcenterColor		"centerColor"
#define XtNforegroundColor	"foregroundColor"
#define XtNcenterWidth		"centerWidth"
#define XtNmaxSpeed		"maxSpeed"
#define XtNrollCallback		"rollCallback"

#define XtCInitialSpeed		"InitialSpeed"
#define XtCCenterColor		"CenterColor"
#define XtCForegroundColor	"ForegroundColor"
#define XtCCenterWidth		"CenterWidth"
#define XtCMaxSpeed		"MaxSpeed"
#define XtCRollCallback		"RollCallback"

typedef struct _ShuttleClassRec	*ShuttleWidgetClass;
typedef struct _ShuttleRec	*ShuttleWidget;

extern WidgetClass		shuttleWidgetClass;

void XtShuttleSetSpeed ();

#endif shuttlebar_h
