]> git.lyx.org Git - lyx.git/blob - src/ParagraphMetrics.cpp
Merge branch 'master' of git.lyx.org:lyx
[lyx.git] / src / ParagraphMetrics.cpp
1 /**
2  * \file Paragraph.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Asger Alstrup
7  * \author Lars Gullik Bjønnes
8  * \author Jean-Marc Lasgouttes
9  * \author Angus Leeming
10  * \author John Levon
11  * \author André Pönitz
12  * \author Dekel Tsur
13  * \author Jürgen Vigna
14  *
15  * Full author contact details are available in file CREDITS.
16  */
17
18 #include <config.h>
19
20 #include "ParagraphMetrics.h"
21
22 #include "Buffer.h"
23 #include "BufferParams.h"
24 #include "BufferView.h"
25 #include "Counters.h"
26 #include "Encoding.h"
27 #include "Language.h"
28 #include "LaTeXFeatures.h"
29 #include "Layout.h"
30 #include "Font.h"
31 #include "LyXRC.h"
32 #include "Row.h"
33 #include "OutputParams.h"
34 #include "sgml.h"
35 #include "TextClass.h"
36 #include "TexRow.h"
37
38 #include "frontends/FontMetrics.h"
39
40 #include "insets/InsetBibitem.h"
41 #include "insets/InsetArgument.h"
42
43 #include "support/lassert.h"
44 #include "support/debug.h"
45 #include "support/ExceptionMessage.h"
46 #include "support/gettext.h"
47 #include "support/lstrings.h"
48 #include "support/textutils.h"
49
50 #include "support/bind.h"
51 #include <boost/crc.hpp>
52
53 #include <algorithm>
54 #include <list>
55 #include <stack>
56 #include <sstream>
57
58 using namespace std;
59 using namespace lyx::support;
60
61 namespace lyx {
62
63
64 ParagraphMetrics::ParagraphMetrics(Paragraph const & par) :
65         position_(-1), par_(&par)
66 {}
67
68
69 ParagraphMetrics & ParagraphMetrics::operator=(
70         ParagraphMetrics const & pm)
71 {
72         rows_ = pm.rows_;
73         dim_ = pm.dim_;
74         par_ = pm.par_;
75         position_ = pm.position_;
76         return *this;
77 }
78
79
80 void ParagraphMetrics::reset(Paragraph const & par)
81 {
82         par_ = &par;
83         dim_ = Dimension();
84         //position_ = -1;
85 }
86
87
88 size_t ParagraphMetrics::computeRowSignature(Row const & row,
89                 BufferView const & bv) const
90 {
91         boost::crc_32_type crc;
92         for (pos_type i = row.pos(); i < row.endpos(); ++i) {
93                 if (par_->isInset(i)) {
94                         Inset const * in = par_->getInset(i);
95                         Dimension const d = in->dimension(bv);
96                         int const b[] = { d.wid, d.asc, d.des };
97                         crc.process_bytes(b, sizeof(b));
98                 } else {
99                         char_type const b[] = { par_->getChar(i) };
100                         crc.process_bytes(b, sizeof(char_type));
101                 }
102                 if (bv.buffer().params().track_changes) {
103                         Change change = par_->lookupChange(i);
104                         char_type const b[] = { static_cast<char_type>(change.type) };
105                         // 1 byte is enough to encode Change::Type
106                         crc.process_bytes(b, 1);
107                 }
108         }
109
110         pos_type const b1[] = { row.sel_beg, row.sel_end };
111         crc.process_bytes(b1, sizeof(b1));
112
113         Dimension const & d = row.dimension();
114         int const b2[] = { row.begin_margin_sel,
115                            row.end_margin_sel,
116                            d.wid, d.asc, d.des };
117         crc.process_bytes(b2, sizeof(b2));
118         crc.process_bytes(&row.separator, sizeof(row.separator));
119
120         return crc.checksum();
121 }
122
123
124 void ParagraphMetrics::setPosition(int position)
125 {
126         position_ = position;
127 }
128
129
130 Row & ParagraphMetrics::getRow(pos_type pos, bool boundary)
131 {
132         LBUFERR(!rows().empty());
133
134         // If boundary is set we should return the row on which
135         // the character before is inside.
136         if (pos > 0 && boundary)
137                 --pos;
138
139         RowList::iterator rit = rows_.end();
140         RowList::iterator const begin = rows_.begin();
141
142         for (--rit; rit != begin && rit->pos() > pos; --rit)
143                 ;
144
145         return *rit;
146 }
147
148
149 Row const & ParagraphMetrics::getRow(pos_type pos, bool boundary) const
150 {
151         LBUFERR(!rows().empty());
152
153         // If boundary is set we should return the row on which
154         // the character before is inside.
155         if (pos > 0 && boundary)
156                 --pos;
157
158         RowList::const_iterator rit = rows_.end();
159         RowList::const_iterator const begin = rows_.begin();
160
161         for (--rit; rit != begin && rit->pos() > pos; --rit)
162                 ;
163
164         return *rit;
165 }
166
167
168 size_t ParagraphMetrics::pos2row(pos_type pos) const
169 {
170         LBUFERR(!rows().empty());
171
172         RowList::const_iterator rit = rows_.end();
173         RowList::const_iterator const begin = rows_.begin();
174
175         for (--rit; rit != begin && rit->pos() > pos; --rit)
176                 ;
177
178         return rit - begin;
179 }
180
181
182 void ParagraphMetrics::dump() const
183 {
184         lyxerr << "Paragraph::dump: rows.size(): " << rows_.size() << endl;
185         for (size_t i = 0; i != rows_.size(); ++i) {
186                 lyxerr << "  row " << i << ":   " << rows_[i];
187         }
188 }
189
190 int ParagraphMetrics::rightMargin(BufferView const & bv) const
191 {
192         BufferParams const & params = bv.buffer().params();
193         DocumentClass const & tclass = params.documentClass();
194         frontend::FontMetrics const & fm = theFontMetrics(params.getFont());
195         int const r_margin =
196                 bv.rightMargin()
197                 + fm.signedWidth(tclass.rightmargin())
198                 + fm.signedWidth(par_->layout().rightmargin)
199                 * 4 / (par_->getDepth() + 4);
200
201         return r_margin;
202 }
203
204
205 // FIXME: this code seems bogus. Audit and rewrite (see bug #9860).
206 bool ParagraphMetrics::hfillExpansion(Row const & row, pos_type pos) const
207 {
208         if (!par_->isHfill(pos))
209                 return false;
210
211         LASSERT(pos >= row.pos() && pos < row.endpos(), return false);
212
213         // expand at the end of a row only if there is another hfill on the same row
214         if (pos == row.endpos() - 1) {
215                 for (pos_type i = row.pos(); i < pos; i++) {
216                         if (par_->isHfill(i))
217                                 return true;
218                 }
219                 return false;
220         }
221
222         // expand at the beginning of a row only if it is the first row of a paragraph
223         if (pos == row.pos())
224                 return pos == 0;
225
226         // do not expand in some labels
227         if (par_->layout().margintype != MARGIN_MANUAL && pos < par_->beginOfBody())
228                 return false;
229
230         // if there is anything between the first char of the row and
231         // the specified position that is neither a newline nor an hfill,
232         // the hfill will be expanded, otherwise it won't
233         for (pos_type i = row.pos(); i < pos; i++) {
234                 if (!par_->isNewline(i) && !par_->isEnvSeparator(i) && !par_->isHfill(i))
235                         return true;
236         }
237         return false;
238 }
239
240 } // namespace lyx