-
Notifications
You must be signed in to change notification settings - Fork 7
/
SGMLCompositeText.h
61 lines (43 loc) · 1.73 KB
/
SGMLCompositeText.h
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
/*==================================================================*/
/* */
/* SGMLCompositeTextObject */
/* */
/* T.Johnson - ([email protected]) June.92 */
/* */
/* Defines a composite text segment for the SGMLText widget */
/* */
/*==================================================================*/
#ifndef SGMLCOMPOSITETEXT_H
#define SGMLCOMPOSITETEXT_H
#include "SGMLText.h"
#define SGMLNtagList "tagList"
#define SGMLCTagList "TagList"
#define SGMLRTagList "TagList"
#define SGMLNdefaultClass "defaultClass"
#define SGMLCClass "Class"
#define SGMLRClass "Class"
#define SGMLINHERIT_CLASS NULL
extern WidgetClass sGMLCompositeTextObjectClass;
typedef struct _SGMLCompositeTextRec *SGMLCompositeTextObject;
typedef struct _TagList {
XrmName name;
WidgetClass class;
} SGMLTagList;
#ifdef _NO_PROTO
extern void SGMLCompositeTextInsertChild();
extern Widget CreateSGMLCompositeText();
#else
#if defined(__cplusplus) || defined(c_plusplus)
extern "C" {
#endif
extern Widget SGMLCreateCompositeText(Widget parent,
char *name,
ArgList al,
int ac);
extern void SGMLCompositeTextInsertChild(Widget parent, Widget child);
#if defined(__cplusplus) || defined(c_plusplus)
}
#endif
#endif /* _NO_PROTO */
#define SGMLIsCompositeText(w) XtIsSubclass(w,sGMLCompositeTextObjectClass)
#endif SGMLCOMPOSITETEXT_H