]> git.lyx.org Git - lyx.git/blob - src/insets/InsetText.cpp
8228fd247d48dd44a7edcfd250c48a472b4b638f
[lyx.git] / src / insets / InsetText.cpp
1 /**
2  * \file InsetText.cpp
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
15 #include "insets/InsetArgument.h"
16 #include "insets/InsetLayout.h"
17
18 #include "buffer_funcs.h"
19 #include "Buffer.h"
20 #include "BufferParams.h"
21 #include "BufferView.h"
22 #include "CompletionList.h"
23 #include "CoordCache.h"
24 #include "Cursor.h"
25 #include "CutAndPaste.h"
26 #include "DispatchResult.h"
27 #include "ErrorList.h"
28 #include "FuncRequest.h"
29 #include "FuncStatus.h"
30 #include "InsetList.h"
31 #include "Intl.h"
32 #include "Language.h"
33 #include "Layout.h"
34 #include "LaTeXFeatures.h"
35 #include "Lexer.h"
36 #include "lyxfind.h"
37 #include "LyXRC.h"
38 #include "MetricsInfo.h"
39 #include "output_docbook.h"
40 #include "output_latex.h"
41 #include "output_xhtml.h"
42 #include "OutputParams.h"
43 #include "output_plaintext.h"
44 #include "Paragraph.h"
45 #include "ParagraphParameters.h"
46 #include "ParIterator.h"
47 #include "Row.h"
48 #include "sgml.h"
49 #include "TexRow.h"
50 #include "texstream.h"
51 #include "TextClass.h"
52 #include "Text.h"
53 #include "TextMetrics.h"
54 #include "TocBackend.h"
55
56 #include "frontends/alert.h"
57 #include "frontends/Painter.h"
58
59 #include "support/bind.h"
60 #include "support/convert.h"
61 #include "support/debug.h"
62 #include "support/gettext.h"
63 #include "support/lassert.h"
64 #include "support/lstrings.h"
65 #include "support/RefChanger.h"
66
67 #include <algorithm>
68
69
70 using namespace std;
71 using namespace lyx::support;
72
73
74 namespace lyx {
75
76 using graphics::PreviewLoader;
77
78
79 /////////////////////////////////////////////////////////////////////
80
81 InsetText::InsetText(Buffer * buf, UsePlain type)
82         : Inset(buf), drawFrame_(false), frame_color_(Color_insetframe),
83         text_(this, type == DefaultLayout)
84 {
85 }
86
87
88 InsetText::InsetText(InsetText const & in)
89         : Inset(in), text_(this, in.text_)
90 {
91         drawFrame_ = in.drawFrame_;
92         frame_color_ = in.frame_color_;
93 }
94
95
96 void InsetText::setBuffer(Buffer & buf)
97 {
98         ParagraphList::iterator end = paragraphs().end();
99         for (ParagraphList::iterator it = paragraphs().begin(); it != end; ++it)
100                 it->setBuffer(buf);
101         Inset::setBuffer(buf);
102 }
103
104
105 void InsetText::setMacrocontextPositionRecursive(DocIterator const & pos)
106 {
107         text_.setMacrocontextPosition(pos);
108
109         ParagraphList::const_iterator pit = paragraphs().begin();
110         ParagraphList::const_iterator pend = paragraphs().end();
111         for (; pit != pend; ++pit) {
112                 InsetList::const_iterator iit = pit->insetList().begin();
113                 InsetList::const_iterator end = pit->insetList().end();
114                 for (; iit != end; ++iit) {
115                         if (InsetText * txt = iit->inset->asInsetText()) {
116                                 DocIterator ppos(pos);
117                                 ppos.push_back(CursorSlice(*txt));
118                                 iit->inset->asInsetText()->setMacrocontextPositionRecursive(ppos);
119                         }
120                 }
121         }
122 }
123
124
125 void InsetText::clear()
126 {
127         ParagraphList & pars = paragraphs();
128         LBUFERR(!pars.empty());
129
130         // This is a gross hack...
131         Layout const & old_layout = pars.begin()->layout();
132
133         pars.clear();
134         pars.push_back(Paragraph());
135         pars.begin()->setInsetOwner(this);
136         pars.begin()->setLayout(old_layout);
137 }
138
139
140 Dimension const InsetText::dimensionHelper(BufferView const & bv) const
141 {
142         TextMetrics const & tm = bv.textMetrics(&text_);
143         Dimension dim = tm.dimension();
144         dim.wid += 2 * TEXT_TO_INSET_OFFSET;
145         dim.des += TEXT_TO_INSET_OFFSET;
146         dim.asc += TEXT_TO_INSET_OFFSET;
147         return dim;
148 }
149
150
151 void InsetText::write(ostream & os) const
152 {
153         os << "Text\n";
154         text_.write(os);
155 }
156
157
158 void InsetText::read(Lexer & lex)
159 {
160         clear();
161
162         // delete the initial paragraph
163         Paragraph oldpar = *paragraphs().begin();
164         paragraphs().clear();
165         ErrorList errorList;
166         lex.setContext("InsetText::read");
167         bool res = text_.read(lex, errorList, this);
168
169         if (!res)
170                 lex.printError("Missing \\end_inset at this point. ");
171
172         // sanity check
173         // ensure we have at least one paragraph.
174         if (paragraphs().empty())
175                 paragraphs().push_back(oldpar);
176         // Force default font, if so requested
177         // This avoids paragraphs in buffer language that would have a
178         // foreign language after a document language change, and it ensures
179         // that all new text in ERT and similar gets the "latex" language,
180         // since new text inherits the language from the last position of the
181         // existing text.  As a side effect this makes us also robust against
182         // bugs in LyX that might lead to font changes in ERT in .lyx files.
183         fixParagraphsFont();
184 }
185
186
187 void InsetText::metrics(MetricsInfo & mi, Dimension & dim) const
188 {
189         TextMetrics & tm = mi.base.bv->textMetrics(&text_);
190
191         //lyxerr << "InsetText::metrics: width: " << mi.base.textwidth << endl;
192
193         // Hand font through to contained lyxtext:
194         tm.font_.fontInfo() = mi.base.font;
195         mi.base.textwidth -= 2 * TEXT_TO_INSET_OFFSET;
196
197         // This can happen when a layout has a left and right margin,
198         // and the view is made very narrow. We can't do better than
199         // to draw it partly out of view (bug 5890).
200         if (mi.base.textwidth < 1)
201                 mi.base.textwidth = 1;
202
203         if (hasFixedWidth())
204                 tm.metrics(mi, dim, mi.base.textwidth);
205         else
206                 tm.metrics(mi, dim);
207         mi.base.textwidth += 2 * TEXT_TO_INSET_OFFSET;
208         dim.asc += TEXT_TO_INSET_OFFSET;
209         dim.des += TEXT_TO_INSET_OFFSET;
210         dim.wid += 2 * TEXT_TO_INSET_OFFSET;
211 }
212
213
214 void InsetText::draw(PainterInfo & pi, int x, int y) const
215 {
216         TextMetrics & tm = pi.base.bv->textMetrics(&text_);
217
218         int const w = tm.width() + TEXT_TO_INSET_OFFSET;
219         int const yframe = y - TEXT_TO_INSET_OFFSET - tm.ascent();
220         int const h = tm.height() + 2 * TEXT_TO_INSET_OFFSET;
221         int const xframe = x + TEXT_TO_INSET_OFFSET / 2;
222         bool change_drawn = false;
223         if (drawFrame_ || pi.full_repaint) {
224                 if (pi.full_repaint)
225                         pi.pain.fillRectangle(xframe, yframe, w, h,
226                                 pi.backgroundColor(this));
227
228                 // Change color of the frame in tracked changes, like for tabulars.
229                 // Only do so if the color is not custom. But do so even if RowPainter
230                 // handles the strike-through already.
231                 Color c;
232                 if (pi.change_.changed()
233                     // Originally, these are the colors with role Text, from role() in
234                     // ColorCache.cpp.  The code is duplicated to avoid depending on Qt
235                     // types, and also maybe it need not match in the future.
236                     && (frameColor() == Color_foreground
237                         || frameColor() == Color_cursor
238                         || frameColor() == Color_preview
239                         || frameColor() == Color_tabularline
240                         || frameColor() == Color_previewframe)) {
241                         c = pi.change_.color();
242                         change_drawn = true;
243                 } else
244                         c = frameColor();
245                 if (drawFrame_)
246                         pi.pain.rectangle(xframe, yframe, w, h, c);
247         }
248         {
249                 Changer dummy = make_change(pi.background_color,
250                                             pi.backgroundColor(this, false));
251                 // The change tracking cue must not be inherited
252                 Changer dummy2 = make_change(pi.change_, Change());
253                 tm.draw(pi, x + TEXT_TO_INSET_OFFSET, y);
254         }
255         if (canPaintChange(*pi.base.bv) && (!change_drawn || pi.change_.deleted()))
256                 // Do not draw the change tracking cue if already done by RowPainter and
257                 // do not draw the cue for INSERTED if the information is already in the
258                 // color of the frame
259                 pi.change_.paintCue(pi, xframe, yframe, xframe + w, yframe + h);
260 }
261
262
263 void InsetText::edit(Cursor & cur, bool front, EntryDirection entry_from)
264 {
265         pit_type const pit = front ? 0 : paragraphs().size() - 1;
266         pos_type pos = front ? 0 : paragraphs().back().size();
267
268         // if visual information is not to be ignored, move to extreme right/left
269         if (entry_from != ENTRY_DIRECTION_IGNORE) {
270                 Cursor temp_cur = cur;
271                 temp_cur.pit() = pit;
272                 temp_cur.pos() = pos;
273                 temp_cur.posVisToRowExtremity(entry_from == ENTRY_DIRECTION_LEFT);
274                 pos = temp_cur.pos();
275         }
276
277         cur.top().setPitPos(pit, pos);
278         cur.finishUndo();
279 }
280
281
282 Inset * InsetText::editXY(Cursor & cur, int x, int y)
283 {
284         return cur.bv().textMetrics(&text_).editXY(cur, x, y);
285 }
286
287
288 void InsetText::doDispatch(Cursor & cur, FuncRequest & cmd)
289 {
290         LYXERR(Debug::ACTION, "InsetText::doDispatch(): cmd: " << cmd);
291
292         // See bug #9042, for instance.
293         if (isPassThru()) {
294                 // Force any new text to latex_language FIXME: This
295                 // should only be necessary in constructor, but new
296                 // paragraphs that are created by pressing enter at
297                 // the start of an existing paragraph get the buffer
298                 // language and not latex_language, so we take this
299                 // brute force approach.
300                 cur.current_font.setLanguage(latex_language);
301                 cur.real_current_font.setLanguage(latex_language);
302         }
303
304         switch (cmd.action()) {
305         case LFUN_PASTE:
306         case LFUN_CLIPBOARD_PASTE:
307         case LFUN_SELECTION_PASTE:
308         case LFUN_PRIMARY_SELECTION_PASTE:
309                 text_.dispatch(cur, cmd);
310                 // If we we can only store plain text, we must reset all
311                 // attributes.
312                 // FIXME: Change only the pasted paragraphs
313                 fixParagraphsFont();
314                 break;
315
316         case LFUN_INSET_DISSOLVE: {
317                 bool const main_inset = text_.isMainText();
318                 bool const target_inset = cmd.argument().empty()
319                         || cmd.getArg(0) == insetName(lyxCode());
320                 // cur.inset() is the tabular when this is a single cell (bug #9954)
321                 bool const one_cell = cur.inset().nargs() == 1;
322
323                 if (!main_inset && target_inset && one_cell) {
324                         // Text::dissolveInset assumes that the cursor
325                         // is inside the Inset.
326                         if (&cur.inset() != this)
327                                 cur.pushBackward(*this);
328                         cur.beginUndoGroup();
329                         text_.dispatch(cur, cmd);
330                         cur.endUndoGroup();
331                 } else
332                         cur.undispatched();
333                 break;
334         }
335
336         default:
337                 text_.dispatch(cur, cmd);
338         }
339
340         if (!cur.result().dispatched())
341                 Inset::doDispatch(cur, cmd);
342 }
343
344
345 bool InsetText::getStatus(Cursor & cur, FuncRequest const & cmd,
346         FuncStatus & status) const
347 {
348         switch (cmd.action()) {
349         case LFUN_INSET_DISSOLVE: {
350                 bool const main_inset = text_.isMainText();
351                 bool const target_inset = cmd.argument().empty()
352                         || cmd.getArg(0) == insetName(lyxCode());
353                 // cur.inset() is the tabular when this is a single cell (bug #9954)
354                 bool const one_cell = cur.inset().nargs() == 1;
355
356                 if (target_inset)
357                         status.setEnabled(!main_inset && one_cell);
358                 return target_inset;
359         }
360
361         case LFUN_ARGUMENT_INSERT: {
362                 string const arg = cmd.getArg(0);
363                 if (arg.empty()) {
364                         status.setEnabled(false);
365                         return true;
366                 }
367                 if (text_.isMainText() || !cur.paragraph().layout().args().empty())
368                         return text_.getStatus(cur, cmd, status);
369
370                 Layout::LaTeXArgMap args = getLayout().args();
371                 Layout::LaTeXArgMap::const_iterator const lait = args.find(arg);
372                 if (lait != args.end()) {
373                         status.setEnabled(true);
374                         for (Paragraph const & par : paragraphs())
375                                 for (auto const & table : par.insetList())
376                                         if (InsetArgument const * ins = table.inset->asInsetArgument())
377                                                 if (ins->name() == arg) {
378                                                         // we have this already
379                                                         status.setEnabled(false);
380                                                         return true;
381                                                 }
382                 } else
383                         status.setEnabled(false);
384                 return true;
385         }
386
387         default:
388                 // Dispatch only to text_ if the cursor is inside
389                 // the text_. It is not for context menus (bug 5797).
390                 bool ret = false;
391                 if (cur.text() == &text_)
392                         ret = text_.getStatus(cur, cmd, status);
393
394                 if (!ret)
395                         ret = Inset::getStatus(cur, cmd, status);
396                 return ret;
397         }
398 }
399
400
401 void InsetText::fixParagraphsFont()
402 {
403         Font font(inherit_font, buffer().params().language);
404         font.setLanguage(latex_language);
405         ParagraphList::iterator par = paragraphs().begin();
406         ParagraphList::iterator const end = paragraphs().end();
407         while (par != end) {
408                 if (par->isPassThru())
409                         par->resetFonts(font);
410                 if (!par->allowParagraphCustomization())
411                         par->params().clear();
412                 ++par;
413         }
414 }
415
416
417 void InsetText::setChange(Change const & change)
418 {
419         ParagraphList::iterator pit = paragraphs().begin();
420         ParagraphList::iterator end = paragraphs().end();
421         for (; pit != end; ++pit) {
422                 pit->setChange(change);
423         }
424 }
425
426
427 void InsetText::acceptChanges()
428 {
429         text_.acceptChanges();
430 }
431
432
433 void InsetText::rejectChanges()
434 {
435         text_.rejectChanges();
436 }
437
438
439 void InsetText::validate(LaTeXFeatures & features) const
440 {
441         features.useInsetLayout(getLayout());
442         for (Paragraph const & p : paragraphs())
443                 p.validate(features);
444 }
445
446
447 void InsetText::latex(otexstream & os, OutputParams const & runparams) const
448 {
449         // This implements the standard way of handling the LaTeX
450         // output of a text inset, either a command or an
451         // environment. Standard collapsable insets should not
452         // redefine this, non-standard ones may call this.
453         InsetLayout const & il = getLayout();
454         if (il.forceOwnlines())
455                 os << breakln;
456         if (!il.latexname().empty()) {
457                 if (il.latextype() == InsetLayout::COMMAND) {
458                         // FIXME UNICODE
459                         // FIXME \protect should only be used for fragile
460                         //    commands, but we do not provide this information yet.
461                         if (runparams.moving_arg)
462                                 os << "\\protect";
463                         os << '\\' << from_utf8(il.latexname());
464                         if (!il.latexargs().empty())
465                                 getArgs(os, runparams);
466                         if (!il.latexparam().empty())
467                                 os << from_utf8(il.latexparam());
468                         os << '{';
469                 } else if (il.latextype() == InsetLayout::ENVIRONMENT) {
470                         if (il.isDisplay())
471                                 os << breakln;
472                         else
473                                 os << safebreakln;
474                         if (runparams.lastid != -1)
475                                 os.texrow().start(runparams.lastid,
476                                                   runparams.lastpos);
477                         os << "\\begin{" << from_utf8(il.latexname()) << "}";
478                         if (!il.latexargs().empty())
479                                 getArgs(os, runparams);
480                         if (!il.latexparam().empty())
481                                 os << from_utf8(il.latexparam());
482                         os << '\n';
483                 }
484         } else {
485                 if (!il.latexargs().empty())
486                         getArgs(os, runparams);
487                 if (!il.latexparam().empty())
488                         os << from_utf8(il.latexparam());
489         }
490
491         if (!il.leftdelim().empty())
492                 os << il.leftdelim();
493
494         OutputParams rp = runparams;
495         if (isPassThru())
496                 rp.pass_thru = true;
497         if (il.isNeedProtect())
498                 rp.moving_arg = true;
499         if (!il.passThruChars().empty())
500                 rp.pass_thru_chars += il.passThruChars();
501         rp.par_begin = 0;
502         rp.par_end = paragraphs().size();
503
504         // Output the contents of the inset
505         latexParagraphs(buffer(), text_, os, rp);
506         runparams.encoding = rp.encoding;
507
508         if (!il.rightdelim().empty())
509                 os << il.rightdelim();
510
511         if (!il.latexname().empty()) {
512                 if (il.latextype() == InsetLayout::COMMAND) {
513                         os << "}";
514                         if (!il.postcommandargs().empty())
515                                 getArgs(os, runparams, true);
516                 } else if (il.latextype() == InsetLayout::ENVIRONMENT) {
517                         // A comment environment doesn't need a % before \n\end
518                         if (il.isDisplay() || runparams.inComment)
519                                 os << breakln;
520                         else
521                                 os << safebreakln;
522                         os << "\\end{" << from_utf8(il.latexname()) << "}" << breakln;
523                         if (!il.isDisplay())
524                                 os.protectSpace(true);
525                 }
526         }
527         if (il.forceOwnlines())
528                 os << breakln;
529 }
530
531
532 int InsetText::plaintext(odocstringstream & os,
533         OutputParams const & runparams, size_t max_length) const
534 {
535         ParagraphList::const_iterator beg = paragraphs().begin();
536         ParagraphList::const_iterator end = paragraphs().end();
537         ParagraphList::const_iterator it = beg;
538         bool ref_printed = false;
539         int len = 0;
540         for (; it != end; ++it) {
541                 if (it != beg) {
542                         os << '\n';
543                         if (runparams.linelen > 0)
544                                 os << '\n';
545                 }
546                 odocstringstream oss;
547                 writePlaintextParagraph(buffer(), *it, oss, runparams, ref_printed, max_length);
548                 docstring const str = oss.str();
549                 os << str;
550                 // FIXME: len is not computed fully correctly; in principle,
551                 // we have to count the characters after the last '\n'
552                 len = str.size();
553                 if (os.str().size() >= max_length)
554                         break;
555         }
556
557         return len;
558 }
559
560
561 int InsetText::docbook(odocstream & os, OutputParams const & runparams) const
562 {
563         ParagraphList::const_iterator const beg = paragraphs().begin();
564
565         if (!undefined())
566                 sgml::openTag(os, getLayout().latexname(),
567                               beg->getID(buffer(), runparams) + getLayout().latexparam());
568
569         docbookParagraphs(text_, buffer(), os, runparams);
570
571         if (!undefined())
572                 sgml::closeTag(os, getLayout().latexname());
573
574         return 0;
575 }
576
577
578 docstring InsetText::xhtml(XHTMLStream & xs, OutputParams const & runparams) const
579 {
580         return insetAsXHTML(xs, runparams, WriteEverything);
581 }
582
583
584 // FIXME XHTML
585 // There are cases where we may need to close open fonts and such
586 // and then re-open them when we are done. This would be the case, e.g.,
587 // if we were otherwise about to write:
588 //              <em>word <div class='foot'>footnote text.</div> emph</em>
589 // The problem isn't so much that the footnote text will get emphasized:
590 // we can handle that with CSS. The problem is that this is invalid XHTML.
591 // One solution would be to make the footnote <span>, but the problem is
592 // completely general, and so we'd have to make absolutely everything into
593 // span. What I think will work is to check if we're about to write "div" and,
594 // if so, try to close fonts, etc.
595 // There are probably limits to how well we can do here, though, and we will
596 // have to rely upon users not putting footnotes inside noun-type insets.
597 docstring InsetText::insetAsXHTML(XHTMLStream & xs, OutputParams const & rp,
598                                   XHTMLOptions opts) const
599 {
600         // we will always want to output all our paragraphs when we are
601         // called this way.
602         OutputParams runparams = rp;
603         runparams.par_begin = 0;
604         runparams.par_end = text().paragraphs().size();
605
606         if (undefined()) {
607                 xs.startDivision(false);
608                 xhtmlParagraphs(text_, buffer(), xs, runparams);
609                 xs.endDivision();
610                 return docstring();
611         }
612
613         InsetLayout const & il = getLayout();
614         if (opts & WriteOuterTag)
615                 xs << html::StartTag(il.htmltag(), il.htmlattr());
616
617         if ((opts & WriteLabel) && !il.counter().empty()) {
618                 BufferParams const & bp = buffer().masterBuffer()->params();
619                 Counters & cntrs = bp.documentClass().counters();
620                 cntrs.step(il.counter(), OutputUpdate);
621                 // FIXME: translate to paragraph language
622                 if (!il.htmllabel().empty()) {
623                         docstring const lbl =
624                                 cntrs.counterLabel(from_utf8(il.htmllabel()), bp.language->code());
625                         // FIXME is this check necessary?
626                         if (!lbl.empty()) {
627                                 xs << html::StartTag(il.htmllabeltag(), il.htmllabelattr());
628                                 xs << lbl;
629                                 xs << html::EndTag(il.htmllabeltag());
630                         }
631                 }
632         }
633
634         if (opts & WriteInnerTag)
635                 xs << html::StartTag(il.htmlinnertag(), il.htmlinnerattr());
636
637         // we will eventually lose information about the containing inset
638         if (!allowMultiPar() || opts == JustText)
639                 runparams.html_make_pars = false;
640         if (il.isPassThru())
641                 runparams.pass_thru = true;
642
643         xs.startDivision(false);
644         xhtmlParagraphs(text_, buffer(), xs, runparams);
645         xs.endDivision();
646
647         if (opts & WriteInnerTag)
648                 xs << html::EndTag(il.htmlinnertag());
649
650         if (opts & WriteOuterTag)
651                 xs << html::EndTag(il.htmltag());
652
653         return docstring();
654 }
655
656
657 void InsetText::getArgs(otexstream & os, OutputParams const & runparams_in,
658                         bool const post) const
659 {
660         OutputParams runparams = runparams_in;
661         runparams.local_font =
662                 &paragraphs()[0].getFirstFontSettings(buffer().masterBuffer()->params());
663         if (isPassThru())
664                 runparams.pass_thru = true;
665         if (post)
666                 latexArgInsetsForParent(paragraphs(), os, runparams,
667                                         getLayout().postcommandargs(), "post:");
668         else
669                 latexArgInsetsForParent(paragraphs(), os, runparams,
670                                         getLayout().latexargs());
671 }
672
673
674 void InsetText::cursorPos(BufferView const & bv,
675                 CursorSlice const & sl, bool boundary, int & x, int & y) const
676 {
677         x = bv.textMetrics(&text_).cursorX(sl, boundary) + TEXT_TO_INSET_OFFSET;
678         y = bv.textMetrics(&text_).cursorY(sl, boundary);
679 }
680
681
682 void InsetText::setText(docstring const & data, Font const & font, bool trackChanges)
683 {
684         clear();
685         Paragraph & first = paragraphs().front();
686         for (unsigned int i = 0; i < data.length(); ++i)
687                 first.insertChar(i, data[i], font, trackChanges);
688 }
689
690
691 void InsetText::setDrawFrame(bool flag)
692 {
693         drawFrame_ = flag;
694 }
695
696
697 ColorCode InsetText::frameColor() const
698 {
699         return frame_color_;
700 }
701
702
703 void InsetText::setFrameColor(ColorCode col)
704 {
705         frame_color_ = col;
706 }
707
708
709 void InsetText::appendParagraphs(ParagraphList & plist)
710 {
711         // There is little we can do here to keep track of changes.
712         // As of 2006/10/20, appendParagraphs is used exclusively by
713         // LyXTabular::setMultiColumn. In this context, the paragraph break
714         // is lost irreversibly and the appended text doesn't really change
715
716         ParagraphList & pl = paragraphs();
717
718         ParagraphList::iterator pit = plist.begin();
719         ParagraphList::iterator ins = pl.insert(pl.end(), *pit);
720         ++pit;
721         mergeParagraph(buffer().params(), pl,
722                        distance(pl.begin(), ins) - 1);
723
724         for_each(pit, plist.end(),
725                  bind(&ParagraphList::push_back, ref(pl), _1));
726 }
727
728
729 void InsetText::addPreview(DocIterator const & text_inset_pos,
730         PreviewLoader & loader) const
731 {
732         ParagraphList::const_iterator pit = paragraphs().begin();
733         ParagraphList::const_iterator pend = paragraphs().end();
734         int pidx = 0;
735
736         DocIterator inset_pos = text_inset_pos;
737         inset_pos.push_back(CursorSlice(*const_cast<InsetText *>(this)));
738
739         for (; pit != pend; ++pit, ++pidx) {
740                 InsetList::const_iterator it  = pit->insetList().begin();
741                 InsetList::const_iterator end = pit->insetList().end();
742                 inset_pos.pit() = pidx;
743                 for (; it != end; ++it) {
744                         inset_pos.pos() = it->pos;
745                         it->inset->addPreview(inset_pos, loader);
746                 }
747         }
748 }
749
750
751 ParagraphList const & InsetText::paragraphs() const
752 {
753         return text_.paragraphs();
754 }
755
756
757 ParagraphList & InsetText::paragraphs()
758 {
759         return text_.paragraphs();
760 }
761
762
763 bool InsetText::insetAllowed(InsetCode code) const
764 {
765         switch (code) {
766         // Arguments and (plain) quotes are also allowed in PassThru insets
767         case ARG_CODE:
768         case QUOTE_CODE:
769                 return true;
770         default:
771                 return !isPassThru();
772         }
773 }
774
775
776 void InsetText::updateBuffer(ParIterator const & it, UpdateType utype)
777 {
778         ParIterator it2 = it;
779         it2.forwardPos();
780         LASSERT(&it2.inset() == this && it2.pit() == 0, return);
781         if (producesOutput()) {
782                 InsetLayout const & il = getLayout();
783                 bool const save_layouts = utype == OutputUpdate && il.htmlisblock();
784                 Counters & cnt = buffer().masterBuffer()->params().documentClass().counters();
785                 if (save_layouts) {
786                         // LYXERR0("Entering " << name());
787                         cnt.clearLastLayout();
788                         // FIXME cnt.saveLastCounter()?
789                 }
790                 buffer().updateBuffer(it2, utype);
791                 if (save_layouts) {
792                         // LYXERR0("Exiting " << name());
793                         cnt.restoreLastLayout();
794                         // FIXME cnt.restoreLastCounter()?
795                 }
796         } else {
797                 DocumentClass const & tclass = buffer().masterBuffer()->params().documentClass();
798                 // Note that we do not need to call:
799                 //      tclass.counters().clearLastLayout()
800                 // since we are saving and restoring the existing counters, etc.
801                 Counters const savecnt = tclass.counters();
802                 tclass.counters().reset();
803                 // we need float information even in note insets (#9760)
804                 tclass.counters().current_float(savecnt.current_float());
805                 tclass.counters().isSubfloat(savecnt.isSubfloat());
806                 buffer().updateBuffer(it2, utype);
807                 tclass.counters() = savecnt;
808         }
809 }
810
811
812 void InsetText::toString(odocstream & os) const
813 {
814         os << text().asString(0, 1, AS_STR_LABEL | AS_STR_INSETS);
815 }
816
817
818 void InsetText::forOutliner(docstring & os, size_t const maxlen,
819                                                         bool const shorten) const
820 {
821         if (!getLayout().isInToc())
822                 return;
823         text().forOutliner(os, maxlen, shorten);
824 }
825
826
827 void InsetText::addToToc(DocIterator const & cdit, bool output_active,
828                                                  UpdateType utype, TocBackend & backend) const
829 {
830         DocIterator dit = cdit;
831         dit.push_back(CursorSlice(const_cast<InsetText &>(*this)));
832         iterateForToc(dit, output_active, utype, backend);
833 }
834
835
836 void InsetText::iterateForToc(DocIterator const & cdit, bool output_active,
837                                                           UpdateType utype, TocBackend & backend) const
838 {
839         DocIterator dit = cdit;
840         // This also ensures that any document has a table of contents
841         shared_ptr<Toc> toc = backend.toc("tableofcontents");
842
843         BufferParams const & bufparams = buffer_->params();
844         int const min_toclevel = bufparams.documentClass().min_toclevel();
845         // we really should have done this before we got here, but it
846         // can't hurt too much to do it again
847         bool const doing_output = output_active && producesOutput();
848
849         // For each paragraph,
850         // * Add a toc item for the paragraph if it is AddToToc--merging adjacent
851         //   paragraphs as needed.
852         // * Traverse its insets and let them add their toc items
853         // * Compute the main table of contents (this is hardcoded)
854         // * Add the list of changes
855         ParagraphList const & pars = paragraphs();
856         pit_type pend = paragraphs().size();
857         // Record pairs {start,end} of where a toc item was opened for a paragraph
858         // and where it must be closed
859         stack<pair<pit_type, pit_type>> addtotoc_stack;
860
861         for (pit_type pit = 0; pit != pend; ++pit) {
862                 Paragraph const & par = pars[pit];
863                 dit.pit() = pit;
864                 dit.pos() = 0;
865
866                 // Custom AddToToc in paragraph layouts (i.e. theorems)
867                 if (par.layout().addToToc() && text().isFirstInSequence(pit)) {
868                         pit_type end =
869                                 openAddToTocForParagraph(pit, dit, output_active, backend);
870                         addtotoc_stack.push({pit, end});
871                 }
872
873                 // if we find an optarg, we'll save it for use later.
874                 InsetArgument const * arginset = nullptr;
875                 for (auto const & table : par.insetList()) {
876                         dit.pos() = table.pos;
877                         table.inset->addToToc(dit, doing_output, utype, backend);
878                         if (InsetArgument const * x = table.inset->asInsetArgument())
879                                 arginset = x;
880                 }
881
882                 // End custom AddToToc in paragraph layouts
883                 while (!addtotoc_stack.empty() && addtotoc_stack.top().second == pit) {
884                         // execute the closing function
885                         closeAddToTocForParagraph(addtotoc_stack.top().first,
886                                                   addtotoc_stack.top().second, backend);
887                         addtotoc_stack.pop();
888                 }
889
890                 // now the toc entry for the paragraph in the main table of contents
891                 int const toclevel = text().getTocLevel(pit);
892                 if (toclevel != Layout::NOT_IN_TOC && toclevel >= min_toclevel) {
893                         // insert this into the table of contents
894                         docstring tocstring;
895                         int const length = (doing_output && utype == OutputUpdate) ?
896                                 INT_MAX : TOC_ENTRY_LENGTH;
897                         if (arginset) {
898                                 tocstring = par.labelString();
899                                 if (!tocstring.empty())
900                                         tocstring += ' ';
901                                 arginset->text().forOutliner(tocstring, length);
902                         } else
903                                 par.forOutliner(tocstring, length);
904                         dit.pos() = 0;
905                         toc->push_back(TocItem(dit, toclevel - min_toclevel,
906                                                tocstring, doing_output));
907                 }
908
909                 // And now the list of changes.
910                 par.addChangesToToc(dit, buffer(), doing_output, backend);
911         }
912 }
913
914
915 pit_type InsetText::openAddToTocForParagraph(pit_type pit,
916                                              DocIterator const & dit,
917                                              bool output_active,
918                                              TocBackend & backend) const
919 {
920         Paragraph const & par = paragraphs()[pit];
921         TocBuilder & b = backend.builder(par.layout().tocType());
922         docstring const label = par.labelString();
923         b.pushItem(dit, label + (label.empty() ? "" : " "), output_active);
924         return text().lastInSequence(pit);
925 }
926
927
928 void InsetText::closeAddToTocForParagraph(pit_type start, pit_type end,
929                                           TocBackend & backend) const
930 {
931         Paragraph const & par = paragraphs()[start];
932         TocBuilder & b = backend.builder(par.layout().tocType());
933         if (par.layout().isTocCaption()) {
934                 docstring str;
935                 text().forOutliner(str, TOC_ENTRY_LENGTH, start, end);
936                 b.argumentItem(str);
937         }
938         b.pop();
939 }
940
941
942 bool InsetText::notifyCursorLeaves(Cursor const & old, Cursor & cur)
943 {
944         if (buffer().isClean())
945                 return Inset::notifyCursorLeaves(old, cur);
946
947         // find text inset in old cursor
948         Cursor insetCur = old;
949         int scriptSlice = insetCur.find(this);
950         // we can try to continue here. returning true means
951         // the cursor is "now" invalid. which it was.
952         LASSERT(scriptSlice != -1, return true);
953         insetCur.cutOff(scriptSlice);
954         LASSERT(&insetCur.inset() == this, return true);
955
956         // update the old paragraph's words
957         insetCur.paragraph().updateWords();
958
959         return Inset::notifyCursorLeaves(old, cur);
960 }
961
962
963 bool InsetText::completionSupported(Cursor const & cur) const
964 {
965         //LASSERT(&cur.bv().cursor().inset() == this, return false);
966         return text_.completionSupported(cur);
967 }
968
969
970 bool InsetText::inlineCompletionSupported(Cursor const & cur) const
971 {
972         return completionSupported(cur);
973 }
974
975
976 bool InsetText::automaticInlineCompletion() const
977 {
978         return lyxrc.completion_inline_text;
979 }
980
981
982 bool InsetText::automaticPopupCompletion() const
983 {
984         return lyxrc.completion_popup_text;
985 }
986
987
988 bool InsetText::showCompletionCursor() const
989 {
990         return lyxrc.completion_cursor_text;
991 }
992
993
994 CompletionList const * InsetText::createCompletionList(Cursor const & cur) const
995 {
996         return completionSupported(cur) ? text_.createCompletionList(cur) : 0;
997 }
998
999
1000 docstring InsetText::completionPrefix(Cursor const & cur) const
1001 {
1002         if (!completionSupported(cur))
1003                 return docstring();
1004         return text_.completionPrefix(cur);
1005 }
1006
1007
1008 bool InsetText::insertCompletion(Cursor & cur, docstring const & s,
1009         bool finished)
1010 {
1011         if (!completionSupported(cur))
1012                 return false;
1013
1014         return text_.insertCompletion(cur, s, finished);
1015 }
1016
1017
1018 void InsetText::completionPosAndDim(Cursor const & cur, int & x, int & y,
1019         Dimension & dim) const
1020 {
1021         TextMetrics const & tm = cur.bv().textMetrics(&text_);
1022         tm.completionPosAndDim(cur, x, y, dim);
1023 }
1024
1025
1026 string InsetText::contextMenu(BufferView const &, int, int) const
1027 {
1028         string context_menu = contextMenuName();
1029         if (context_menu != InsetText::contextMenuName())
1030                 context_menu += ";" + InsetText::contextMenuName();
1031         return context_menu;
1032 }
1033
1034
1035 string InsetText::contextMenuName() const
1036 {
1037         return "context-edit";
1038 }
1039
1040
1041 docstring InsetText::toolTipText(docstring prefix, size_t const len) const
1042 {
1043         OutputParams rp(&buffer().params().encoding());
1044         rp.for_tooltip = true;
1045         odocstringstream oss;
1046         oss << prefix;
1047
1048         ParagraphList::const_iterator beg = paragraphs().begin();
1049         ParagraphList::const_iterator end = paragraphs().end();
1050         ParagraphList::const_iterator it = beg;
1051         bool ref_printed = false;
1052
1053         for (; it != end; ++it) {
1054                 if (it != beg)
1055                         oss << '\n';
1056                 writePlaintextParagraph(buffer(), *it, oss, rp, ref_printed, len);
1057                 if (oss.tellp() >= 0 && size_t(oss.tellp()) > len)
1058                         break;
1059         }
1060         docstring str = oss.str();
1061         support::truncateWithEllipsis(str, len);
1062         return str;
1063 }
1064
1065
1066 InsetText::XHTMLOptions operator|(InsetText::XHTMLOptions a1, InsetText::XHTMLOptions a2)
1067 {
1068         return static_cast<InsetText::XHTMLOptions>((int)a1 | (int)a2);
1069 }
1070
1071 } // namespace lyx