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
|
/*
* Copyright (C) 2004-2012 Geometer Plus <[email protected]>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA.
*/
#include <cctype>
#include "TxtBookReader.h"
#include "../../bookmodel/BookModel.h"
TxtBookReader::TxtBookReader(BookModel &model, const PlainTextFormat &format, const std::string &encoding) : TxtReader(encoding), BookReader(model), myFormat(format) {
}
void TxtBookReader::internalEndParagraph() {
if (!myLastLineIsEmpty) {
//myLineFeedCounter = 0;
myLineFeedCounter = -1; /* Fixed by Hatred: zero value was break LINE INDENT formater -
second line print with indent like new paragraf */
}
myLastLineIsEmpty = true;
endParagraph();
}
bool TxtBookReader::characterDataHandler(std::string &str) {
const char *ptr = str.data();
const char *end = ptr + str.length();
for (; ptr != end; ++ptr) {
if (std::isspace((unsigned char)*ptr)) {
if (*ptr != '\t') {
++mySpaceCounter;
} else {
mySpaceCounter += myFormat.ignoredIndent() + 1; // TODO: implement single option in PlainTextFormat
}
} else {
myLastLineIsEmpty = false;
break;
}
}
if (ptr != end) {
if ((myFormat.breakType() & PlainTextFormat::BREAK_PARAGRAPH_AT_LINE_WITH_INDENT) &&
myNewLine && (mySpaceCounter > myFormat.ignoredIndent())) {
internalEndParagraph();
beginParagraph();
}
addData(str);
if (myInsideContentsParagraph) {
addContentsData(str);
}
myNewLine = false;
}
return true;
}
bool TxtBookReader::newLineHandler() {
if (!myLastLineIsEmpty) {
myLineFeedCounter = -1;
}
myLastLineIsEmpty = true;
++myLineFeedCounter;
myNewLine = true;
mySpaceCounter = 0;
bool paragraphBreak =
(myFormat.breakType() & PlainTextFormat::BREAK_PARAGRAPH_AT_NEW_LINE) ||
((myFormat.breakType() & PlainTextFormat::BREAK_PARAGRAPH_AT_EMPTY_LINE) && (myLineFeedCounter > 0));
if (myFormat.createContentsTable()) {
// if (!myInsideContentsParagraph && (myLineFeedCounter == myFormat.emptyLinesBeforeNewSection() + 1)) {
/* Fixed by Hatred: remove '+ 1' for emptyLinesBeforeNewSection, it looks like very strange
when we should point count of empty string decrised by 1 in settings dialog */
if (!myInsideContentsParagraph && (myLineFeedCounter == myFormat.emptyLinesBeforeNewSection())) {
myInsideContentsParagraph = true;
internalEndParagraph();
insertEndOfSectionParagraph();
beginContentsParagraph();
enterTitle();
pushKind(SECTION_TITLE);
beginParagraph();
paragraphBreak = false;
}
if (myInsideContentsParagraph && (myLineFeedCounter == 1)) {
exitTitle();
endContentsParagraph();
popKind();
myInsideContentsParagraph = false;
paragraphBreak = true;
}
}
if (paragraphBreak) {
internalEndParagraph();
beginParagraph();
}
return true;
}
void TxtBookReader::startDocumentHandler() {
setMainTextModel();
pushKind(REGULAR);
beginParagraph();
myLineFeedCounter = 0;
myInsideContentsParagraph = false;
enterTitle();
myLastLineIsEmpty = true;
myNewLine = true;
mySpaceCounter = 0;
}
void TxtBookReader::endDocumentHandler() {
internalEndParagraph();
}
|