-
Notifications
You must be signed in to change notification settings - Fork 7
/
SGMLFormattedText.h
42 lines (30 loc) · 1.25 KB
/
SGMLFormattedText.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
/*==================================================================*/
/* */
/* SGMLFormattedTextObject */
/* */
/* T.Johnson - (TonyJ@Slacvx.Slac.Stanford.Edu) June.92 */
/* */
/* Defines a formatted text segment for the SGMLText widget */
/* */
/*==================================================================*/
#ifndef SGMLFORMATTEDTEXT_H
#define SGMLFORMATTEDTEXT_H
#include "SGMLText.h"
extern WidgetClass sGMLFormattedTextObjectClass;
typedef struct _SGMLFormattedTextRec *SGMLFormattedTextObject;
#ifdef _NO_PROTO
extern Widget CreateSGMLFormattedText();
#else
#if defined(__cplusplus) || defined(c_plusplus)
extern "C" {
#endif
extern Widget SGMLCreateFormattedText(Widget parent,
char *name,
ArgList al,
int ac);
#if defined(__cplusplus) || defined(c_plusplus)
}
#endif
#endif /* _NO_PROTO */
#define SGMLIsFormattedText(w) XtIsSubclass(w,sGMLFormattedTextObjectClass)
#endif SGMLFORMATTEDTEXT_H