-
Notifications
You must be signed in to change notification settings - Fork 7
/
SGMLMarkerTextP.h
46 lines (32 loc) · 1.44 KB
/
SGMLMarkerTextP.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 - (TonyJ@Slacvx.Slac.Stanford.Edu) June.92 */
/* */
/* Defines a text segment for the SGMLHyper widget */
/* */
/*==================================================================*/
#ifndef SGMLMARKERTEXTP_H
#define SGMLMARKERTEXTP_H
#include "SGMLMarkerText.h"
#include "SGMLTextP.h"
typedef struct _SGMLMarkerTextClassPart{
int ignore; /* no new class elements */
} SGMLMarkerTextClassPart;
typedef struct _SGMLMarkerTextClassRec{
ObjectClassPart object_class;
SGMLTextClassPart sgml_text_class;
SGMLMarkerTextClassPart sgml_marker_text_class;
} SGMLMarkerTextClassRec, *SGMLMarkerTextObjectClass;
extern SGMLMarkerTextClassRec sGMLMarkerTextClassRec;
typedef struct _SGMLMarkerTextPart {
Dimension column_align;
Position position;
} SGMLMarkerTextPart;
typedef struct _SGMLMarkerTextRec {
ObjectPart object;
SGMLTextPart sgml_text;
SGMLMarkerTextPart sgml_marker_text;
} SGMLMarkerTextRec;
#endif SGMLMARKERTEXTP_H