#ifndef _AlAssoc_h_
#define _AlAssoc_h_ 1

#include <X11/Constraint.h>

/***********************************************************************
 *
 * AthenaLens Association Widget.  Exclusively for display of rules
 *
 ***********************************************************************/

/* Parameters:

 Name		     Class		RepType		Default Value
 ----		     -----		-------		-------------
 background	     Background		pixel		White
 border		     BorderColor	pixel		Black
 borderWidth	     BorderWidth	int		1
 defaultDistance     Thickness		int		4
 destroyCallback     Callback		Pointer		NULL
 height		     Height		int		0
 mappedWhenManaged   MappedWhenManaged	Boolean		True
 sensitive	     Sensitive		Boolean		True
 width		     Width		int		0
 x		     Position		int		0
 y		     Position		int		0

*/

/* Constraint parameters:

 Name		     Class		RepType		Default Value
 ----		     -----		-------		-------------
 fromVert	     Widget		Widget		(top of form)
 vertDistance	     Thickness		int		4

*/



#define XtNfromVert		"fromVert"
#define XtNvertDistance		"vertDistance"

typedef struct _AlAssocClassRec	*AlAssocWidgetClass;
typedef struct _AlAssocRec		*AlAssocWidget;

extern WidgetClass alAssocWidgetClass;
 
#endif /* _AlAssoc_h_ */

