-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathSGMLPlainText.h
45 lines (32 loc) · 1.28 KB
/
SGMLPlainText.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
/*==================================================================*/
/* */
/* SGMLPlainTextObject */
/* */
/* T.Johnson - ([email protected]) June.92 */
/* */
/* Defines aplain text segment for the SGMLText widget */
/* */
/*==================================================================*/
#ifndef SGMLPLAINTEXT_H
#define SGMLPLAINTEXT_H
#include "SGMLText.h"
extern WidgetClass sGMLPlainTextObjectClass;
typedef struct _SGMLPlainTextRec *SGMLPlainTextObject;
#define SGMLNtabs "tabs"
#define SGMLCTabs "Tabs"
#ifdef _NO_PROTO
extern Widget CreateSGMLPlainText();
#else
#if defined(__cplusplus) || defined(c_plusplus)
extern "C" {
#endif
extern Widget SGMLCreatePlainText(Widget parent,
char *name,
ArgList al,
int ac);
#if defined(__cplusplus) || defined(c_plusplus)
}
#endif
#endif /* _NO_PROTO */
#define SGMLIsPlainText(w) XtIsSubclass(w,sGMLPlainTextObjectClass)
#endif SGMLPLAINTEXT_H