]> git.lyx.org Git - lyx.git/blob - src/mathed/math_textinset.C
more IU
[lyx.git] / src / mathed / math_textinset.C
1 /**
2  * \file math_textinset.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author André Pönitz
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "math_textinset.h"
14 #include "math_data.h"
15 #include "metricsinfo.h"
16 #include "debug.h"
17
18 using std::auto_ptr;
19 using std::endl;
20
21
22 MathTextInset::MathTextInset()
23         : MathNestInset(1)
24 {}
25
26
27 auto_ptr<InsetBase> MathTextInset::clone() const
28 {
29         return auto_ptr<InsetBase>(new MathTextInset(*this));
30 }
31
32
33 MathInset::idx_type MathTextInset::pos2row(pos_type pos) const
34 {
35         for (pos_type r = 0, n = cache_.nargs(); r < n; ++r)
36                 if (pos >= cache_.cellinfo_[r].begin_ && pos <= cache_.cellinfo_[r].end_)
37                         return r;
38         lyxerr << "illegal row for pos " << pos << endl;
39         return 0;
40 }
41
42
43 void MathTextInset::getPos(idx_type /*idx*/, pos_type pos, int & x, int & y) const
44 {
45         idx_type const i = pos2row(pos);
46         pos_type const p = pos - cache_.cellinfo_[i].begin_;
47         cache_.getPos(i, p, x, y);
48         y = cache_.cell(i).yo();
49 }
50
51
52 bool MathTextInset::idxUpDown2(idx_type &, pos_type & pos, bool up,
53         int /*targetx*/) const
54 {
55         // try to move only one screen row up or down if possible
56         idx_type i = pos2row(pos);
57         //lyxerr << "\nMathTextInset::idxUpDown()  i: " << i << endl;
58         MathGridInset::CellInfo const & cell1 = cache_.cellinfo_[i];
59         int const x = cache_.cell(i).pos2x(pos - cell1.begin_, cell1.glue_);
60         if (up) {
61                 if (i == 0)
62                         return false;
63                 --i;
64         } else {
65                 ++i;
66                 if (i == cache_.nargs())
67                         return false;
68         }
69         MathGridInset::CellInfo const & cell2 = cache_.cellinfo_[i];
70         pos = cell2.begin_ + cache_.cell(i).x2pos(x, cell2.glue_);
71         return true;
72 }
73
74
75 void MathTextInset::metrics(MetricsInfo & mi, Dimension & dim) const
76 {
77         cell(0).metrics(mi);
78
79         // we do our own metrics fiddling
80         // save old positional information
81         int const old_xo = cache_.cell(0).xo();
82         int const old_yo = cache_.cell(0).yo();
83
84         // delete old cache
85         cache_ = MathGridInset(1, 0);
86
87         int spaces  = 0;
88         int safe    = 0;
89         int curr    = 0;
90         int begin   = 0;
91         int safepos = 0;
92         for (size_type i = 0, n = cell(0).size(); i < n; ++i) {
93                 //lyxerr << "at pos: " << i << " of " << n << " safepos: " << safepos
94                 //      << " curr: " << curr << " safe: " << safe
95                 //      << " spaces: " << spaces << endl;
96
97                 //   0      1      2      3       4      5      6
98                 // <char> <char> <char> <space> <char> <char> <char>
99                 // ................... <safe>
100                 //                      ..........................<curr>
101                 // ....................<safepos>
102
103                 // Special handling of spaces. We reached a safe position for breaking.
104                 char const c = cell(0)[i]->getChar();
105                 if (c == ' ') {
106                         //lyxerr << "reached safe pos" << endl;
107                         // we don't count the space into the safe pos
108                         safe += curr;
109                         // we reset to this safepos if the next chunk does not fit
110                         safepos = i;
111                         ++spaces;
112                         // restart chunk with size of the space
113                         curr = cell(0)[i].width_;
114                         continue;
115                 }
116
117                 if (c != '\n') {
118                         // This is a regular char. Go on if we either don't care for
119                         // the width limit or have not reached that limit.
120                         curr += cell(0)[i].width_;
121                         if (curr + safe <= mi.base.textwidth)
122                                 continue;
123                 }
124
125                 // We passed the limit. Create a row entry.
126                 //lyxerr << "passed limit" << endl;
127                 cache_.appendRow();
128                 MathArray & ar = cache_.cell(cache_.nargs() - 1);
129                 MathGridInset::CellInfo & row = cache_.cellinfo_.back();
130                 if (c == '\n') {
131                         // we are here because we hit a hard newline
132                         row.begin_ = begin;
133                         row.end_   = i + 1;
134                         begin      = i + 1;    // next chunk starts after the newline
135                         spaces     = 0;
136                 } else if (spaces) {
137                         // but we had a space break before this position.
138                         // so retreat to this position
139                         //lyxerr << "... but had safe pos." << endl;
140                         row.begin_ = begin;
141                         row.end_   = safepos;  // this is position of the safe space
142                         i          = safepos;  // i gets incremented at end of loop
143                         begin      = i + 1;    // next chunk starts after the space
144                         spaces     = 0;
145                 } else {
146                         // This item is too large and it is the only one.
147                         // We have no choice but to produce an overfull box.
148                         lyxerr << "... without safe pos" << endl;
149                         row.begin_ = begin;
150                         row.end_   = i + 1;
151                         begin      = i + 1;
152                 }
153                 ar = MathArray(cell(0).begin() + row.begin_, cell(0).begin() + row.end_);
154                 //lyxerr << "line: " << ar << endl;
155                 // in any case, start the new row with empty boxes
156                 curr = 0;
157                 safe = 0;
158         }
159         // last row: put in everything else
160         cache_.appendRow();
161         MathArray & ar = cache_.cell(cache_.nargs() - 1);
162         MathGridInset::CellInfo & row = cache_.cellinfo_.back();
163         row.begin_ = begin;
164         row.end_   = cell(0).size();
165         ar = MathArray(cell(0).begin() + row.begin_, cell(0).begin() + row.end_);
166         //lyxerr << "last line: " << ar.data() << endl;
167
168         // what to report?
169         cache_.metrics(mi, dim_);
170         //lyxerr << "outer dim: " << dim_ << endl;
171
172         // reset position cache
173         for (idx_type i = 0; i < cache_.nargs(); ++i)
174                 cache_.cell(i).setXY(old_xo, old_yo);
175
176         dim = dim_;
177 }
178
179
180 void MathTextInset::draw(PainterInfo & pi, int x, int y) const
181 {
182         cache_.draw(pi, x + 1, y);
183 }
184
185
186 void MathTextInset::drawSelection(PainterInfo & pi,
187                 idx_type idx1, pos_type pos1, idx_type idx2, pos_type pos2) const
188 {
189         cache_.drawSelection(pi, idx1, pos1, idx2, pos2);
190 }