summaryrefslogtreecommitdiff
path: root/src/rtfformatting.h
blob: bb49cf1a6fb1ee794d2eed551aa1db2044afa715 (plain)
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
/*
 * Copyright (c) 2004, Nate Nielsen
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 *     * Redistributions of source code must retain the above
 *       copyright notice, this list of conditions and the
 *       following disclaimer.
 *     * Redistributions in binary form must reproduce the
 *       above copyright notice, this list of conditions and
 *       the following disclaimer in the documentation and/or
 *       other materials provided with the distribution.
 *     * The names of contributors to this software may not be
 *       used to endorse or promote products derived from this
 *       software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
 * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
 * DAMAGE.
 *
 *
 * CONTRIBUTORS
 *  Nate Nielsen <nielsen@memberwebs.com>
 *
 */

#ifndef __RTFTEXPROPERTIES_H__
#define __RTFTEXPROPERTIES_H__

/*
 * RtfFormatting
 *
 * For keeping track of all the various transient formatting options
 * within a given Rtf group. Any supported text options (not block)
 * should be added here.
 */
class RtfFormatting
{
public:
	RtfFormatting()
	{
		resetText();
		resetPara();
	}

	RtfFormatting(const RtfFormatting& format)
	{
		copy(format);
	}

	bool textEquals(const RtfFormatting& format) const
	{
		return m_bold == format.m_bold &&
			m_italic == format.m_italic &&
			m_strike == format.m_italic &&
			m_hidden == format.m_hidden &&
			m_underline == format.m_underline &&
			m_color == format.m_color &&
            m_suscript == format.m_suscript;
	}

	bool paraEquals(RtfFormatting& format) const
	{
		return m_style == format.m_style &&
			   m_list == format.m_list &&
			   m_inTbl == format.m_inTbl;
	}

	void copy(const RtfFormatting& format)
	{
		m_bold = format.m_bold;
		m_italic = format.m_italic;
		m_strike = format.m_italic;
		m_hidden = format.m_hidden;
		m_underline = format.m_underline;
		m_color = format.m_color;
        m_suscript = format.m_suscript;

		m_style = format.m_style;
		m_list = format.m_list;
		m_inTbl = format.m_inTbl;
	}

	void resetText()
	{
		m_bold = m_italic = m_strike =
			m_underline = m_hidden = false;
		m_color = -1;
        m_suscript = 0;
	}

	void resetPara()
	{
		m_style = m_list = -1;
		m_inTbl = false;
	}

	bool textIsBold() const
		{ return m_bold; }
	bool textIsItalic() const
		{ return m_italic; }
	bool textIsStrike() const
		{ return m_strike; }
	bool textIsUnderline() const
		{ return m_underline; }
	bool textIsHidden() const
		{ return m_hidden; }
	int textColor() const
		{ return m_color; }
    int textSuScript() const
        { return m_suscript; }
	int paraStyle() const
		{ return m_style; }
	int paraList() const
		{ return m_list; }
	bool paraInTable() const
		{ return m_inTbl; }

	void textSetBold(bool bold)
		{ m_bold = bold; }
	void textSetItalic(bool italic)
		{ m_italic = italic; }
	void textSetStrike(bool strike)
		{ m_strike = strike; }
	void textSetUnderline(bool underline)
		{ m_underline = underline; }
	void textSetHidden(bool hidden)
		{ m_hidden = hidden; }
	void textSetColor(int color)
		{ m_color = color; }
    void textSetSuScript(int suscript)
        { m_suscript = suscript; }
	void paraSetStyle(int style)
		{ m_style = style; }
	void paraSetList(int list)
		{ m_list = list; }
	void paraSetTable(bool inTable)
		{ m_inTbl = inTable; }

    enum
    {
        SUPERSCRIPT = 1,
        SUBSCRIPT
    };

protected:
	bool m_bold;
	bool m_italic;
	bool m_strike;
	bool m_underline;
	bool m_hidden;
    int m_suscript;
	int m_color;

	int m_style;
	int m_list;
	bool m_inTbl;

	// TODO: Character styles
};

#endif // __RTFTEXPROPERTIES_H__