]> git.lyx.org Git - lyx.git/blob - src/insets/insettext.C
shift some text related stuff from BufferView::dispatch to LyXText
[lyx.git] / src / insets / insettext.C
1 /**
2  * \file insettext.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Jürgen Vigna
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "insettext.h"
14 #include "insetnewline.h"
15
16 #include "buffer.h"
17 #include "bufferparams.h"
18 #include "BufferView.h"
19 #include "CutAndPaste.h"
20 #include "cursor.h"
21 #include "debug.h"
22 #include "dispatchresult.h"
23 #include "errorlist.h"
24 #include "funcrequest.h"
25 #include "gettext.h"
26 #include "intl.h"
27 #include "LColor.h"
28 #include "lyxfind.h"
29 #include "lyxlex.h"
30 #include "lyxrc.h"
31 #include "lyxtext.h"
32 #include "metricsinfo.h"
33 #include "output_docbook.h"
34 #include "output_latex.h"
35 #include "output_linuxdoc.h"
36 #include "output_plaintext.h"
37 #include "paragraph.h"
38 #include "paragraph_funcs.h"
39 #include "ParagraphParameters.h"
40 #include "rowpainter.h"
41 #include "lyxrow.h"
42 #include "sgml.h"
43 #include "texrow.h"
44 #include "undo.h"
45
46 #include "frontends/Alert.h"
47 #include "frontends/font_metrics.h"
48 #include "frontends/LyXView.h"
49 #include "frontends/Painter.h"
50
51 #include "support/lyxalgo.h" // lyx::count
52
53 #include <boost/bind.hpp>
54
55 using bv_funcs::replaceSelection;
56
57 using lyx::pos_type;
58
59 using lyx::graphics::PreviewLoader;
60
61 using lyx::support::isStrUnsignedInt;
62 using lyx::support::strToUnsignedInt;
63
64 using std::endl;
65 using std::for_each;
66 using std::max;
67 using std::string;
68 using std::auto_ptr;
69 using std::ostream;
70 using std::vector;
71
72
73 InsetText::InsetText(BufferParams const & bp)
74         : autoBreakRows_(false), drawFrame_(NEVER),
75           frame_color_(LColor::insetframe), text_(0, true)
76 {
77         paragraphs().push_back(Paragraph());
78         paragraphs().begin()->layout(bp.getLyXTextClass().defaultLayout());
79         if (bp.tracking_changes)
80                 paragraphs().begin()->trackChanges();
81         init();
82 }
83
84
85 InsetText::InsetText(InsetText const & in)
86         : UpdatableInset(in), text_(in.text_.bv_owner, true)
87 {
88         // this is ugly...
89         operator=(in);
90 }
91
92
93 void InsetText::operator=(InsetText const & in)
94 {
95         UpdatableInset::operator=(in);
96         autoBreakRows_ = in.autoBreakRows_;
97         drawFrame_ = in.drawFrame_;
98         frame_color_ = in.frame_color_;
99         text_ = LyXText(in.text_.bv_owner, true);
100         text_.paragraphs() = in.text_.paragraphs();
101         init();
102 }
103
104
105 void InsetText::init()
106 {
107         ParagraphList::iterator pit = paragraphs().begin();
108         ParagraphList::iterator end = paragraphs().end();
109         for (; pit != end; ++pit)
110                 pit->setInsetOwner(this);
111         old_par = -1;
112         in_insetAllowed = false;
113 }
114
115
116 void InsetText::clear(bool just_mark_erased)
117 {
118         ParagraphList & pars = paragraphs();
119         if (just_mark_erased) {
120                 ParagraphList::iterator it = pars.begin();
121                 ParagraphList::iterator end = pars.end();
122                 for (; it != end; ++it)
123                         it->markErased();
124                 return;
125         }
126
127         // This is a gross hack...
128         LyXLayout_ptr old_layout = pars.begin()->layout();
129
130         pars.clear();
131         pars.push_back(Paragraph());
132         pars.begin()->setInsetOwner(this);
133         pars.begin()->layout(old_layout);
134 }
135
136
137 auto_ptr<InsetBase> InsetText::clone() const
138 {
139         return auto_ptr<InsetBase>(new InsetText(*this));
140 }
141
142
143 void InsetText::write(Buffer const & buf, ostream & os) const
144 {
145         os << "Text\n";
146         text_.write(buf, os);
147 }
148
149
150 void InsetText::read(Buffer const & buf, LyXLex & lex)
151 {
152         clear(false);
153
154 #warning John, look here. Doesnt make much sense.
155         if (buf.params().tracking_changes)
156                 paragraphs().begin()->trackChanges();
157
158         // delete the initial paragraph
159         Paragraph oldpar = *paragraphs().begin();
160         paragraphs().clear();
161         bool res = text_.read(buf, lex);
162         init();
163
164         if (!res) {
165                 lex.printError("Missing \\end_inset at this point. "
166                                            "Read: `$$Token'");
167         }
168
169         // sanity check
170         // ensure we have at least one par.
171         if (paragraphs().empty())
172                 paragraphs().push_back(oldpar);
173 }
174
175
176 void InsetText::metrics(MetricsInfo & mi, Dimension & dim) const
177 {
178         //lyxerr << "InsetText::metrics: width: " << mi.base.textwidth << endl;
179         setViewCache(mi.base.bv);
180         mi.base.textwidth -= 2 * TEXT_TO_INSET_OFFSET;
181         text_.metrics(mi, dim);
182         dim.asc += TEXT_TO_INSET_OFFSET;
183         dim.des += TEXT_TO_INSET_OFFSET;
184         dim.wid += 2 * TEXT_TO_INSET_OFFSET;
185         mi.base.textwidth += 2 * TEXT_TO_INSET_OFFSET;
186         dim_ = dim;
187         font_ = mi.base.font;
188         text_.font_ = mi.base.font;
189 }
190
191
192 void InsetText::draw(PainterInfo & pi, int x, int y) const
193 {
194         BOOST_ASSERT(!text_.paragraphs().begin()->rows.empty());
195         // update our idea of where we are
196         setPosCache(pi, x, y);
197
198         // repaint the background if needed
199         x += TEXT_TO_INSET_OFFSET;
200         if (backgroundColor() != LColor::background)
201                 clearInset(pi.pain, x, y);
202
203         BufferView * bv = pi.base.bv;
204         bv->hideCursor();
205
206         if (!owner())
207                 x += scroll();
208         y += bv->top_y() - text_.ascent();
209
210         text_.draw(pi, x, y);
211
212         if (drawFrame_ == ALWAYS || drawFrame_ == LOCKED)
213                 drawFrame(pi.pain, xo_, yo_ - bv->top_y());
214 }
215
216
217 void InsetText::drawSelection(PainterInfo & pi, int x, int y) const
218 {
219         text_.drawSelection(pi, x, y);
220 }
221
222
223 void InsetText::drawFrame(Painter & pain, int x, int y) const
224 {
225         int const ttoD2 = TEXT_TO_INSET_OFFSET / 2;
226         int const frame_x = x + ttoD2;
227         int const frame_y = y - dim_.asc + ttoD2;
228         int const frame_w = dim_.wid - TEXT_TO_INSET_OFFSET;
229         int const frame_h = dim_.asc + dim_.des - TEXT_TO_INSET_OFFSET;
230         pain.rectangle(frame_x, frame_y, frame_w, frame_h, frameColor());
231 }
232
233
234 void InsetText::updateLocal(LCursor & cur)
235 {
236         if (!autoBreakRows_ && paragraphs().size() > 1) {
237                 // collapseParagraphs
238                 while (paragraphs().size() > 1) {
239                         ParagraphList::iterator const first = paragraphs().begin();
240                         ParagraphList::iterator second = first;
241                         ++second;
242                         size_t const first_par_size = first->size();
243
244                         if (!first->empty() &&
245                                         !second->empty() &&
246                                         !first->isSeparator(first_par_size - 1)) {
247                                 first->insertChar(first_par_size, ' ');
248                         }
249
250                         cur.clearSelection();
251                         mergeParagraph(cur.bv().buffer()->params(), paragraphs(), first);
252                 }
253         }
254
255         if (!cur.selection())
256                 cur.resetAnchor();
257
258         LyXView * lv = cur.bv().owner();
259         lv->view_state_changed();
260         lv->updateMenubar();
261         lv->updateToolbar();
262         if (old_par != cur.par()) {
263                 lv->setLayout(text_.getPar(cur.par())->layout()->name());
264                 old_par = cur.par();
265         }
266 }
267
268
269 string const InsetText::editMessage() const
270 {
271         return _("Opened Text Inset");
272 }
273
274
275 void InsetText::sanitizeEmptyText(BufferView & bv)
276 {
277         if (paragraphs().size() == 1
278             && paragraphs().begin()->empty()
279             && bv.getParentLanguage(this) != text_.current_font.language()) {
280                 LyXFont font(LyXFont::ALL_IGNORE);
281                 font.setLanguage(bv.getParentLanguage(this));
282                 text_.setFont(font, false);
283         }
284 }
285
286
287 void InsetText::edit(LCursor & cur, bool left)
288 {
289         //lyxerr << "InsetText: edit left/right" << endl;
290         old_par = -1;
291         setViewCache(&cur.bv());
292         int const par = left ? 0 : paragraphs().size() - 1;
293         int const pos = left ? 0 : paragraphs().back().size();
294         text_.setCursor(cur.current(), par, pos);
295         cur.clearSelection();
296         finishUndo();
297         sanitizeEmptyText(cur.bv());
298         updateLocal(cur);
299         dispatch(cur, FuncRequest(LFUN_PARAGRAPH_UPDATE));
300 }
301
302
303 void InsetText::edit(LCursor & cur, int x, int y)
304 {
305         lyxerr << "InsetText::edit xy" << endl;
306         old_par = -1;
307         text_.edit(cur, x, y);
308         //sanitizeEmptyText(cur.bv());
309         //updateLocal(cur);
310         //cur.bv().updateParagraphDialog();
311 }
312
313
314 DispatchResult InsetText::priv_dispatch(LCursor & cur, FuncRequest const & cmd)
315 {
316         //lyxerr << "InsetText::priv_dispatch (begin), act: "
317         //      << cmd.action << " " << endl;
318
319         setViewCache(&cur.bv());
320
321         bool was_empty = paragraphs().begin()->empty() && paragraphs().size() == 1;
322         DispatchResult result = text_.dispatch(cur, cmd);
323
324         // If the action has deleted all text in the inset, we need
325         // to change the language to the language of the surronding
326         // text.
327         // Why this cleverness? (Andre')
328         if (!was_empty && paragraphs().begin()->empty() &&
329             paragraphs().size() == 1) {
330                 LyXFont font(LyXFont::ALL_IGNORE);
331                 font.setLanguage(cur.bv().getParentLanguage(this));
332                 text_.setFont(font, false);
333         }
334
335         //lyxerr << "InsetText::priv_dispatch (end)" << endl;
336         return result;
337 }
338
339
340 int InsetText::latex(Buffer const & buf, ostream & os,
341                      OutputParams const & runparams) const
342 {
343         TexRow texrow;
344         latexParagraphs(buf, paragraphs(), os, texrow, runparams);
345         return texrow.rows();
346 }
347
348
349 int InsetText::plaintext(Buffer const & buf, ostream & os,
350                      OutputParams const & runparams) const
351 {
352         ParagraphList::const_iterator beg = paragraphs().begin();
353         ParagraphList::const_iterator end = paragraphs().end();
354         ParagraphList::const_iterator it = beg;
355         for (; it != end; ++it)
356                 asciiParagraph(buf, *it, os, runparams, it == beg);
357
358         //FIXME: Give the total numbers of lines
359         return 0;
360 }
361
362
363 int InsetText::linuxdoc(Buffer const & buf, ostream & os,
364                         OutputParams const & runparams) const
365 {
366         linuxdocParagraphs(buf, paragraphs(), os, runparams);
367         return 0;
368 }
369
370
371 int InsetText::docbook(Buffer const & buf, ostream & os,
372                        OutputParams const & runparams) const
373 {
374         docbookParagraphs(buf, paragraphs(), os, runparams);
375         return 0;
376 }
377
378
379 void InsetText::validate(LaTeXFeatures & features) const
380 {
381         for_each(paragraphs().begin(), paragraphs().end(),
382                  boost::bind(&Paragraph::validate, _1, boost::ref(features)));
383 }
384
385
386 void InsetText::getCursorPos(CursorSlice const & cur, int & x, int & y) const
387 {
388         x = text_.cursorX(cur);
389         y = text_.cursorY(cur);
390 }
391
392
393 bool InsetText::insetAllowed(InsetOld::Code code) const
394 {
395         // in_insetAllowed is a really gross hack,
396         // to allow us to call the owner's insetAllowed
397         // without stack overflow, which can happen
398         // when the owner uses InsetCollapsable::insetAllowed()
399         bool ret = true;
400         if (in_insetAllowed)
401                 return ret;
402         in_insetAllowed = true;
403         if (owner())
404                 ret = owner()->insetAllowed(code);
405         in_insetAllowed = false;
406         return ret;
407 }
408
409
410 bool InsetText::showInsetDialog(BufferView *) const
411 {
412         return false;
413 }
414
415
416 void InsetText::getLabelList(Buffer const & buffer,
417                              std::vector<string> & list) const
418 {
419         ParagraphList::const_iterator pit = paragraphs().begin();
420         ParagraphList::const_iterator pend = paragraphs().end();
421         for (; pit != pend; ++pit) {
422                 InsetList::const_iterator beg = pit->insetlist.begin();
423                 InsetList::const_iterator end = pit->insetlist.end();
424                 for (; beg != end; ++beg)
425                         beg->inset->getLabelList(buffer, list);
426         }
427 }
428
429
430 void InsetText::markNew(bool track_changes)
431 {
432         ParagraphList::iterator pit = paragraphs().begin();
433         ParagraphList::iterator end = paragraphs().end();
434         for (; pit != end; ++pit) {
435                 if (track_changes) {
436                         pit->trackChanges();
437                 } else {
438                         // no-op when not tracking
439                         pit->cleanChanges();
440                 }
441         }
442 }
443
444
445 void InsetText::setText(string const & data, LyXFont const & font)
446 {
447         clear(false);
448         for (unsigned int i = 0; i < data.length(); ++i)
449                 paragraphs().begin()->insertChar(i, data[i], font);
450 }
451
452
453 void InsetText::setAutoBreakRows(bool flag)
454 {
455         if (flag != autoBreakRows_) {
456                 autoBreakRows_ = flag;
457                 if (!flag)
458                         removeNewlines();
459         }
460 }
461
462
463 void InsetText::setDrawFrame(DrawFrame how)
464 {
465         drawFrame_ = how;
466 }
467
468
469 LColor_color InsetText::frameColor() const
470 {
471         return LColor::color(frame_color_);
472 }
473
474
475 void InsetText::setFrameColor(LColor_color col)
476 {
477         frame_color_ = col;
478 }
479
480
481 void InsetText::setViewCache(BufferView const * bv) const
482 {
483         if (bv && bv != text_.bv_owner) {
484                 //lyxerr << "setting view cache from "
485                 //      << text_.bv_owner << " to " << bv << "\n";
486                 text_.bv_owner = const_cast<BufferView *>(bv);
487         }
488 }
489
490
491 void InsetText::removeNewlines()
492 {
493         ParagraphList::iterator it = paragraphs().begin();
494         ParagraphList::iterator end = paragraphs().end();
495         for (; it != end; ++it)
496                 for (int i = 0; i < it->size(); ++i)
497                         if (it->isNewline(i))
498                                 it->erase(i);
499 }
500
501
502 int InsetText::scroll(bool /*recursive*/) const
503 {
504         return UpdatableInset::scroll(false);
505 }
506
507
508 void InsetText::clearInset(Painter & pain, int x, int y) const
509 {
510         int w = dim_.wid;
511         int h = dim_.asc + dim_.des;
512         int ty = y - dim_.asc;
513
514         if (ty < 0) {
515                 h += ty;
516                 ty = 0;
517         }
518         if (ty + h > pain.paperHeight())
519                 h = pain.paperHeight();
520         if (xo_ + w > pain.paperWidth())
521                 w = pain.paperWidth();
522         pain.fillRectangle(x + 1, ty + 1, w - 3, h - 1, backgroundColor());
523 }
524
525
526 LyXText * InsetText::getText(int i) const
527 {
528         return (i == 0) ? const_cast<LyXText*>(&text_) : 0;
529 }
530
531
532 void InsetText::appendParagraphs(Buffer * buffer, ParagraphList & plist)
533 {
534 #warning FIXME Check if Changes stuff needs changing here. (Lgb)
535 // And it probably does. You have to take a look at this John. (Lgb)
536 #warning John, have a look here. (Lgb)
537         ParagraphList::iterator pit = plist.begin();
538         ParagraphList::iterator ins = paragraphs().insert(paragraphs().end(), *pit);
539         ++pit;
540         mergeParagraph(buffer->params(), paragraphs(), boost::prior(ins));
541
542         ParagraphList::iterator pend = plist.end();
543         for (; pit != pend; ++pit)
544                 paragraphs().push_back(*pit);
545 }
546
547
548 void InsetText::addPreview(PreviewLoader & loader) const
549 {
550         ParagraphList::const_iterator pit = paragraphs().begin();
551         ParagraphList::const_iterator pend = paragraphs().end();
552
553         for (; pit != pend; ++pit) {
554                 InsetList::const_iterator it  = pit->insetlist.begin();
555                 InsetList::const_iterator end = pit->insetlist.end();
556                 for (; it != end; ++it)
557                         it->inset->addPreview(loader);
558         }
559 }
560
561
562 ParagraphList & InsetText::paragraphs() const
563 {
564         return const_cast<ParagraphList &>(text_.paragraphs());
565 }