Subversion Repositories Kolibri OS

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
8335 maxcodehac 1
 
2
   GNU UnRTF, a command-line program to convert RTF documents to other formats.
3
   Copyright (C) 2000,2001 Zachary Thayer Smith
4
5
 
6
   it under the terms of the GNU General Public License as published by
7
   the Free Software Foundation; either version 2 of the License, or
8
   (at your option) any later version.
9
10
 
11
   but WITHOUT ANY WARRANTY; without even the implied warranty of
12
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
   GNU General Public License for more details.
14
15
 
16
   along with this program; if not, write to the Free Software
17
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18
19
 
20
=============================================================================*/
21
22
 
23
 
24
 * Module name:    attr
25
 * Author name:    Zach Smith
26
 * Create date:    1 Aug 2001
27
 * Purpose:        Definitions for attribute stack module.
28
 *----------------------------------------------------------------------
29
 * Changes:
30
 * 01 Aug 01, tuorfa@yahoo.com: moved code over from convert.c
31
 * 06 Aug 01, tuorfa@yahoo.com: added several attributes
32
 * 18 Sep 01, tuorfa@yahoo.com: updates for AttrStack paradigm
33
 *--------------------------------------------------------------------*/
34
35
 
36
	ATTR_NONE=0,
37
	ATTR_BOLD, ATTR_ITALIC,
38
39
 
40
41
 
42
43
 
44
45
 
46
	ATTR_FONTFACE,
47
	ATTR_FOREGROUND, ATTR_BACKGROUND,
48
	ATTR_CAPS,
49
	ATTR_SMALLCAPS,
50
51
 
52
	ATTR_OUTLINE,
53
	ATTR_EMBOSS,
54
	ATTR_ENGRAVE,
55
56
 
57
	ATTR_STRIKE,
58
	ATTR_DBL_STRIKE,
59
60
 
61
	/* ATTR_CONDENSE */
62
};
63
64
 
65
 
66
 
67
68
 
69
70
 
71
72
 
73
extern void attrstack_drop();
74
extern void attrstack_express_all();
75
76
 
77
78
 
79
80
 
81
82
 
83
84
 
85