]> git.lyx.org Git - lyx.git/blob - src/bufferview_funcs.cpp
Fixed some lines that were too long. It compiled afterwards.
[lyx.git] / src / bufferview_funcs.cpp
1 /**
2  * \file bufferview_funcs.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Lars Gullik Bjønnes
7  * \author Jean-Marc Lasgouttes
8  * \author John Levon
9  * \author Angus Leeming
10  * \author Juergen Vigna
11  *
12  * Full author contact details are available in file CREDITS.
13  */
14
15 #include <config.h>
16
17 #include "bufferview_funcs.h"
18
19 #include "Buffer.h"
20 #include "BufferParams.h"
21 #include "BufferView.h"
22 #include "Cursor.h"
23 #include "CoordCache.h"
24 #include "gettext.h"
25 #include "Language.h"
26 #include "Color.h"
27 #include "Lexer.h"
28
29 #include "frontends/alert.h"
30
31 #include "insets/InsetCommand.h"
32 #include "insets/InsetText.h"
33
34 #include "support/convert.h"
35
36 #include <sstream>
37
38 using std::istringstream;
39 using std::ostringstream;
40 using std::string;
41 using std::vector;
42 using std::find;
43
44
45 namespace lyx {
46
47 using support::bformat;
48
49 namespace bv_funcs {
50
51 // Set data using font and toggle
52 // If successful, returns true
53 bool font2string(Font const & font, bool const toggle, string & data)
54 {
55         string lang = "ignore";
56         if (font.language())
57                 lang = font.language()->lang();
58
59         ostringstream os;
60         os << "family " << font.family() << '\n'
61            << "series " << font.series() << '\n'
62            << "shape " << font.shape() << '\n'
63            << "size " << font.size() << '\n'
64            << "emph " << font.emph() << '\n'
65            << "underbar " << font.underbar() << '\n'
66            << "noun " << font.noun() << '\n'
67            << "number " << font.number() << '\n'
68            << "color " << font.color() << '\n'
69            << "language " << lang << '\n'
70            << "toggleall " << convert<string>(toggle);
71         data = os.str();
72         return true;
73 }
74
75
76 // Set font and toggle using data
77 // If successful, returns true
78 bool string2font(string const & data, Font & font, bool & toggle)
79 {
80         istringstream is(data);
81         Lexer lex(0,0);
82         lex.setStream(is);
83
84         int nset = 0;
85         while (lex.isOK()) {
86                 string token;
87                 if (lex.next())
88                         token = lex.getString();
89
90                 if (token.empty() || !lex.next())
91                         break;
92
93                 if (token == "family") {
94                         int const next = lex.getInteger();
95                         font.setFamily(Font::FONT_FAMILY(next));
96
97                 } else if (token == "series") {
98                         int const next = lex.getInteger();
99                         font.setSeries(Font::FONT_SERIES(next));
100
101                 } else if (token == "shape") {
102                         int const next = lex.getInteger();
103                         font.setShape(Font::FONT_SHAPE(next));
104
105                 } else if (token == "size") {
106                         int const next = lex.getInteger();
107                         font.setSize(Font::FONT_SIZE(next));
108
109                 } else if (token == "emph" || token == "underbar" ||
110                            token == "noun" || token == "number") {
111
112                         int const next = lex.getInteger();
113                         Font::FONT_MISC_STATE const misc =
114                                 Font::FONT_MISC_STATE(next);
115
116                         if (token == "emph")
117                             font.setEmph(misc);
118                         else if (token == "underbar")
119                                 font.setUnderbar(misc);
120                         else if (token == "noun")
121                                 font.setNoun(misc);
122                         else if (token == "number")
123                                 font.setNumber(misc);
124
125                 } else if (token == "color") {
126                         int const next = lex.getInteger();
127                         font.setColor(Color::color(next));
128
129                 } else if (token == "language") {
130                         string const next = lex.getString();
131                         if (next == "ignore")
132                                 font.setLanguage(ignore_language);
133                         else
134                                 font.setLanguage(languages.getLanguage(next));
135
136                 } else if (token == "toggleall") {
137                         toggle = lex.getBool();
138
139                 } else {
140                         // Unrecognised token
141                         break;
142                 }
143
144                 ++nset;
145         }
146         return (nset > 0);
147 }
148
149
150 // the next two should probably go elsewhere
151 // this give the position relative to (0, baseline) of outermost
152 // paragraph
153 Point coordOffset(BufferView const & bv, DocIterator const & dit,
154                 bool boundary)
155 {
156         int x = 0;
157         int y = 0;
158         int lastw = 0;
159
160         // Addup ontribution of nested insets, from inside to outside,
161         // keeping the outer paragraph for a special handling below
162         for (size_t i = dit.depth() - 1; i >= 1; --i) {
163                 CursorSlice const & sl = dit[i];
164                 int xx = 0;
165                 int yy = 0;
166                 
167                 // get relative position inside sl.inset()
168                 sl.inset().cursorPos(bv, sl, boundary && ((i+1) == dit.depth()), xx, yy);
169                 
170                 // Make relative position inside of the edited inset relative to sl.inset()
171                 x += xx;
172                 y += yy;
173                 
174                 // In case of an RTL inset, the edited inset will be positioned to the left
175                 // of xx:yy
176                 if (sl.text()) {
177                         bool boundary_i = boundary && i + 1 == dit.depth();
178                         bool rtl = sl.text()->isRTL(*bv.buffer(), sl, boundary_i);
179                         if (rtl)
180                                 x -= lastw;
181                 }
182                 
183                 // remember width for the case that sl.inset() is positioned in an RTL inset
184                 lastw = sl.inset().width();
185                 
186                 //lyxerr << "Cursor::getPos, i: "
187                 // << i << " x: " << xx << " y: " << y << endl;
188         }
189
190         // Add contribution of initial rows of outermost paragraph
191         CursorSlice const & sl = dit[0];
192         ParagraphMetrics const & pm = bv.parMetrics(sl.text(), sl.pit());
193         BOOST_ASSERT(!pm.rows().empty());
194         y -= pm.rows()[0].ascent();
195 #if 1
196         // FIXME: document this mess
197         size_t rend;
198         if (sl.pos() > 0 && dit.depth() == 1) {
199                 int pos = sl.pos();
200                 if (pos && boundary)
201                         --pos;
202 //              lyxerr << "coordOffset: boundary:" << boundary << " depth:" << dit.depth() << " pos:" << pos << " sl.pos:" << sl.pos() << std::endl;
203                 rend = pm.pos2row(pos);
204         } else
205                 rend = pm.pos2row(sl.pos());
206 #else
207         size_t rend = pm.pos2row(sl.pos());
208 #endif
209         for (size_t rit = 0; rit != rend; ++rit)
210                 y += pm.rows()[rit].height();
211         y += pm.rows()[rend].ascent();
212         
213         // Make relative position from the nested inset now bufferview absolute.
214         int xx = dit.bottom().text()->cursorX(bv, dit.bottom(), boundary && dit.depth() == 1);
215         x += xx;
216         
217         // In the RTL case place the nested inset at the left of the cursor in 
218         // the outer paragraph
219         bool boundary_1 = boundary && 1 == dit.depth();
220         bool rtl = dit.bottom().text()->isRTL(*bv.buffer(), dit.bottom(), boundary_1);
221         if (rtl)
222                 x -= lastw;
223         
224         return Point(x, y);
225 }
226
227
228 Point getPos(BufferView const & bv, DocIterator const & dit, bool boundary)
229 {
230         CursorSlice const & bot = dit.bottom();
231         CoordCache::ParPosCache::const_iterator cache_it =
232                 bv.coordCache().getParPos().find(bot.text());
233         if (cache_it == bv.coordCache().getParPos().end())
234                 return Point(-1, -1);
235
236         CoordCache::InnerParPosCache const & cache = cache_it->second;
237         CoordCache::InnerParPosCache::const_iterator it = cache.find(bot.pit());
238         if (it == cache.end()) {
239                 //lyxerr << "cursor out of view" << std::endl;
240                 return Point(-1, -1);
241         }
242         Point p = coordOffset(bv, dit, boundary); // offset from outer paragraph
243         p.y_ += it->second.y_;
244         return p;
245 }
246
247
248 // this could be used elsewhere as well?
249 // FIXME: This does not work within mathed!
250 CurStatus status(BufferView const * bv, DocIterator const & dit)
251 {
252         CoordCache::InnerParPosCache const & cache =
253                 bv->coordCache().getParPos().find(dit.bottom().text())->second;
254
255         if (cache.find(dit.bottom().pit()) != cache.end())
256                 return CUR_INSIDE;
257         else if (dit.bottom().pit() < bv->anchor_ref())
258                 return CUR_ABOVE;
259         else
260                 return CUR_BELOW;
261 }
262
263 namespace {
264
265 bool findNextInset(DocIterator & dit,
266                    vector<Inset_code> const & codes,
267                    string const & contents)
268 {
269         DocIterator tmpdit = dit;
270
271         while (tmpdit) {
272                 Inset const * inset = tmpdit.nextInset();
273                 if (inset
274                     && find(codes.begin(), codes.end(), inset->lyxCode()) != codes.end()
275                     && (contents.empty() ||
276                         static_cast<InsetCommand const *>(inset)->getContents() == contents)) {
277                         dit = tmpdit;
278                         return true;
279                 }
280                 tmpdit.forwardInset();
281         }
282
283         return false;
284 }
285
286 } // namespace anon
287
288
289 bool findInset(DocIterator & dit, vector<Inset_code> const & codes,
290                bool same_content)
291 {
292         string contents;
293         DocIterator tmpdit = dit;
294         tmpdit.forwardInset();
295         if (!tmpdit)
296                 return false;
297
298         if (same_content) {
299                 Inset const * inset = tmpdit.nextInset();
300                 if (inset
301                     && find(codes.begin(), codes.end(), inset->lyxCode()) != codes.end()) {
302                         contents = static_cast<InsetCommand const *>(inset)->getContents();
303                 }
304         }
305
306         if (!findNextInset(tmpdit, codes, contents)) {
307                 if (dit.depth() != 1 || dit.pit() != 0 || dit.pos() != 0) {
308                         tmpdit  = doc_iterator_begin(tmpdit.bottom().inset());
309                         if (!findNextInset(tmpdit, codes, contents)) {
310                                 return false;
311                         }
312                 } else
313                         return false;
314         }
315
316         dit = tmpdit;
317         return true;
318 }
319
320
321 void findInset(DocIterator & dit, Inset_code code, bool same_content)
322 {
323         findInset(dit, vector<Inset_code>(1, code), same_content);
324 }
325
326
327 void gotoInset(BufferView * bv, vector<Inset_code> const & codes,
328                bool same_content)
329 {
330         Cursor tmpcur = bv->cursor();
331         if (!findInset(tmpcur, codes, same_content)) {
332                 bv->cursor().message(_("No more insets"));
333                 return;
334         }
335
336         tmpcur.clearSelection();
337         bv->setCursor(tmpcur);
338 }
339
340
341 void gotoInset(BufferView * bv, Inset_code code, bool same_content)
342 {
343         gotoInset(bv, vector<Inset_code>(1, code), same_content);
344 }
345
346
347 } // namespace bv_funcs
348
349
350 } // namespace lyx