-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathSGMLListText.h
65 lines (49 loc) · 1.91 KB
/
SGMLListText.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
61
62
63
64
/*==================================================================*/
/* */
/* SGMLListTextObject */
/* */
/* T.Johnson - ([email protected]) June.92 */
/* */
/* Defines a list text segment for the SGMLText widget */
/* */
/*==================================================================*/
#ifndef SGMLLISTTEXT_H
#define SGMLLISTTEXT_H
#include "SGMLCompositeText.h"
#define SGMLNnumBullets "numBullets"
#define SGMLNallocBullets "allocBullets"
#define SGMLNbulletType "bulletType"
#define SGMLCBulletType "BulletType"
#define SGMLRBulletType "BulletType"
#define SGMLNbulletSize "bulletSize"
#define SGMLCBulletSize "BulletSize"
#define SGMLNbulletColor "bulletColor"
#define SGMLCBulletColor "BulletColor"
#define SGMLNbulletIndent "bulletIndent"
#define SGMLCBulletIndent "BulletIndent"
#define SGMLBULLET_DEFAULT -1
#define SGMLBULLET_BULLET 0
#define SGMLBULLET_DIAMOND 1
#define SGMLBULLET_SQUARE 2
#define SGMLBULLET_NUMERIC 3
#define SGMLBULLET_ALPHA 4
#define SGMLINHERIT_CLASS NULL
extern WidgetClass sGMLListTextObjectClass;
typedef struct _SGMLListTextRec *SGMLListTextObject;
#ifdef _NO_PROTO
extern Widget CreateSGMLListText();
#else
#if defined(__cplusplus) || defined(c_plusplus)
extern "C" {
#endif
extern Widget SGMLCreateListText(Widget parent,
char *name,
ArgList al,
int ac);
extern void SGMLListTextInsertChild(Widget parent, Widget child);
#if defined(__cplusplus) || defined(c_plusplus)
}
#endif
#endif /* _NO_PROTO */
#define SGMLIsListText(w) XtIsSubclass(w,sGMLListTextObjectClass)
#endif SGMLLISTTEXT_H