]> git.lyx.org Git - lyx.git/blob - src/CutAndPaste.cpp
Remove obsolete (and false) comment.
[lyx.git] / src / CutAndPaste.cpp
1 /**
2  * \file CutAndPaste.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  * \author Lars Gullik Bjønnes
8  * \author Alfredo Braunstein
9  * \author Michael Gerz
10  *
11  * Full author contact details are available in file CREDITS.
12  */
13
14 #include <config.h>
15
16 #include "CutAndPaste.h"
17
18 #include "BranchList.h"
19 #include "Buffer.h"
20 #include "buffer_funcs.h"
21 #include "BufferList.h"
22 #include "BufferParams.h"
23 #include "BufferView.h"
24 #include "Changes.h"
25 #include "Cursor.h"
26 #include "Encoding.h"
27 #include "ErrorList.h"
28 #include "FuncCode.h"
29 #include "FuncRequest.h"
30 #include "InsetIterator.h"
31 #include "InsetList.h"
32 #include "Language.h"
33 #include "LyX.h"
34 #include "LyXRC.h"
35 #include "Text.h"
36 #include "Paragraph.h"
37 #include "ParagraphParameters.h"
38 #include "ParIterator.h"
39 #include "TextClass.h"
40
41 #include "insets/InsetBibitem.h"
42 #include "insets/InsetBranch.h"
43 #include "insets/InsetCitation.h"
44 #include "insets/InsetCommand.h"
45 #include "insets/InsetFlex.h"
46 #include "insets/InsetGraphics.h"
47 #include "insets/InsetGraphicsParams.h"
48 #include "insets/InsetInclude.h"
49 #include "insets/InsetLabel.h"
50 #include "insets/InsetTabular.h"
51
52 #include "mathed/MathData.h"
53 #include "mathed/InsetMath.h"
54 #include "mathed/InsetMathHull.h"
55 #include "mathed/InsetMathRef.h"
56 #include "mathed/MathSupport.h"
57
58 #include "support/debug.h"
59 #include "support/docstream.h"
60 #include "support/gettext.h"
61 #include "support/lassert.h"
62 #include "support/limited_stack.h"
63 #include "support/lstrings.h"
64 #include "support/lyxalgo.h"
65 #include "support/TempFile.h"
66 #include "support/unique_ptr.h"
67
68 #include "frontends/alert.h"
69 #include "frontends/Clipboard.h"
70 #include "frontends/Selection.h"
71
72 #include <string>
73 #include <tuple>
74
75 using namespace std;
76 using namespace lyx::support;
77 using lyx::frontend::Clipboard;
78
79 namespace lyx {
80
81 namespace {
82
83 typedef pair<pit_type, int> PitPosPair;
84
85 typedef limited_stack<pair<ParagraphList, DocumentClassConstPtr> > CutStack;
86
87 CutStack theCuts(10);
88 // persistent selection, cleared until the next selection
89 CutStack selectionBuffer(1);
90 // temporary scratch area
91 CutStack tempCut(1);
92
93 // store whether the tabular stack is newer than the normal copy stack
94 // FIXME: this is a workaround for bug 1919. Should be removed for 1.5,
95 // when we (hopefully) have a one-for-all paste mechanism.
96 bool dirty_tabular_stack_ = false;
97
98
99 bool checkPastePossible(int index)
100 {
101         return size_t(index) < theCuts.size() && !theCuts[index].first.empty();
102 }
103
104
105 struct PasteReturnValue {
106         PasteReturnValue(pit_type r_pit, pos_type r_pos, bool r_nu) :
107           pit(r_pit), pos(r_pos), needupdate(r_nu)
108         {}
109
110         pit_type pit;
111         pos_type pos;
112         bool needupdate;
113 };
114
115 PasteReturnValue
116 pasteSelectionHelper(DocIterator const & cur, ParagraphList const & parlist,
117                      DocumentClassConstPtr oldDocClass, cap::BranchAction branchAction,
118                      ErrorList & errorlist)
119 {
120         Buffer const & buffer = *cur.buffer();
121         pit_type pit = cur.pit();
122         pos_type pos = cur.pos();
123         bool need_update = false;
124
125         if (parlist.empty())
126                 return PasteReturnValue(pit, pos, need_update);
127
128         // Check whether we paste into an inset that does not
129         // produce output (needed for label duplicate check)
130         bool in_active_inset = cur.paragraph().inInset().producesOutput();
131         if (in_active_inset) {
132                 for (size_type sl = 0 ; sl < cur.depth() ; ++sl) {
133                         Paragraph const & outer_par = cur[sl].paragraph();
134                         if (!outer_par.inInset().producesOutput()) {
135                                 in_active_inset = false;
136                                 break;
137                         }
138                 }
139         }
140
141         InsetText * target_inset = cur.inset().asInsetText();
142         if (!target_inset) {
143                 InsetTabular * it = cur.inset().asInsetTabular();
144                 target_inset = it ? it->cell(cur.idx())->asInsetText() : nullptr;
145         }
146         LASSERT(target_inset, return PasteReturnValue(pit, pos, need_update));
147
148         ParagraphList & pars = target_inset->paragraphs();
149         LASSERT(pos <= pars[pit].size(),
150                         return PasteReturnValue(pit, pos, need_update));
151
152         // Make a copy of the CaP paragraphs.
153         ParagraphList insertion = parlist;
154
155         // Now remove all out of the pars which is NOT allowed in the
156         // new environment and set also another font if that is required.
157
158         // Merge paragraphs that are to be pasted into a text inset
159         // that does not allow multiple pars.
160         InsetText * inset_text = target_inset->asInsetText();
161         if (inset_text && !inset_text->allowMultiPar()) {
162                 while (insertion.size() > 1)
163                         mergeParagraph(buffer.params(), insertion, 0);
164         }
165
166         // Convert newline to paragraph break in ParbreakIsNewline
167         if (target_inset->getLayout().parbreakIsNewline()
168             || pars[pit].layout().parbreak_is_newline) {
169                 for (size_t i = 0; i != insertion.size(); ++i) {
170                         for (pos_type j = 0; j != insertion[i].size(); ++j) {
171                                 if (insertion[i].isNewline(j)) {
172                                         // do not track deletion of newline
173                                         insertion[i].eraseChar(j, false);
174                                         insertion[i].setInsetOwner(target_inset);
175                                         breakParagraphConservative(
176                                                         buffer.params(),
177                                                         insertion, i, j);
178                                         break;
179                                 }
180                         }
181                 }
182         }
183
184         // Prevent to paste uncodable characters in verbatim and ERT.
185         // The encoding is inherited from the context here.
186         docstring uncodable_content;
187         if (target_inset->getLayout().isPassThru() && cur.getEncoding()) {
188                 odocstringstream res;
189                 Encoding const * e = cur.getEncoding();
190                 for (size_t i = 0; i != insertion.size(); ++i) {
191                         pos_type end = insertion[i].size();
192                         for (pos_type j = 0; j != end; ++j) {
193                                 // skip insets
194                                 if (insertion[i].isInset(j))
195                                         continue;
196                                 char_type const c = insertion[i].getChar(j);
197                                 if (!e->encodable(c)) {
198                                         // do not track deletion
199                                         res.put(c);
200                                         insertion[i].eraseChar(j, false);
201                                         --end;
202                                         --j;
203                                 }
204                         }
205                 }
206                 docstring const uncodable = res.str();
207                 if (!uncodable.empty()) {
208                         if (uncodable.size() == 1)
209                                 uncodable_content = bformat(_("The character \"%1$s\" is uncodable in this verbatim context "
210                                                       "and thus has not been pasted."),
211                                                     uncodable);
212                         else
213                                 uncodable_content = bformat(_("The characters \"%1$s\" are uncodable in this verbatim context "
214                                                       "and thus have not been pasted."),
215                                                     uncodable);
216                 }
217         }
218
219         // set the paragraphs to plain layout if necessary
220         DocumentClassConstPtr newDocClass = buffer.params().documentClassPtr();
221         if (cur.inset().usePlainLayout()) {
222                 bool forcePlainLayout = target_inset->forcePlainLayout();
223                 Layout const & plainLayout = newDocClass->plainLayout();
224                 Layout const & defaultLayout = newDocClass->defaultLayout();
225                 for (auto & par : insertion) {
226                         Layout const & parLayout = par.layout();
227                         if (forcePlainLayout || parLayout == defaultLayout)
228                                 par.setLayout(plainLayout);
229                 }
230         } else {
231                 // check if we need to reset from plain layout
232                 Layout const & defaultLayout = newDocClass->defaultLayout();
233                 Layout const & plainLayout = newDocClass->plainLayout();
234                 for (auto & par : insertion) {
235                         Layout const & parLayout = par.layout();
236                         if (parLayout == plainLayout)
237                                 par.setLayout(defaultLayout);
238                 }
239         }
240
241         InsetText in(cur.buffer());
242         // Make sure there is no class difference.
243         in.paragraphs().clear();
244         // This works without copying any paragraph data because we have
245         // a specialized swap method for ParagraphList. This is important
246         // since we store pointers to insets at some places and we don't
247         // want to invalidate them.
248         insertion.swap(in.paragraphs());
249         cap::switchBetweenClasses(oldDocClass, newDocClass, in, errorlist);
250         // Do this here since switchBetweenClasses clears the errorlist
251         if (!uncodable_content.empty())
252                 errorlist.push_back(ErrorItem(_("Uncodable content"), uncodable_content));
253         insertion.swap(in.paragraphs());
254
255         ParagraphList::iterator tmpbuf = insertion.begin();
256         int depth_delta = pars[pit].params().depth() - tmpbuf->params().depth();
257
258         depth_type max_depth = pars[pit].getMaxDepthAfter();
259
260         for (; tmpbuf != insertion.end(); ++tmpbuf) {
261                 // If we have a negative jump so that the depth would
262                 // go below 0 depth then we have to redo the delta to
263                 // this new max depth level so that subsequent
264                 // paragraphs are aligned correctly to this paragraph
265                 // at level 0.
266                 if (int(tmpbuf->params().depth()) + depth_delta < 0)
267                         depth_delta = 0;
268
269                 // Set the right depth so that we are not too deep or shallow.
270                 tmpbuf->params().depth(tmpbuf->params().depth() + depth_delta);
271                 if (tmpbuf->params().depth() > max_depth)
272                         tmpbuf->params().depth(max_depth);
273
274                 // Set max_depth for the next paragraph
275                 max_depth = tmpbuf->getMaxDepthAfter();
276
277                 // Set the inset owner of this paragraph.
278                 tmpbuf->setInsetOwner(target_inset);
279                 for (pos_type i = 0; i < tmpbuf->size(); ++i) {
280                         // do not track deletion of invalid insets
281                         if (Inset * inset = tmpbuf->getInset(i))
282                                 if (!target_inset->insetAllowed(inset->lyxCode()))
283                                         tmpbuf->eraseChar(i--, false);
284                 }
285
286                 if (lyxrc.ct_markup_copied)
287                         tmpbuf->setChange(Change(buffer.params().track_changes ?
288                                                  Change::INSERTED : Change::UNCHANGED));
289         }
290
291         bool const empty = pars[pit].empty();
292         if (!empty) {
293                 // Make the buf exactly the same layout as the cursor
294                 // paragraph.
295                 insertion.begin()->makeSameLayout(pars[pit]);
296         }
297
298         // Prepare the paragraphs and insets for insertion.
299         insertion.swap(in.paragraphs());
300
301         InsetIterator const i_end = inset_iterator_end(in);
302         for (InsetIterator it = inset_iterator_begin(in); it != i_end; ++it) {
303                 // Even though this will also be done later, it has to be done here
304                 // since some inset might try to access the buffer() member.
305                 it->setBuffer(const_cast<Buffer &>(buffer));
306                 switch (it->lyxCode()) {
307
308                 case MATH_HULL_CODE: {
309                         // check for equation labels and resolve duplicates
310                         InsetMathHull * ins = it->asInsetMath()->asHullInset();
311                         std::vector<InsetLabel *> labels = ins->getLabels();
312                         for (size_t i = 0; i != labels.size(); ++i) {
313                                 if (!labels[i])
314                                         continue;
315                                 InsetLabel * lab = labels[i];
316                                 docstring const oldname = lab->getParam("name");
317                                 lab->updateLabel(oldname, in_active_inset);
318                                 // We need to update the buffer reference cache.
319                                 need_update = true;
320                                 docstring const newname = lab->getParam("name");
321                                 if (oldname == newname)
322                                         continue;
323                                 // adapt the references
324                                 for (InsetIterator itt = inset_iterator_begin(in);
325                                       itt != i_end; ++itt) {
326                                         if (itt->lyxCode() == REF_CODE) {
327                                                 InsetCommand * ref = itt->asInsetCommand();
328                                                 if (ref->getParam("reference") == oldname)
329                                                         ref->setParam("reference", newname);
330                                         } else if (itt->lyxCode() == MATH_REF_CODE) {
331                                                 InsetMathRef * mi = itt->asInsetMath()->asRefInset();
332                                                 // this is necessary to prevent an uninitialized
333                                                 // buffer when the RefInset is in a MathBox.
334                                                 // FIXME audit setBuffer calls
335                                                 mi->setBuffer(const_cast<Buffer &>(buffer));
336                                                 if (mi->getTarget() == oldname)
337                                                         mi->changeTarget(newname);
338                                         }
339                                 }
340                         }
341                         break;
342                 }
343
344                 case LABEL_CODE: {
345                         // check for duplicates
346                         InsetLabel & lab = static_cast<InsetLabel &>(*it);
347                         docstring const oldname = lab.getParam("name");
348                         lab.updateLabel(oldname, in_active_inset);
349                         // We need to update the buffer reference cache.
350                         need_update = true;
351                         docstring const newname = lab.getParam("name");
352                         if (oldname == newname)
353                                 break;
354                         // adapt the references
355                         for (InsetIterator itt = inset_iterator_begin(in); itt != i_end; ++itt) {
356                                 if (itt->lyxCode() == REF_CODE) {
357                                         InsetCommand & ref = static_cast<InsetCommand &>(*itt);
358                                         if (ref.getParam("reference") == oldname)
359                                                 ref.setParam("reference", newname);
360                                 } else if (itt->lyxCode() == MATH_REF_CODE) {
361                                         InsetMathRef * mi = itt->asInsetMath()->asRefInset();
362                                         // this is necessary to prevent an uninitialized
363                                         // buffer when the RefInset is in a MathBox.
364                                         // FIXME audit setBuffer calls
365                                         mi->setBuffer(const_cast<Buffer &>(buffer));
366                                         if (mi->getTarget() == oldname)
367                                                 mi->changeTarget(newname);
368                                 }
369                         }
370                         break;
371                 }
372
373                 case INCLUDE_CODE: {
374                         InsetInclude & inc = static_cast<InsetInclude &>(*it);
375                         inc.updateCommand();
376                         // We need to update the list of included files.
377                         need_update = true;
378                         break;
379                 }
380
381                 case CITE_CODE: {
382                         InsetCitation & cit = static_cast<InsetCitation &>(*it);
383                         // This actually only needs to be done if the cite engine
384                         // differs, but we do it in general.
385                         cit.redoLabel();
386                         // We need to update the list of citations.
387                         need_update = true;
388                         break;
389                 }
390
391                 case BIBITEM_CODE: {
392                         // check for duplicates
393                         InsetBibitem & bib = static_cast<InsetBibitem &>(*it);
394                         docstring const oldkey = bib.getParam("key");
395                         bib.updateCommand(oldkey, false);
396                         // We need to update the buffer reference cache.
397                         need_update = true;
398                         docstring const newkey = bib.getParam("key");
399                         if (oldkey == newkey)
400                                 break;
401                         // adapt the references
402                         for (InsetIterator itt = inset_iterator_begin(in);
403                              itt != i_end; ++itt) {
404                                 if (itt->lyxCode() == CITE_CODE) {
405                                         InsetCommand * ref = itt->asInsetCommand();
406                                         if (ref->getParam("key") == oldkey)
407                                                 ref->setParam("key", newkey);
408                                 }
409                         }
410                         break;
411                 }
412
413                 case BRANCH_CODE: {
414                         // check if branch is known to target buffer
415                         // or its master
416                         InsetBranch & br = static_cast<InsetBranch &>(*it);
417                         docstring const name = br.branch();
418                         if (name.empty())
419                                 break;
420                         bool const is_child = (&buffer != buffer.masterBuffer());
421                         BranchList branchlist = buffer.params().branchlist();
422                         if ((!is_child && branchlist.find(name))
423                             || (is_child && (branchlist.find(name)
424                                 || buffer.masterBuffer()->params().branchlist().find(name))))
425                                 break;
426                         switch(branchAction) {
427                         case cap::BRANCH_ADD: {
428                                 // This is for a temporary buffer, so simply create the branch.
429                                 // Must not use lyx::dispatch(), since tmpbuffer has no view.
430                                 DispatchResult dr;
431                                 const_cast<Buffer&>(buffer).dispatch(FuncRequest(LFUN_BRANCH_ADD, name), dr);
432                                 break;
433                         }
434                         case cap::BRANCH_ASK: {
435                                 docstring text = bformat(
436                                         _("The pasted branch \"%1$s\" is undefined.\n"
437                                           "Do you want to add it to the document's branch list?"),
438                                         name);
439                                 if (frontend::Alert::prompt(_("Unknown branch"),
440                                           text, 0, 1, _("&Add"), _("&Don't Add")) != 0)
441                                         break;
442                                 lyx::dispatch(FuncRequest(LFUN_BRANCH_ADD, name));
443                                 break;
444                         }
445                         case cap::BRANCH_IGNORE:
446                                 break;
447                         }
448                         // We need to update the list of branches.
449                         need_update = true;
450                         break;
451                 }
452
453                 default:
454                         break; // nothing
455                 }
456         }
457         insertion.swap(in.paragraphs());
458
459         // Split the paragraph for inserting the buf if necessary.
460         if (!empty)
461                 breakParagraphConservative(buffer.params(), pars, pit, pos);
462
463         // Paste it!
464         if (empty) {
465                 pars.insert(lyx::next(pars.begin(), pit),
466                             insertion.begin(),
467                             insertion.end());
468
469                 // merge the empty par with the last par of the insertion
470                 mergeParagraph(buffer.params(), pars,
471                                pit + insertion.size() - 1);
472         } else {
473                 pars.insert(lyx::next(pars.begin(), pit + 1),
474                             insertion.begin(),
475                             insertion.end());
476
477                 // merge the first par of the insertion with the current par
478                 mergeParagraph(buffer.params(), pars, pit);
479         }
480
481         // Store the new cursor position.
482         pit_type last_paste = pit + insertion.size() - 1;
483         pit_type startpit = pit;
484         pit = last_paste;
485         pos = pars[last_paste].size();
486
487         // FIXME Should we do it here, or should we let updateBuffer() do it?
488         // Set paragraph buffers. It's important to do this right away
489         // before something calls Inset::buffer() and causes a crash.
490         for (pit_type p = startpit; p <= pit; ++p)
491                 pars[p].setInsetBuffers(const_cast<Buffer &>(buffer));
492
493         // Join (conditionally) last pasted paragraph with next one, i.e.,
494         // the tail of the spliced document paragraph
495         if (!empty && last_paste + 1 != pit_type(pars.size())) {
496                 if (pars[last_paste + 1].hasSameLayout(pars[last_paste])) {
497                         mergeParagraph(buffer.params(), pars, last_paste);
498                 } else if (pars[last_paste + 1].empty()) {
499                         pars[last_paste + 1].makeSameLayout(pars[last_paste]);
500                         mergeParagraph(buffer.params(), pars, last_paste);
501                 } else if (pars[last_paste].empty()) {
502                         pars[last_paste].makeSameLayout(pars[last_paste + 1]);
503                         mergeParagraph(buffer.params(), pars, last_paste);
504                 } else {
505                         pars[last_paste + 1].stripLeadingSpaces(buffer.params().track_changes);
506                         ++last_paste;
507                 }
508         }
509
510         return PasteReturnValue(pit, pos, need_update);
511 }
512
513
514 PitPosPair eraseSelectionHelper(BufferParams const & params,
515         ParagraphList & pars,
516         pit_type startpit, pit_type endpit,
517         int startpos, int endpos)
518 {
519         // Start of selection is really invalid.
520         if (startpit == pit_type(pars.size()) ||
521             (startpos > pars[startpit].size()))
522                 return PitPosPair(endpit, endpos);
523
524         // Start and end is inside same paragraph
525         if (endpit == pit_type(pars.size()) || startpit == endpit) {
526                 endpos -= pars[startpit].eraseChars(startpos, endpos, params.track_changes);
527                 return PitPosPair(endpit, endpos);
528         }
529
530         for (pit_type pit = startpit; pit != endpit + 1;) {
531                 pos_type const left  = (pit == startpit ? startpos : 0);
532                 pos_type right = (pit == endpit ? endpos : pars[pit].size() + 1);
533                 bool const merge = pars[pit].isMergedOnEndOfParDeletion(params.track_changes);
534
535                 // Logically erase only, including the end-of-paragraph character
536                 pars[pit].eraseChars(left, right, params.track_changes);
537
538                 // Separate handling of paragraph break:
539                 if (merge && pit != endpit &&
540                     (pit + 1 != endpit
541                      || pars[pit].hasSameLayout(pars[endpit])
542                      || pars[endpit].size() == endpos)) {
543                         if (pit + 1 == endpit)
544                                 endpos += pars[pit].size();
545                         mergeParagraph(params, pars, pit);
546                         --endpit;
547                 } else
548                         ++pit;
549         }
550
551         // Ensure legal cursor pos:
552         endpit = startpit;
553         endpos = startpos;
554         return PitPosPair(endpit, endpos);
555 }
556
557
558 Buffer * copyToTempBuffer(ParagraphList const & paragraphs, DocumentClassConstPtr docclass)
559 {
560         // This used to need to be static to avoid a memory leak. It no longer needs
561         // to be so, but the alternative is to construct a new one of these (with a
562         // new temporary directory, etc) every time, and then to destroy it. So maybe
563         // it's worth just keeping this one around.
564         static TempFile tempfile("clipboard.internal");
565         tempfile.setAutoRemove(false);
566         // The initialization of staticbuffer is thread-safe. Using a lambda
567         // guarantees that the properties are set only once.
568         static Buffer * staticbuffer = [&](){
569                 Buffer * b =
570                         theBufferList().newInternalBuffer(tempfile.name().absFileName());
571                 b->setUnnamed(true);
572                 b->inset().setBuffer(*b);
573                 //initialize staticbuffer with b
574                 return b;
575         }();
576         // Use a clone for the complicated stuff so that we do not need to clean
577         // up in order to avoid a crash.
578         Buffer * buffer = staticbuffer->cloneBufferOnly();
579         LASSERT(buffer, return nullptr);
580
581         // This needs doing every time.
582         // Since setDocumentClass() causes deletion of the old document class
583         // we need to reset all layout pointers in paragraphs (otherwise they
584         // would be dangling).
585         ParIterator const end = buffer->par_iterator_end();
586         for (ParIterator it = buffer->par_iterator_begin(); it != end; ++it) {
587                 docstring const name = it->layout().name();
588                 if (docclass->hasLayout(name))
589                         it->setLayout((*docclass)[name]);
590                 else
591                         it->setPlainOrDefaultLayout(*docclass);
592         }
593         buffer->params().setDocumentClass(docclass);
594
595         // we will use pasteSelectionHelper to copy the paragraphs into the
596         // temporary Buffer, since it does a lot of things to fix them up.
597         DocIterator dit = doc_iterator_begin(buffer, &buffer->inset());
598         ErrorList el;
599         pasteSelectionHelper(dit, paragraphs, docclass, cap::BRANCH_ADD, el);
600
601         return buffer;
602 }
603
604
605 void putClipboard(ParagraphList const & paragraphs,
606                   DocumentClassConstPtr docclass, docstring const & plaintext,
607                   BufferParams const bp)
608 {
609         Buffer * buffer = copyToTempBuffer(paragraphs, docclass);
610         if (!buffer) // already asserted in copyToTempBuffer()
611                 return;
612
613         // We don't want to produce images that are not used. Therefore,
614         // output formulas as MathML. Even if this is not understood by all
615         // applications, the number that can parse it should go up in the future.
616         buffer->params().html_math_output = BufferParams::MathML;
617
618         if (lyxrc.ct_markup_copied) {
619                 // Copy authors to the params. We need those pointers.
620                 for (Author const & a : bp.authors())
621                         buffer->params().authors().record(a);
622         }
623
624         // Make sure MarkAsExporting is deleted before buffer is
625         {
626                 // The Buffer is being used to export. This is necessary so that the
627                 // updateMacros call will record the needed information.
628                 MarkAsExporting mex(buffer);
629
630                 buffer->updateBuffer(Buffer::UpdateMaster, OutputUpdate);
631                 buffer->updateMacros();
632                 buffer->updateMacroInstances(OutputUpdate);
633
634                 // LyX's own format
635                 string lyx;
636                 ostringstream oslyx;
637                 if (buffer->write(oslyx))
638                         lyx = oslyx.str();
639
640                 // XHTML format
641                 odocstringstream oshtml;
642                 OutputParams runparams(encodings.fromLyXName("utf8"));
643                 // We do not need to produce images, etc.
644                 runparams.dryrun = true;
645                 // We are not interested in errors (bug 8866)
646                 runparams.silent = true;
647                 buffer->writeLyXHTMLSource(oshtml, runparams, Buffer::FullSource);
648
649                 theClipboard().put(lyx, oshtml.str(), plaintext);
650         }
651
652         // Save that memory
653         delete buffer;
654 }
655
656
657 /// return true if the whole ParagraphList is deleted
658 static bool isFullyDeleted(ParagraphList const & pars)
659 {
660         pit_type const pars_size = static_cast<pit_type>(pars.size());
661
662         // check all paragraphs
663         for (pit_type pit = 0; pit < pars_size; ++pit) {
664                 if (!pars[pit].empty())   // prevent assertion failure
665                         if (!pars[pit].isDeleted(0, pars[pit].size()))
666                                 return false;
667         }
668         return true;
669 }
670
671
672 void copySelectionHelper(Buffer const & buf, Text const & text,
673         pit_type startpit, pit_type endpit,
674         int start, int end, DocumentClassConstPtr dc, CutStack & cutstack)
675 {
676         ParagraphList const & pars = text.paragraphs();
677
678         // In most of these cases, we can try to recover.
679         LASSERT(0 <= start, start = 0);
680         LASSERT(start <= pars[startpit].size(), start = pars[startpit].size());
681         LASSERT(0 <= end, end = 0);
682         LASSERT(end <= pars[endpit].size(), end = pars[endpit].size());
683         LASSERT(startpit != endpit || start <= end, return);
684
685         // Clone the paragraphs within the selection.
686         ParagraphList copy_pars(lyx::next(pars.begin(), startpit),
687                                 lyx::next(pars.begin(), endpit + 1));
688
689         // Remove the end of the last paragraph; afterwards, remove the
690         // beginning of the first paragraph. Keep this order - there may only
691         // be one paragraph!  Do not track deletions here; this is an internal
692         // action not visible to the user
693
694         Paragraph & back = copy_pars.back();
695         back.eraseChars(end, back.size(), false);
696         Paragraph & front = copy_pars.front();
697         front.eraseChars(0, start, false);
698
699         for (auto & par : copy_pars) {
700                 // Since we have a copy of the paragraphs, the insets
701                 // do not have a proper buffer reference. It makes
702                 // sense to add them temporarily, because the
703                 // operations below depend on that (acceptChanges included).
704                 par.setInsetBuffers(const_cast<Buffer &>(buf));
705                 // PassThru paragraphs have the Language
706                 // latex_language. This is invalid for others, so we
707                 // need to change it to the buffer language.
708                 if (par.isPassThru())
709                         par.changeLanguage(buf.params(),
710                                            latex_language, buf.language());
711         }
712
713         // do not copy text (also nested in insets) which is marked as
714         // deleted, unless the whole selection was deleted
715         if (!lyxrc.ct_markup_copied) {
716                 if (!isFullyDeleted(copy_pars))
717                         acceptChanges(copy_pars, buf.params());
718                 else
719                         rejectChanges(copy_pars, buf.params());
720         }
721
722
723         // do some final cleanup now, to make sure that the paragraphs
724         // are not linked to something else.
725         for (auto & par : copy_pars) {
726                 par.resetBuffer();
727                 par.setInsetOwner(nullptr);
728         }
729
730         cutstack.push(make_pair(copy_pars, dc));
731 }
732
733 } // namespace
734
735
736 namespace cap {
737
738 void region(CursorSlice const & i1, CursorSlice const & i2,
739             Inset::row_type & r1, Inset::row_type & r2,
740             Inset::col_type & c1, Inset::col_type & c2)
741 {
742         Inset & p = i1.inset();
743         c1 = p.col(i1.idx());
744         c2 = p.col(i2.idx());
745         if (c1 > c2)
746                 swap(c1, c2);
747         r1 = p.row(i1.idx());
748         r2 = p.row(i2.idx());
749         if (r1 > r2)
750                 swap(r1, r2);
751 }
752
753
754 docstring grabAndEraseSelection(Cursor & cur)
755 {
756         if (!cur.selection())
757                 return docstring();
758         docstring res = grabSelection(cur);
759         eraseSelection(cur);
760         return res;
761 }
762
763
764 bool reduceSelectionToOneCell(CursorData & cur)
765 {
766         if (!cur.selection() || !cur.inMathed())
767                 return false;
768
769         CursorSlice i1 = cur.selBegin();
770         CursorSlice i2 = cur.selEnd();
771         if (!i1.inset().asInsetMath())
772                 return false;
773
774         // the easy case: do nothing if only one cell is selected
775         if (i1.idx() == i2.idx())
776                 return true;
777
778         cur.top().pos() = 0;
779         cur.resetAnchor();
780         cur.top().pos() = cur.top().lastpos();
781
782         return true;
783 }
784
785
786 bool multipleCellsSelected(CursorData const & cur)
787 {
788         if (!cur.selection() || !cur.inMathed())
789                 return false;
790
791         CursorSlice i1 = cur.selBegin();
792         CursorSlice i2 = cur.selEnd();
793         if (!i1.inset().asInsetMath())
794                 return false;
795
796         if (i1.idx() == i2.idx())
797                 return false;
798
799         return true;
800 }
801
802
803 void switchBetweenClasses(DocumentClassConstPtr oldone,
804                 DocumentClassConstPtr newone, InsetText & in, ErrorList & errorlist)
805 {
806         errorlist.clear();
807
808         LBUFERR(!in.paragraphs().empty());
809         if (oldone == newone)
810                 return;
811
812         DocumentClass const & oldtc = *oldone;
813         DocumentClass const & newtc = *newone;
814
815         // layouts
816         ParIterator it = par_iterator_begin(in);
817         ParIterator end = par_iterator_end(in);
818         // for remembering which layouts we've had to add
819         set<docstring> newlayouts;
820         for (; it != end; ++it) {
821                 docstring const name = it->layout().name();
822
823                 // the pasted text will keep their own layout name. If this layout does
824                 // not exist in the new document, it will behave like a standard layout.
825                 bool const added_one = newtc.addLayoutIfNeeded(name);
826                 if (added_one)
827                         newlayouts.insert(name);
828
829                 if (added_one || newlayouts.find(name) != newlayouts.end()) {
830                         // Warn the user.
831                         docstring const s = bformat(_("Layout `%1$s' was not found."), name);
832                         errorlist.push_back(ErrorItem(_("Layout Not Found"), s,
833                                                       {it->id(), 0}, {it->id(), -1}));
834                 }
835
836                 if (in.usePlainLayout())
837                         it->setLayout(newtc.plainLayout());
838                 else
839                         it->setLayout(newtc[name]);
840         }
841
842         // character styles and hidden table cells
843         InsetIterator const i_end = inset_iterator_end(in);
844         for (InsetIterator iit = inset_iterator_begin(in); iit != i_end; ++iit) {
845                 InsetCode const code = iit->lyxCode();
846                 if (code == FLEX_CODE) {
847                         // FIXME: Should we verify all InsetCollapsible?
848                         docstring const layoutName = iit->layoutName();
849                         docstring const & n = newone->insetLayout(layoutName).name();
850                         bool const is_undefined = n.empty() ||
851                                 n == DocumentClass::plainInsetLayout().name();
852                         if (!is_undefined)
853                                 continue;
854
855                         // The flex inset is undefined in newtc
856                         docstring const oldname = from_utf8(oldtc.name());
857                         docstring const newname = from_utf8(newtc.name());
858                         docstring s;
859                         if (oldname == newname)
860                                 s = bformat(_("Flex inset %1$s is undefined after "
861                                         "reloading `%2$s' layout."), layoutName, oldname);
862                         else
863                                 s = bformat(_("Flex inset %1$s is undefined because of "
864                                         "conversion from `%2$s' layout to `%3$s'."),
865                                         layoutName, oldname, newname);
866                         // To warn the user that something had to be done.
867                         errorlist.push_back(ErrorItem(
868                                                       _("Undefined flex inset"), s,
869                                                       {iit.paragraph().id(), iit.pos()},
870                                                       {iit.paragraph().id(), iit.pos() + 1}));
871                 } else if (code == TABULAR_CODE) {
872                         // The recursion above does not catch paragraphs in "hidden" cells,
873                         // i.e., ones that are part of a multirow or multicolum. So we need
874                         // to handle those separately.
875                         // This is the cause of bug #9049.
876                         InsetTabular * table = iit->asInsetTabular();
877                         table->setLayoutForHiddenCells(newtc);
878                 }
879         }
880 }
881
882
883 vector<docstring> availableSelections(Buffer const * buf)
884 {
885         vector<docstring> selList;
886         if (!buf)
887                 return selList;
888
889         for (auto const & cut : theCuts) {
890                 ParagraphList const & pars = cut.first;
891                 docstring textSel;
892                 for (auto const & para : pars) {
893                         Paragraph par(para, 0, 46);
894                         // adapt paragraph to current buffer.
895                         par.setInsetBuffers(const_cast<Buffer &>(*buf));
896                         textSel += par.asString(AS_STR_INSETS);
897                         if (textSel.size() > 45) {
898                                 support::truncateWithEllipsis(textSel,45);
899                                 break;
900                         }
901                 }
902                 selList.push_back(textSel);
903         }
904
905         return selList;
906 }
907
908
909 size_type numberOfSelections()
910 {
911         return theCuts.size();
912 }
913
914 namespace {
915
916 void cutSelectionHelper(Cursor & cur, CutStack & cuts, bool realcut, bool putclip)
917 {
918         // This doesn't make sense, if there is no selection
919         if (!cur.selection())
920                 return;
921
922         // OK, we have a selection. This is always between cur.selBegin()
923         // and cur.selEnd()
924
925         if (cur.inTexted()) {
926                 Text * text = cur.text();
927                 LBUFERR(text);
928
929                 saveSelection(cur);
930
931                 // make sure that the depth behind the selection are restored, too
932                 cur.recordUndoSelection();
933                 pit_type begpit = cur.selBegin().pit();
934                 pit_type endpit = cur.selEnd().pit();
935
936                 int endpos = cur.selEnd().pos();
937
938                 BufferParams const & bp = cur.buffer()->params();
939                 if (realcut) {
940                         copySelectionHelper(*cur.buffer(),
941                                 *text,
942                                 begpit, endpit,
943                                 cur.selBegin().pos(), endpos,
944                                 bp.documentClassPtr(), cuts);
945                         // Stuff what we got on the clipboard.
946                         // Even if there is no selection.
947                         if (putclip)
948                                 putClipboard(cuts[0].first, cuts[0].second,
949                                              cur.selectionAsString(true, true), bp);
950                 }
951
952                 if (begpit != endpit)
953                         cur.screenUpdateFlags(Update::Force | Update::FitCursor);
954
955                 tie(endpit, endpos) =
956                         eraseSelectionHelper(bp, text->paragraphs(), begpit, endpit,
957                                              cur.selBegin().pos(), endpos);
958
959                 // cutSelection can invalidate the cursor so we need to set
960                 // it anew. (Lgb)
961                 // we prefer the end for when tracking changes
962                 cur.pos() = endpos;
963                 cur.pit() = endpit;
964
965                 // need a valid cursor. (Lgb)
966                 cur.clearSelection();
967
968                 // After a cut operation, we must make sure that the Buffer is updated
969                 // because some further operation might need updated label information for
970                 // example. So we cannot just use "cur.forceBufferUpdate()" here.
971                 // This fixes #7071.
972                 cur.buffer()->updateBuffer();
973
974                 // tell tabular that a recent copy happened
975                 dirtyTabularStack(false);
976         }
977
978         if (cur.inMathed()) {
979                 if (cur.selBegin().idx() != cur.selEnd().idx()) {
980                         // The current selection spans more than one cell.
981                         // Record all cells
982                         cur.recordUndoInset();
983                 } else {
984                         // Record only the current cell to avoid a jumping
985                         // cursor after undo
986                         cur.recordUndo();
987                 }
988                 if (realcut)
989                         copySelection(cur);
990                 eraseSelection(cur);
991         }
992 }
993
994 } // namespace
995
996 void cutSelection(Cursor & cur, bool realcut)
997 {
998         cutSelectionHelper(cur, theCuts, realcut, true);
999 }
1000
1001
1002 void cutSelectionToTemp(Cursor & cur, bool realcut)
1003 {
1004         cutSelectionHelper(cur, tempCut, realcut, false);
1005 }
1006
1007
1008 void copySelection(Cursor const & cur)
1009 {
1010         copySelection(cur, cur.selectionAsString(true, true));
1011 }
1012
1013
1014 void copyInset(Cursor const & cur, Inset * inset, docstring const & plaintext)
1015 {
1016         ParagraphList pars;
1017         Paragraph par;
1018         BufferParams const & bp = cur.buffer()->params();
1019         par.setLayout(bp.documentClass().plainLayout());
1020         Font font(inherit_font, bp.language);
1021         par.insertInset(0, inset, font, Change(Change::UNCHANGED));
1022         pars.push_back(par);
1023         theCuts.push(make_pair(pars, bp.documentClassPtr()));
1024
1025         // stuff the selection onto the X clipboard, from an explicit copy request
1026         putClipboard(theCuts[0].first, theCuts[0].second, plaintext, bp);
1027 }
1028
1029
1030 namespace {
1031
1032 void copySelectionToStack(CursorData const & cur, CutStack & cutstack)
1033 {
1034         // this doesn't make sense, if there is no selection
1035         if (!cur.selection())
1036                 return;
1037
1038         // copySelection can not yet handle the case of cross idx selection
1039         if (cur.selBegin().idx() != cur.selEnd().idx())
1040                 return;
1041
1042         if (cur.inTexted()) {
1043                 Text * text = cur.text();
1044                 LBUFERR(text);
1045                 // ok we have a selection. This is always between cur.selBegin()
1046                 // and sel_end cursor
1047                 copySelectionHelper(*cur.buffer(), *text,
1048                                     cur.selBegin().pit(), cur.selEnd().pit(),
1049                                     cur.selBegin().pos(), cur.selEnd().pos(),
1050                                     cur.buffer()->params().documentClassPtr(),
1051                                     cutstack);
1052                 // Reset the dirty_tabular_stack_ flag only when something
1053                 // is copied to the clipboard (not to the selectionBuffer).
1054                 if (&cutstack == &theCuts)
1055                         dirtyTabularStack(false);
1056         }
1057
1058         if (cur.inMathed()) {
1059                 //lyxerr << "copySelection in mathed" << endl;
1060                 ParagraphList pars;
1061                 Paragraph par;
1062                 BufferParams const & bp = cur.buffer()->params();
1063                 // FIXME This should be the plain layout...right?
1064                 par.setLayout(bp.documentClass().plainLayout());
1065                 // For pasting into text, we set the language to the paragraph language
1066                 // (rather than the default_language which is always English; see #2596)
1067                 par.insert(0, grabSelection(cur), Font(sane_font, par.getParLanguage(bp)),
1068                            Change(Change::UNCHANGED));
1069                 pars.push_back(par);
1070                 cutstack.push(make_pair(pars, bp.documentClassPtr()));
1071         }
1072 }
1073
1074 } // namespace
1075
1076
1077 void copySelectionToStack()
1078 {
1079         if (!selectionBuffer.empty())
1080                 theCuts.push(selectionBuffer[0]);
1081 }
1082
1083
1084 void copySelectionToTemp(Cursor & cur)
1085 {
1086         copySelectionToStack(cur, tempCut);
1087 }
1088
1089
1090 void copySelection(Cursor const & cur, docstring const & plaintext)
1091 {
1092         // In tablemode, because copy and paste actually use special table stack
1093         // we do not attempt to get selected paragraphs under cursor. Instead, a
1094         // paragraph with the plain text version is generated so that table cells
1095         // can be pasted as pure text somewhere else.
1096         if (cur.selBegin().idx() != cur.selEnd().idx()) {
1097                 ParagraphList pars;
1098                 Paragraph par;
1099                 BufferParams const & bp = cur.buffer()->params();
1100                 par.setLayout(bp.documentClass().plainLayout());
1101                 par.insert(0, plaintext, Font(), Change(Change::UNCHANGED));
1102                 pars.push_back(par);
1103                 theCuts.push(make_pair(pars, bp.documentClassPtr()));
1104         } else {
1105                 copySelectionToStack(cur, theCuts);
1106         }
1107
1108         // stuff the selection onto the X clipboard, from an explicit copy request
1109         putClipboard(theCuts[0].first, theCuts[0].second, plaintext,
1110                         cur.buffer()->params());
1111 }
1112
1113
1114 void saveSelection(Cursor const & cur)
1115 {
1116         // This function is called, not when a selection is formed, but when
1117         // a selection is cleared. Therefore, multiple keyboard selection
1118         // will not repeatively trigger this function (bug 3877).
1119         if (cur.selection()
1120             && cur.selBegin() == cur.bv().cursor().selBegin()
1121             && cur.selEnd() == cur.bv().cursor().selEnd()) {
1122                 LYXERR(Debug::SELECTION, "saveSelection: '" << cur.selectionAsString(true, true) << "'");
1123                 copySelectionToStack(cur, selectionBuffer);
1124         }
1125 }
1126
1127
1128 bool selection()
1129 {
1130         return !selectionBuffer.empty();
1131 }
1132
1133
1134 void clearSelection()
1135 {
1136         selectionBuffer.clear();
1137 }
1138
1139
1140 void clearCutStack()
1141 {
1142         theCuts.clear();
1143         tempCut.clear();
1144 }
1145
1146
1147 docstring selection(size_t sel_index, DocumentClassConstPtr docclass)
1148 {
1149         if (sel_index >= theCuts.size())
1150                 return docstring();
1151
1152         unique_ptr<Buffer> buffer(copyToTempBuffer(theCuts[sel_index].first,
1153                                                    docclass));
1154         if (!buffer)
1155                 return docstring();
1156
1157         return buffer->paragraphs().back().asString(AS_STR_INSETS | AS_STR_NEWLINES);
1158 }
1159
1160
1161 void pasteParagraphList(Cursor & cur, ParagraphList const & parlist,
1162                         DocumentClassConstPtr docclass, ErrorList & errorList,
1163                         cap::BranchAction branchAction)
1164 {
1165         if (cur.inTexted()) {
1166                 Text * text = cur.text();
1167                 LBUFERR(text);
1168
1169                 PasteReturnValue prv =
1170                         pasteSelectionHelper(cur, parlist, docclass, branchAction, errorList);
1171                 cur.forceBufferUpdate();
1172                 cur.clearSelection();
1173                 text->setCursor(cur, prv.pit, prv.pos);
1174         }
1175
1176         // mathed is handled in InsetMathNest/InsetMathGrid
1177         LATTEST(!cur.inMathed());
1178 }
1179
1180
1181 bool pasteFromStack(Cursor & cur, ErrorList & errorList, size_t sel_index)
1182 {
1183         // this does not make sense, if there is nothing to paste
1184         if (!checkPastePossible(sel_index))
1185                 return false;
1186
1187         cur.recordUndo();
1188         pasteParagraphList(cur, theCuts[sel_index].first,
1189                            theCuts[sel_index].second, errorList, BRANCH_ASK);
1190         return true;
1191 }
1192
1193
1194 bool pasteFromTemp(Cursor & cur, ErrorList & errorList)
1195 {
1196         // this does not make sense, if there is nothing to paste
1197         if (tempCut.empty() || tempCut[0].first.empty())
1198                 return false;
1199
1200         cur.recordUndo();
1201         pasteParagraphList(cur, tempCut[0].first,
1202                            tempCut[0].second, errorList, BRANCH_IGNORE);
1203         return true;
1204 }
1205
1206
1207 bool pasteClipboardText(Cursor & cur, ErrorList & errorList, bool asParagraphs,
1208                         Clipboard::TextType type)
1209 {
1210         // Use internal clipboard if it is the most recent one
1211         // This overrides asParagraphs and type on purpose!
1212         if (theClipboard().isInternal())
1213                 return pasteFromStack(cur, errorList, 0);
1214
1215         // First try LyX format
1216         if ((type == Clipboard::LyXTextType ||
1217              type == Clipboard::LyXOrPlainTextType ||
1218              type == Clipboard::AnyTextType) &&
1219             theClipboard().hasTextContents(Clipboard::LyXTextType)) {
1220                 string lyx = theClipboard().getAsLyX();
1221                 if (!lyx.empty()) {
1222                         Buffer buffer(string(), false);
1223                         buffer.setUnnamed(true);
1224                         if (buffer.readString(lyx)) {
1225                                 cur.recordUndo();
1226                                 pasteParagraphList(cur, buffer.paragraphs(),
1227                                         buffer.params().documentClassPtr(), errorList);
1228                                 return true;
1229                         }
1230                 }
1231         }
1232
1233         // Then try TeX and HTML
1234         Clipboard::TextType types[2] = {Clipboard::HtmlTextType, Clipboard::LaTeXTextType};
1235         string names[2] = {"html", "latexclipboard"};
1236         for (int i = 0; i < 2; ++i) {
1237                 if (type != types[i] && type != Clipboard::AnyTextType)
1238                         continue;
1239                 bool available = theClipboard().hasTextContents(types[i]);
1240
1241                 // If a specific type was explicitly requested, try to
1242                 // interpret plain text: The user told us that the clipboard
1243                 // contents is in the desired format
1244                 if (!available && type == types[i]) {
1245                         types[i] = Clipboard::PlainTextType;
1246                         available = theClipboard().hasTextContents(types[i]);
1247                 }
1248
1249                 if (available) {
1250                         docstring text = theClipboard().getAsText(types[i]);
1251                         available = !text.empty();
1252                         if (available) {
1253                                 Buffer buffer(string(), false);
1254                                 buffer.setUnnamed(true);
1255                                 available = buffer.importString(names[i], text, errorList);
1256                                 if (available)
1257                                         available = !buffer.paragraphs().empty();
1258                                 if (available && !buffer.paragraphs()[0].empty()) {
1259                                         // TeX2lyx (also used in the HTML chain) assumes English as document language
1260                                         // if no language is explicitly set (as is the case here).
1261                                         // We thus reset the temp buffer's language to the context language
1262                                         buffer.changeLanguage(buffer.language(), cur.getFont().language());
1263                                         cur.recordUndo();
1264                                         pasteParagraphList(cur, buffer.paragraphs(),
1265                                                 buffer.params().documentClassPtr(), errorList);
1266                                         return true;
1267                                 }
1268                         }
1269                 }
1270         }
1271
1272         // Then try plain text
1273         docstring const text = theClipboard().getAsText(Clipboard::PlainTextType);
1274         if (text.empty())
1275                 return false;
1276         cur.recordUndo();
1277         if (asParagraphs)
1278                 cur.text()->insertStringAsParagraphs(cur, text, cur.current_font);
1279         else
1280                 cur.text()->insertStringAsLines(cur, text, cur.current_font);
1281         cur.forceBufferUpdate();
1282         return true;
1283 }
1284
1285
1286 void pasteSimpleText(Cursor & cur, bool asParagraphs)
1287 {
1288         docstring text;
1289         // Use internal clipboard if it is the most recent one
1290         if (theClipboard().isInternal()) {
1291                 if (!checkPastePossible(0))
1292                         return;
1293
1294                 ParagraphList const & pars = theCuts[0].first;
1295                 ParagraphList::const_iterator it = pars.begin();
1296                 for (; it != pars.end(); ++it) {
1297                         if (it != pars.begin())
1298                                 text += "\n";
1299                         text += (*it).asString();
1300                 }
1301                 asParagraphs = false;
1302         } else {
1303                 // Then try plain text
1304                 text = theClipboard().getAsText(Clipboard::PlainTextType);
1305         }
1306
1307         if (text.empty())
1308                 return;
1309
1310         cur.recordUndo();
1311         cutSelection(cur, false);
1312         if (asParagraphs)
1313                 cur.text()->insertStringAsParagraphs(cur, text, cur.current_font);
1314         else
1315                 cur.text()->insertStringAsLines(cur, text, cur.current_font);
1316 }
1317
1318
1319 void pasteClipboardGraphics(Cursor & cur, ErrorList & /* errorList */,
1320                             Clipboard::GraphicsType preferedType)
1321 {
1322         LASSERT(theClipboard().hasGraphicsContents(preferedType), return);
1323
1324         // get picture from clipboard
1325         FileName filename = theClipboard().getAsGraphics(cur, preferedType);
1326         if (filename.empty())
1327                 return;
1328
1329         // create inset for graphic
1330         InsetGraphics * inset = new InsetGraphics(cur.buffer());
1331         InsetGraphicsParams params;
1332         params.filename = support::DocFileName(filename.absFileName(), false);
1333         inset->setParams(params);
1334         cur.recordUndo();
1335         cur.insert(inset);
1336 }
1337
1338
1339 void pasteSelection(Cursor & cur, ErrorList & errorList)
1340 {
1341         if (selectionBuffer.empty())
1342                 return;
1343         cur.recordUndo();
1344         pasteParagraphList(cur, selectionBuffer[0].first,
1345                            selectionBuffer[0].second, errorList);
1346 }
1347
1348
1349 void replaceSelectionWithString(Cursor & cur, docstring const & str)
1350 {
1351         cur.recordUndo();
1352         DocIterator selbeg = cur.selectionBegin();
1353
1354         // Get font setting before we cut, we need a copy here, not a bare reference.
1355         Font const font =
1356                 selbeg.paragraph().getFontSettings(cur.buffer()->params(), selbeg.pos());
1357
1358         // Insert the new string
1359         pos_type pos = cur.selEnd().pos();
1360         Paragraph & par = cur.selEnd().paragraph();
1361         for (auto const & c : str) {
1362                 par.insertChar(pos, c, font, cur.buffer()->params().track_changes);
1363                 ++pos;
1364         }
1365
1366         // Cut the selection
1367         cutSelection(cur, false);
1368 }
1369
1370
1371 void replaceSelection(Cursor & cur)
1372 {
1373         if (cur.selection())
1374                 cutSelection(cur, false);
1375 }
1376
1377
1378 void eraseSelection(Cursor & cur)
1379 {
1380         //lyxerr << "cap::eraseSelection begin: " << cur << endl;
1381         CursorSlice const & i1 = cur.selBegin();
1382         CursorSlice const & i2 = cur.selEnd();
1383         if (!i1.asInsetMath()) {
1384                 LYXERR0("Can't erase this selection");
1385                 return;
1386         }
1387
1388         saveSelection(cur);
1389         cur.top() = i1;
1390         InsetMath * p = i1.asInsetMath();
1391         if (i1.idx() == i2.idx()) {
1392                 i1.cell().erase(i1.pos(), i2.pos());
1393                 // We may have deleted i1.cell(cur.pos()).
1394                 // Make sure that pos is valid.
1395                 if (cur.pos() > cur.lastpos())
1396                         cur.pos() = cur.lastpos();
1397         } else if (p->nrows() > 0 && p->ncols() > 0) {
1398                 // This is a grid, delete a nice square region
1399                 Inset::row_type r1, r2;
1400                 Inset::col_type c1, c2;
1401                 region(i1, i2, r1, r2, c1, c2);
1402                 for (Inset::row_type row = r1; row <= r2; ++row)
1403                         for (Inset::col_type col = c1; col <= c2; ++col)
1404                                 p->cell(p->index(row, col)).clear();
1405                 // We've deleted the whole cell. Only pos 0 is valid.
1406                 cur.pos() = 0;
1407         } else {
1408                 Inset::idx_type idx1 = i1.idx();
1409                 Inset::idx_type idx2 = i2.idx();
1410                 if (idx1 > idx2)
1411                         swap(idx1, idx2);
1412                 for (Inset::idx_type idx = idx1 ; idx <= idx2; ++idx)
1413                         p->cell(idx).clear();
1414                 // We've deleted the whole cell. Only pos 0 is valid.
1415                 cur.pos() = 0;
1416         }
1417
1418         // need a valid cursor. (Lgb)
1419         cur.clearSelection();
1420         //lyxerr << "cap::eraseSelection end: " << cur << endl;
1421 }
1422
1423
1424 void selDel(Cursor & cur)
1425 {
1426         //lyxerr << "cap::selDel" << endl;
1427         if (cur.selection())
1428                 eraseSelection(cur);
1429 }
1430
1431
1432 void selClearOrDel(Cursor & cur)
1433 {
1434         //lyxerr << "cap::selClearOrDel" << endl;
1435         if (lyxrc.auto_region_delete)
1436                 selDel(cur);
1437         else
1438                 cur.selection(false);
1439 }
1440
1441
1442 docstring grabSelection(CursorData const & cur)
1443 {
1444         if (!cur.selection())
1445                 return docstring();
1446
1447 #if 0
1448         // grab selection by glueing multiple cells together. This is not what
1449         // we want because selections spanning multiple cells will get "&" and "\\"
1450         // seperators.
1451         ostringstream os;
1452         for (DocIterator dit = cur.selectionBegin();
1453              dit != cur.selectionEnd(); dit.forwardPos())
1454                 os << asString(dit.cell());
1455         return os.str();
1456 #endif
1457
1458         CursorSlice i1 = cur.selBegin();
1459         CursorSlice i2 = cur.selEnd();
1460
1461         if (i1.idx() == i2.idx()) {
1462                 if (i1.inset().asInsetMath()) {
1463                         MathData::const_iterator it = i1.cell().begin();
1464                         Buffer * buf = cur.buffer();
1465                         return asString(MathData(buf, it + i1.pos(), it + i2.pos()));
1466                 } else {
1467                         return from_ascii("unknown selection 1");
1468                 }
1469         }
1470
1471         Inset::row_type r1, r2;
1472         Inset::col_type c1, c2;
1473         region(i1, i2, r1, r2, c1, c2);
1474
1475         docstring data;
1476         if (i1.inset().asInsetMath()) {
1477                 for (Inset::row_type row = r1; row <= r2; ++row) {
1478                         if (row > r1)
1479                                 data += "\\\\";
1480                         for (Inset::col_type col = c1; col <= c2; ++col) {
1481                                 if (col > c1)
1482                                         data += '&';
1483                                 data += asString(i1.asInsetMath()->
1484                                         cell(i1.asInsetMath()->index(row, col)));
1485                         }
1486                 }
1487         } else {
1488                 data = from_ascii("unknown selection 2");
1489         }
1490         return data;
1491 }
1492
1493
1494 void dirtyTabularStack(bool b)
1495 {
1496         dirty_tabular_stack_ = b;
1497 }
1498
1499
1500 bool tabularStackDirty()
1501 {
1502         return dirty_tabular_stack_;
1503 }
1504
1505
1506 } // namespace cap
1507 } // namespace lyx