-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathSGMLMarkerText.h
47 lines (34 loc) · 1.39 KB
/
SGMLMarkerText.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
/*==================================================================*/
/* */
/* SGMLMarkerTextObject */
/* */
/* T.Johnson - ([email protected]) June.92 */
/* */
/* Defines marker text segment for the SGMLText widget */
/* */
/*==================================================================*/
#ifndef SGMLMARKERTEXT_H
#define SGMLMARKERTEXT_H
#include "SGMLMarkerText.h"
extern WidgetClass sGMLMarkerTextObjectClass;
typedef struct _SGMLMarkerTextRec *SGMLMarkerTextObject;
#define SGMLNcolumnAlign "columnAlign"
#define SGMLCColumnAlign "ColumnAlign"
#define SGMLNposition "position"
#define SGMLCPosition "Position"
#ifdef _NO_PROTO
extern Widget CreateSGMLMarkerText();
#else
#if defined(__cplusplus) || defined(c_plusplus)
extern "C" {
#endif
extern Widget SGMLCreateMarkerText(Widget parent,
char *name,
ArgList al,
int ac);
#if defined(__cplusplus) || defined(c_plusplus)
}
#endif
#endif /* _NO_PROTO */
#define SGMLIsMarkerText(w) XtIsSubclass(w,sGMLMarkerTextObjectClass)
#endif SGMLMARKERTEXT_H