#ifndef XmLTreeH
#define XmLTreeH
#include "XmL.h"
#include "Grid.h"
#ifdef XmL_CPP
extern "C" {
#endif
extern WidgetClass xmlTreeWidgetClass;
typedef struct _XmLTreeClassRec *XmLTreeWidgetClass;
typedef struct _XmLTreeRec *XmLTreeWidget;
typedef struct _XmLTreeRowRec *XmLTreeRow;
#define XmLIsTree(w) XtIsSubclass((w), xmlTreeWidgetClass)
Widget XmLCreateTree(Widget parent,
char *name, ArgList arglist,
Cardinal argcount);
void XmLTreeAddRow(Widget w,
int level, Boolean expands, Boolean isExpaned,
int position, Pixmap pixmap, Pixmap pixmask, XmString string);
void XmLTreeAddRows(Widget w, XmLTreeRowDefinition *rows,
int count,
int position);
void XmLTreeDeleteChildren(Widget w,
int position);
#ifdef XmL_CPP
}
#endif
#endif