about summary refs log tree commit diff stats
path: root/src/AttrList.h
blob: c466714d4058dd5ccda5ed2f6c593e6fd27a2a9a (plain) (blame)
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
#if !defined(__ATTRLIST_H)
#define __ATTRLIST_H

#include <HText.h>
#include <HTMLDTD.h>

enum {
    ABS_OFF = 0,
    STACK_OFF = 0,
    STACK_ON,
    ABS_ON
};

#define STARTAT 8

enum {
    DSTYLE_LINK = HTML_A + STARTAT,
    DSTYLE_STATUS = HTML_ELEMENTS + STARTAT,
    DSTYLE_ALINK,		/* active link */
    DSTYLE_NORMAL,		/* default attributes */
    DSTYLE_OPTION,		/* option on the option screen */
    DSTYLE_VALUE,		/* value on the option screen */
    DSTYLE_HIGH,
    DSTYLE_CANDY,		/* possibly going to vanish */
    DSTYLE_WHEREIS,		/* whereis search target */
    DSTYLE_ELEMENTS
};

typedef struct {
    int color;			/* color highlighting to be done */
    int mono;			/* mono highlighting to be done */
    int cattr;			/* attributes to go with the color */
} HTCharStyle;

#define HText_characterStyle CTRACE((tfp,"HTC called from %s/%d\n",__FILE__,__LINE__));_internal_HTC

#undef HText_characterStyle
#define HText_characterStyle _internal_HTC

#if defined(USE_COLOR_STYLE)
extern void _internal_HTC(HText *text, int style, int dir);

#define TEMPSTRINGSIZE 256
extern char class_string[TEMPSTRINGSIZE];

/* stack of attributes during page rendering */
#define MAX_LAST_STYLES 128
extern int last_styles[MAX_LAST_STYLES];
extern int last_colorattr_ptr;

#endif

#endif