1: /**
2: *
3: * $Id: Form.h,v 1.2 2000/09/23 14:51:40 amai Exp $
4: *
5: * Copyright (C) 1995 Free Software Foundation, Inc.
6: * Copyright (C) 1995-2000 LessTif Development Team
7: *
8: * This file is part of the GNU LessTif Library.
9: *
10: * This library is free software; you can redistribute it and/or
11: * modify it under the terms of the GNU Library General Public
12: * License as published by the Free Software Foundation; either
13: * version 2 of the License, or (at your option) any later version.
14: *
15: * This library is distributed in the hope that it will be useful,
16: * but WITHOUT ANY WARRANTY; without even the implied warranty of
17: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18: * Library General Public License for more details.
19: *
20: * You should have received a copy of the GNU Library General Public
21: * License along with this library; if not, write to the Free
22: * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23: *
24: **/
25:
26: #ifndef _XM_FORM_H
27: #define _XM_FORM_H
28:
29: #include <Xm/BulletinB.h>
30:
31: #ifdef __cplusplus
32: extern "C" {
33: #endif
34:
35: extern WidgetClass xmFormWidgetClass;
36:
37: typedef struct _XmFormRec *XmFormWidget;
38: typedef struct _XmFormClassRec *XmFormWidgetClass;
39:
40: extern Widget XmCreateForm(Widget parent, char *name, Arg *arglist, Cardinal argCount);
41: extern Widget XmCreateFormDialog(Widget parent, char *name, Arg *arglist, Cardinal argCount);
42:
43: #ifndef XmIsForm
44: #define XmIsForm(w) XtIsSubclass((w), xmFormWidgetClass)
45: #endif
46:
47: #ifdef __cplusplus
48: }
49: #endif
50:
51: #endif /* _XM_FORM_H */
52: