]> git.lyx.org Git - lyx.git/blob - src/CutAndPaste.C
* src/CutAndPaste.C: copySelectionHelper(): fix bug #2306 (deleted text should
[lyx.git] / src / CutAndPaste.C
1 /*
2  * \file CutAndPaste.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Jürgen Vigna
7  * \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 "buffer.h"
19 #include "buffer_funcs.h"
20 #include "bufferparams.h"
21 #include "cursor.h"
22 #include "debug.h"
23 #include "errorlist.h"
24 #include "funcrequest.h"
25 #include "gettext.h"
26 #include "insetiterator.h"
27 #include "language.h"
28 #include "lfuns.h"
29 #include "lyxfunc.h"
30 #include "lyxrc.h"
31 #include "lyxtext.h"
32 #include "lyxtextclasslist.h"
33 #include "paragraph.h"
34 #include "paragraph_funcs.h"
35 #include "ParagraphParameters.h"
36 #include "ParagraphList_fwd.h"
37 #include "pariterator.h"
38 #include "undo.h"
39
40 #include "insets/insetcharstyle.h"
41 #include "insets/insettabular.h"
42
43 #include "mathed/MathData.h"
44 #include "mathed/InsetMath.h"
45 #include "mathed/MathSupport.h"
46
47 #include "support/lstrings.h"
48
49 #include "frontends/Clipboard.h"
50 #include "frontends/Selection.h"
51
52 #include <boost/tuple/tuple.hpp>
53
54 #include <string>
55
56 using std::endl;
57 using std::for_each;
58 using std::make_pair;
59 using std::pair;
60 using std::vector;
61 using std::string;
62
63
64 namespace lyx {
65
66 using support::bformat;
67 using frontend::Clipboard;
68
69 namespace {
70
71 typedef std::pair<pit_type, int> PitPosPair;
72
73 typedef limited_stack<pair<ParagraphList, textclass_type> > CutStack;
74
75 CutStack theCuts(10);
76 // persistent selection, cleared until the next selection
77 CutStack selectionBuffer(1);
78
79 // store whether the tabular stack is newer than the normal copy stack
80 // FIXME: this is a workaround for bug 1919. Should be removed for 1.5,
81 // when we (hopefully) have a one-for-all paste mechanism.
82 bool dirty_tabular_stack_ = false;
83
84
85 void region(CursorSlice const & i1, CursorSlice const & i2,
86         InsetBase::row_type & r1, InsetBase::row_type & r2,
87         InsetBase::col_type & c1, InsetBase::col_type & c2)
88 {
89         InsetBase & p = i1.inset();
90         c1 = p.col(i1.idx());
91         c2 = p.col(i2.idx());
92         if (c1 > c2)
93                 std::swap(c1, c2);
94         r1 = p.row(i1.idx());
95         r2 = p.row(i2.idx());
96         if (r1 > r2)
97                 std::swap(r1, r2);
98 }
99
100
101 bool checkPastePossible(int index)
102 {
103         return size_t(index) < theCuts.size() && !theCuts[index].first.empty();
104 }
105
106
107 pair<PitPosPair, pit_type>
108 pasteSelectionHelper(LCursor & cur, ParagraphList const & parlist,
109                      textclass_type textclass, ErrorList & errorlist)
110 {
111         Buffer const & buffer = cur.buffer();
112         pit_type pit = cur.pit();
113         pos_type pos = cur.pos();
114         ParagraphList & pars = cur.text()->paragraphs();
115
116         if (parlist.empty())
117                 return make_pair(PitPosPair(pit, pos), pit);
118
119         BOOST_ASSERT (pos <= pars[pit].size());
120
121         // Make a copy of the CaP paragraphs.
122         ParagraphList insertion = parlist;
123         textclass_type const tc = buffer.params().textclass;
124
125         // Now remove all out of the pars which is NOT allowed in the
126         // new environment and set also another font if that is required.
127
128         // Convert newline to paragraph break in ERT inset.
129         // This should not be here!
130         if (pars[pit].inInset() &&
131             pars[pit].inInset()->lyxCode() == InsetBase::ERT_CODE) {
132                 for (ParagraphList::size_type i = 0; i < insertion.size(); ++i) {
133                         for (pos_type j = 0; j < insertion[i].size(); ++j) {
134                                 if (insertion[i].isNewline(j)) {
135                                         // do not track deletion of newline
136                                         insertion[i].eraseChar(j, false);
137                                         breakParagraphConservative(
138                                                         buffer.params(),
139                                                         insertion, i, j);
140                                 }
141                         }
142                 }
143         }
144
145         // If we are in an inset which returns forceDefaultParagraphs,
146         // set the paragraphs to default
147         if (cur.inset().forceDefaultParagraphs(cur.idx())) {
148                 LyXLayout_ptr const layout = 
149                         buffer.params().getLyXTextClass().defaultLayout();
150                 ParagraphList::iterator const end = insertion.end();
151                 for (ParagraphList::iterator par = insertion.begin(); 
152                                 par != end; ++par)
153                         par->layout(layout);
154         }
155
156         // Make sure there is no class difference.
157         InsetText in;
158         // This works without copying any paragraph data because we have
159         // a specialized swap method for ParagraphList. This is important
160         // since we store pointers to insets at some places and we don't
161         // want to invalidate them.
162         insertion.swap(in.paragraphs());
163         cap::switchBetweenClasses(textclass, tc, in, errorlist);
164         insertion.swap(in.paragraphs());
165
166         ParagraphList::iterator tmpbuf = insertion.begin();
167         int depth_delta = pars[pit].params().depth() - tmpbuf->params().depth();
168
169         depth_type max_depth = pars[pit].getMaxDepthAfter();
170
171         for (; tmpbuf != insertion.end(); ++tmpbuf) {
172                 // If we have a negative jump so that the depth would
173                 // go below 0 depth then we have to redo the delta to
174                 // this new max depth level so that subsequent
175                 // paragraphs are aligned correctly to this paragraph
176                 // at level 0.
177                 if (int(tmpbuf->params().depth()) + depth_delta < 0)
178                         depth_delta = 0;
179
180                 // Set the right depth so that we are not too deep or shallow.
181                 tmpbuf->params().depth(tmpbuf->params().depth() + depth_delta);
182                 if (tmpbuf->params().depth() > max_depth)
183                         tmpbuf->params().depth(max_depth);
184
185                 // Only set this from the 2nd on as the 2nd depends
186                 // for maxDepth still on pit.
187                 if (tmpbuf != insertion.begin())
188                         max_depth = tmpbuf->getMaxDepthAfter();
189
190                 // Set the inset owner of this paragraph.
191                 tmpbuf->setInsetOwner(pars[pit].inInset());
192                 for (pos_type i = 0; i < tmpbuf->size(); ++i) {
193                         if (tmpbuf->getChar(i) == Paragraph::META_INSET &&
194                             !pars[pit].insetAllowed(tmpbuf->getInset(i)->lyxCode()))
195                                 // do not track deletion of invalid insets
196                                 tmpbuf->eraseChar(i--, false);
197                 }
198
199                 tmpbuf->setChange(Change(buffer.params().trackChanges ?
200                                          Change::INSERTED : Change::UNCHANGED));
201         }
202
203         bool const empty = pars[pit].empty();
204         if (!empty) {
205                 // Make the buf exactly the same layout as the cursor
206                 // paragraph.
207                 insertion.begin()->makeSameLayout(pars[pit]);
208         }
209
210         // Prepare the paragraphs and insets for insertion.
211         // A couple of insets store buffer references so need updating.
212         insertion.swap(in.paragraphs());
213
214         ParIterator fpit = par_iterator_begin(in);
215         ParIterator fend = par_iterator_end(in);
216
217         for (; fpit != fend; ++fpit) {
218                 InsetList::const_iterator lit = fpit->insetlist.begin();
219                 InsetList::const_iterator eit = fpit->insetlist.end();
220
221                 for (; lit != eit; ++lit) {
222                         switch (lit->inset->lyxCode()) {
223                         case InsetBase::TABULAR_CODE: {
224                                 InsetTabular * it = static_cast<InsetTabular*>(lit->inset);
225                                 it->buffer(&buffer);
226                                 break;
227                         }
228
229                         default:
230                                 break; // nothing
231                         }
232                 }
233         }
234         insertion.swap(in.paragraphs());
235
236         // Split the paragraph for inserting the buf if necessary.
237         if (!empty)
238                 breakParagraphConservative(buffer.params(), pars, pit, pos);
239
240         // Paste it!
241         if (empty) {
242                 pars.insert(boost::next(pars.begin(), pit),
243                             insertion.begin(),
244                             insertion.end());
245
246                 // merge the empty par with the last par of the insertion
247                 mergeParagraph(buffer.params(), pars,
248                                pit + insertion.size() - 1);
249         } else {
250                 pars.insert(boost::next(pars.begin(), pit + 1),
251                             insertion.begin(),
252                             insertion.end());
253
254                 // merge the first par of the insertion with the current par
255                 mergeParagraph(buffer.params(), pars, pit);
256         }
257
258         pit_type last_paste = pit + insertion.size() - 1;
259
260         // Store the new cursor position.
261         pit = last_paste;
262         pos = pars[last_paste].size();
263
264         // Join (conditionally) last pasted paragraph with next one, i.e.,
265         // the tail of the spliced document paragraph
266         if (!empty && last_paste + 1 != pit_type(pars.size())) {
267                 if (pars[last_paste + 1].hasSameLayout(pars[last_paste])) {
268                         mergeParagraph(buffer.params(), pars, last_paste);
269                 } else if (pars[last_paste + 1].empty()) {
270                         pars[last_paste + 1].makeSameLayout(pars[last_paste]);
271                         mergeParagraph(buffer.params(), pars, last_paste);
272                 } else if (pars[last_paste].empty()) {
273                         pars[last_paste].makeSameLayout(pars[last_paste + 1]);
274                         mergeParagraph(buffer.params(), pars, last_paste);
275                 } else {
276                         pars[last_paste + 1].stripLeadingSpaces(buffer.params().trackChanges);
277                         ++last_paste;
278                 }
279         }
280
281         return make_pair(PitPosPair(pit, pos), last_paste + 1);
282 }
283
284
285 PitPosPair eraseSelectionHelper(BufferParams const & params,
286         ParagraphList & pars,
287         pit_type startpit, pit_type endpit,
288         int startpos, int endpos, bool doclear)
289 {
290         // Start of selection is really invalid.
291         if (startpit == pit_type(pars.size()) ||
292             (startpos > pars[startpit].size()))
293                 return PitPosPair(endpit, endpos);
294
295         // Start and end is inside same paragraph
296         if (endpit == pit_type(pars.size()) || startpit == endpit) {
297                 endpos -= pars[startpit].eraseChars(startpos, endpos, params.trackChanges);
298                 return PitPosPair(endpit, endpos);
299         }
300
301         for (pit_type pit = startpit; pit != endpit + 1;) {
302                 pos_type const left  = (pit == startpit ? startpos : 0);
303                 pos_type const right = (pit == endpit ? endpos : pars[pit].size() + 1);
304
305                 bool const merge = pars[pit].isMergedOnEndOfParDeletion(params.trackChanges);
306
307                 // Logically erase only, including the end-of-paragraph character
308                 pars[pit].eraseChars(left, right, params.trackChanges);
309
310                 // Separate handling of paragraph break:
311                 if (merge && pit != endpit &&
312                     (pit + 1 != endpit || pars[pit].hasSameLayout(pars[pit + 1]))) {
313                         pos_type const thissize = pars[pit].size();
314                         if (doclear)
315                                 pars[pit + 1].stripLeadingSpaces(params.trackChanges);
316                         mergeParagraph(params, pars, pit);
317                         --endpit;
318                         if (pit == endpit)
319                                 endpos += thissize;
320                 } else
321                         ++pit;
322         }
323
324         // Ensure legal cursor pos:
325         endpit = startpit;
326         endpos = startpos;
327         return PitPosPair(endpit, endpos);
328 }
329
330
331 void putClipboard(ParagraphList const & paragraphs, textclass_type textclass,
332                   docstring const & plaintext)
333 {
334         Buffer buffer(string(), false);
335         buffer.setUnnamed(true);
336         buffer.paragraphs() = paragraphs;
337         buffer.params().textclass = textclass;
338         std::ostringstream lyx;
339         if (buffer.write(lyx))
340                 theClipboard().put(lyx.str(), plaintext);
341         else
342                 theClipboard().put(string(), plaintext);
343 }
344
345
346 void copySelectionHelper(Buffer const & buf, ParagraphList & pars,
347         pit_type startpit, pit_type endpit,
348         int start, int end, textclass_type tc, CutStack & cutstack)
349 {
350         BOOST_ASSERT(0 <= start && start <= pars[startpit].size());
351         BOOST_ASSERT(0 <= end && end <= pars[endpit].size());
352         BOOST_ASSERT(startpit != endpit || start <= end);
353
354         // Clone the paragraphs within the selection.
355         ParagraphList copy_pars(boost::next(pars.begin(), startpit),
356                                 boost::next(pars.begin(), endpit + 1));
357
358         // Remove the end of the last paragraph; afterwards, remove the beginning
359         // of the first paragraph. Keep this order - there may only be one paragraph!
360         // Do not track deletions here; this is an internal action not visible to the user
361         Paragraph & back = copy_pars.back();
362         back.eraseChars(end, back.size(), false);
363         Paragraph & front = copy_pars.front();
364         front.eraseChars(0, start, false);
365
366         ParagraphList::iterator it = copy_pars.begin();
367         ParagraphList::iterator it_end = copy_pars.end();
368
369         for (; it != it_end; it++) {
370                 // ERT paragraphs have the Language latex_language.
371                 // This is invalid outside of ERT, so we need to change it
372                 // to the buffer language.
373                 if (it->ownerCode() == InsetBase::ERT_CODE) {
374                         it->changeLanguage(buf.params(), latex_language,
375                                            buf.getLanguage());
376                 }
377                 it->setInsetOwner(0);
378         }
379
380         // do not copy text (also nested in insets) which is marked as deleted
381         // acceptChanges() is defined for LyXText rather than ParagraphList
382         // Thus we must wrap copy_pars into a LyXText object and cross our fingers
383         LyXText lt;
384         copy_pars.swap(lt.paragraphs());
385         lt.acceptChanges(buf.params());
386         copy_pars.swap(lt.paragraphs());
387
388         cutstack.push(make_pair(copy_pars, tc));
389 }
390
391 } // namespace anon
392
393
394
395
396 namespace cap {
397
398 docstring grabAndEraseSelection(LCursor & cur)
399 {
400         if (!cur.selection())
401                 return docstring();
402         docstring res = grabSelection(cur);
403         eraseSelection(cur);
404         return res;
405 }
406
407
408 void switchBetweenClasses(textclass_type c1, textclass_type c2,
409         InsetText & in, ErrorList & errorlist)
410 {
411         BOOST_ASSERT(!in.paragraphs().empty());
412         if (c1 == c2)
413                 return;
414
415         LyXTextClass const & tclass1 = textclasslist[c1];
416         LyXTextClass const & tclass2 = textclasslist[c2];
417
418         // layouts
419         ParIterator end = par_iterator_end(in);
420         for (ParIterator it = par_iterator_begin(in); it != end; ++it) {
421                 string const name = it->layout()->name();
422                 bool hasLayout = tclass2.hasLayout(name);
423
424                 if (hasLayout)
425                         it->layout(tclass2[name]);
426                 else
427                         it->layout(tclass2.defaultLayout());
428
429                 if (!hasLayout && name != tclass1.defaultLayoutName()) {
430                         docstring const s = bformat(
431                                                  _("Layout had to be changed from\n%1$s to %2$s\n"
432                                                 "because of class conversion from\n%3$s to %4$s"),
433                          from_utf8(name), from_utf8(it->layout()->name()),
434                          from_utf8(tclass1.name()), from_utf8(tclass2.name()));
435                         // To warn the user that something had to be done.
436                         errorlist.push_back(ErrorItem(_("Changed Layout"), s,
437                                                       it->id(), 0,
438                                                       it->size()));
439                 }
440         }
441
442         // character styles
443         InsetIterator const i_end = inset_iterator_end(in);
444         for (InsetIterator it = inset_iterator_begin(in); it != i_end; ++it) {
445                 if (it->lyxCode() == InsetBase::CHARSTYLE_CODE) {
446                         InsetCharStyle & inset =
447                                 static_cast<InsetCharStyle &>(*it);
448                         string const name = inset.params().type;
449                         CharStyles::iterator const found_cs =
450                                 tclass2.charstyle(name);
451                         if (found_cs == tclass2.charstyles().end()) {
452                                 // The character style is undefined in tclass2
453                                 inset.setUndefined();
454                                 docstring const s = bformat(_(
455                                         "Character style %1$s is "
456                                         "undefined because of class "
457                                         "conversion from\n%2$s to %3$s"),
458                                          from_utf8(name), from_utf8(tclass1.name()),
459                                          from_utf8(tclass2.name()));
460                                 // To warn the user that something had to be done.
461                                 errorlist.push_back(ErrorItem(
462                                         _("Undefined character style"),
463                                         s, it.paragraph().id(), it.pos(), it.pos() + 1));
464                         } else if (inset.undefined()) {
465                                 // The character style is undefined in
466                                 // tclass1 and is defined in tclass2
467                                 inset.setDefined(found_cs);
468                         }
469                 }
470         }
471 }
472
473
474 std::vector<docstring> const availableSelections(Buffer const & buffer)
475 {
476         vector<docstring> selList;
477
478         CutStack::const_iterator cit = theCuts.begin();
479         CutStack::const_iterator end = theCuts.end();
480         for (; cit != end; ++cit) {
481                 // we do not use cit-> here because gcc 2.9x does not
482                 // like it (JMarc)
483                 ParagraphList const & pars = (*cit).first;
484                 docstring asciiSel;
485                 ParagraphList::const_iterator pit = pars.begin();
486                 ParagraphList::const_iterator pend = pars.end();
487                 for (; pit != pend; ++pit) {
488                         asciiSel += pit->asString(buffer, false);
489                         if (asciiSel.size() > 25) {
490                                 asciiSel.replace(22, docstring::npos,
491                                                  from_ascii("..."));
492                                 break;
493                         }
494                 }
495
496                 selList.push_back(asciiSel);
497         }
498
499         return selList;
500 }
501
502
503 size_type numberOfSelections()
504 {
505         return theCuts.size();
506 }
507
508
509 void cutSelection(LCursor & cur, bool doclear, bool realcut)
510 {
511         // This doesn't make sense, if there is no selection
512         if (!cur.selection())
513                 return;
514
515         // OK, we have a selection. This is always between cur.selBegin()
516         // and cur.selEnd()
517
518         if (cur.inTexted()) {
519                 LyXText * text = cur.text();
520                 BOOST_ASSERT(text);
521
522                 // make sure that the depth behind the selection are restored, too
523                 recordUndoSelection(cur);
524                 pit_type begpit = cur.selBegin().pit();
525                 pit_type endpit = cur.selEnd().pit();
526
527                 int endpos = cur.selEnd().pos();
528
529                 BufferParams const & bp = cur.buffer().params();
530                 if (realcut) {
531                         copySelectionHelper(cur.buffer(),
532                                 text->paragraphs(),
533                                 begpit, endpit,
534                                 cur.selBegin().pos(), endpos,
535                                 bp.textclass, theCuts);
536                         // Stuff what we got on the clipboard.
537                         // Even if there is no selection.
538                         putClipboard(theCuts[0].first, theCuts[0].second,
539                                 cur.selectionAsString(true));
540                 }
541
542                 boost::tie(endpit, endpos) =
543                         eraseSelectionHelper(bp,
544                                 text->paragraphs(),
545                                 begpit, endpit,
546                                 cur.selBegin().pos(), endpos,
547                                 doclear);
548
549                 // sometimes necessary
550                 if (doclear)
551                         text->paragraphs()[begpit].stripLeadingSpaces(bp.trackChanges);
552
553                 // cutSelection can invalidate the cursor so we need to set
554                 // it anew. (Lgb)
555                 // we prefer the end for when tracking changes
556                 cur.pos() = endpos;
557                 cur.pit() = endpit;
558
559                 // need a valid cursor. (Lgb)
560                 cur.clearSelection();
561                 updateLabels(cur.buffer());
562                 theSelection().haveSelection(false);
563
564                 // tell tabular that a recent copy happened
565                 dirtyTabularStack(false);
566         }
567
568         if (cur.inMathed()) {
569                 if (cur.selBegin().idx() != cur.selEnd().idx()) {
570                         // The current selection spans more than one cell.
571                         // Record all cells
572                         recordUndoInset(cur);
573                 } else {
574                         // Record only the current cell to avoid a jumping
575                         // cursor after undo
576                         recordUndo(cur);
577                 }
578                 if (realcut)
579                         copySelection(cur);
580                 eraseSelection(cur);
581         }
582 }
583
584
585 void copySelection(LCursor & cur)
586 {
587         copySelection(cur, cur.selectionAsString(true));
588 }
589
590
591 namespace {
592
593 void copySelectionToStack(LCursor & cur, CutStack & cutstack)
594 {
595         // this doesn't make sense, if there is no selection
596         if (!cur.selection())
597                 return;
598
599         if (cur.inTexted()) {
600                 LyXText * text = cur.text();
601                 BOOST_ASSERT(text);
602                 // ok we have a selection. This is always between cur.selBegin()
603                 // and sel_end cursor
604
605                 // copy behind a space if there is one
606                 ParagraphList & pars = text->paragraphs();
607                 pos_type pos = cur.selBegin().pos();
608                 pit_type par = cur.selBegin().pit();
609                 while (pos < pars[par].size()
610                                          && pars[par].isLineSeparator(pos)
611                                          && (par != cur.selEnd().pit() || pos < cur.selEnd().pos()))
612                         ++pos;
613
614                 copySelectionHelper(cur.buffer(), pars, par, cur.selEnd().pit(),
615                         pos, cur.selEnd().pos(), cur.buffer().params().textclass, cutstack);
616         }
617
618         if (cur.inMathed()) {
619                 //lyxerr << "copySelection in mathed" << endl;
620                 ParagraphList pars;
621                 Paragraph par;
622                 BufferParams const & bp = cur.buffer().params();
623                 par.layout(bp.getLyXTextClass().defaultLayout());
624                 par.insert(0, grabSelection(cur), LyXFont(), Change(Change::UNCHANGED));
625                 pars.push_back(par);
626                 cutstack.push(make_pair(pars, bp.textclass));
627         }
628 }
629
630 }
631
632
633 void copySelectionToStack()
634 {
635         if (!selectionBuffer.empty())
636                 theCuts.push(selectionBuffer[0]);
637 }
638
639
640 void copySelection(LCursor & cur, docstring const & plaintext)
641 {
642         copySelectionToStack(cur, theCuts);
643
644         // stuff the selection onto the X clipboard, from an explicit copy request
645         putClipboard(theCuts[0].first, theCuts[0].second, plaintext);
646 }
647
648
649 void saveSelection(LCursor & cur)
650 {
651         lyxerr[Debug::ACTION] << "cap::saveSelection: `"
652                << to_utf8(cur.selectionAsString(true)) << "'." << endl;
653         
654         if (cur.selection())
655                 copySelectionToStack(cur, selectionBuffer);
656         // tell X whether we now have a valid selection
657         theSelection().haveSelection(cur.selection());
658 }
659
660
661 bool selection()
662 {
663         return !selectionBuffer.empty();
664 }
665
666
667 void clearSelection()
668 {
669         selectionBuffer.clear();
670 }
671
672
673 docstring getSelection(Buffer const & buf, size_t sel_index)
674 {
675         return sel_index < theCuts.size()
676                 ? theCuts[sel_index].first.back().asString(buf, false)
677                 : docstring();
678 }
679
680
681 void pasteParagraphList(LCursor & cur, ParagraphList const & parlist,
682                         textclass_type textclass, ErrorList & errorList)
683 {
684         if (cur.inTexted()) {
685                 LyXText * text = cur.text();
686                 BOOST_ASSERT(text);
687
688                 pit_type endpit;
689                 PitPosPair ppp;
690
691                 boost::tie(ppp, endpit) =
692                         pasteSelectionHelper(cur, parlist,
693                                              textclass, errorList);
694                 updateLabels(cur.buffer());
695                 cur.clearSelection();
696                 text->setCursor(cur.top(), ppp.first, ppp.second);
697         }
698
699         // mathed is handled in InsetMathNest/InsetMathGrid
700         BOOST_ASSERT(!cur.inMathed());
701 }
702
703
704 void pasteFromStack(LCursor & cur, ErrorList & errorList, size_t sel_index)
705 {
706         // this does not make sense, if there is nothing to paste
707         if (!checkPastePossible(sel_index))
708                 return;
709
710         recordUndo(cur);
711         pasteParagraphList(cur, theCuts[sel_index].first,
712                            theCuts[sel_index].second, errorList);
713         cur.setSelection();
714         saveSelection(cur);
715 }
716
717
718 void pasteClipboard(LCursor & cur, ErrorList & errorList, bool asParagraphs)
719 {
720         // Use internal clipboard if it is the most recent one
721         if (theClipboard().isInternal()) {
722                 pasteClipboard(cur, errorList, 0);
723                 return;
724         }
725
726         // First try LyX format
727         if (theClipboard().hasLyXContents()) {
728                 string lyx = theClipboard().getAsLyX();
729                 if (!lyx.empty()) {
730                         Buffer buffer(string(), false);
731                         buffer.setUnnamed(true);
732                         if (buffer.readString(lyx)) {
733                                 recordUndo(cur);
734                                 pasteParagraphList(cur, buffer.paragraphs(),
735                                         buffer.params().textclass, errorList);
736                                 cur.setSelection();
737                                 return;
738                         }
739                 }
740         }
741
742         // Then try plain text
743         docstring const text = theClipboard().getAsText();
744         if (text.empty())
745                 return;
746         recordUndo(cur);
747         if (asParagraphs)
748                 cur.text()->insertStringAsParagraphs(cur, text);
749         else
750                 cur.text()->insertStringAsLines(cur, text);
751 }
752
753
754 void pasteSelection(LCursor & cur, ErrorList & errorList)
755 {
756         if (selectionBuffer.empty())
757                 return;
758         recordUndo(cur);
759         pasteParagraphList(cur, selectionBuffer[0].first,
760                            selectionBuffer[0].second, errorList);
761         cur.setSelection();
762 }
763
764
765 void replaceSelectionWithString(LCursor & cur, docstring const & str, bool backwards)
766 {
767         recordUndo(cur);
768         DocIterator selbeg = cur.selectionBegin();
769
770         // Get font setting before we cut
771         LyXFont const font =
772                 selbeg.paragraph().getFontSettings(cur.buffer().params(), selbeg.pos());
773
774         // Insert the new string
775         pos_type pos = cur.selEnd().pos();
776         Paragraph & par = cur.selEnd().paragraph();
777         docstring::const_iterator cit = str.begin();
778         docstring::const_iterator end = str.end();
779         for (; cit != end; ++cit, ++pos)
780                 par.insertChar(pos, *cit, font, cur.buffer().params().trackChanges);
781
782         // Cut the selection
783         cutSelection(cur, true, false);
784
785         // select the replacement
786         if (backwards) {
787                 selbeg.pos() += str.length();
788                 cur.setSelection(selbeg, -int(str.length()));
789         } else
790                 cur.setSelection(selbeg, str.length());
791         saveSelection(cur);
792 }
793
794
795 void replaceSelection(LCursor & cur)
796 {
797         if (cur.selection())
798                 cutSelection(cur, true, false);
799 }
800
801
802 void eraseSelection(LCursor & cur)
803 {
804         //lyxerr << "cap::eraseSelection begin: " << cur << endl;
805         CursorSlice const & i1 = cur.selBegin();
806         CursorSlice const & i2 = cur.selEnd();
807         if (i1.inset().asInsetMath()) {
808                 cur.top() = i1;
809                 if (i1.idx() == i2.idx()) {
810                         i1.cell().erase(i1.pos(), i2.pos());
811                         // We may have deleted i1.cell(cur.pos()).
812                         // Make sure that pos is valid.
813                         if (cur.pos() > cur.lastpos())
814                                 cur.pos() = cur.lastpos();
815                 } else {
816                         InsetMath * p = i1.asInsetMath();
817                         InsetBase::row_type r1, r2;
818                         InsetBase::col_type c1, c2;
819                         region(i1, i2, r1, r2, c1, c2);
820                         for (InsetBase::row_type row = r1; row <= r2; ++row)
821                                 for (InsetBase::col_type col = c1; col <= c2; ++col)
822                                         p->cell(p->index(row, col)).clear();
823                         // We've deleted the whole cell. Only pos 0 is valid.
824                         cur.pos() = 0;
825                 }
826                 // need a valid cursor. (Lgb)
827                 cur.clearSelection();
828                 theSelection().haveSelection(false);
829         } else {
830                 lyxerr << "can't erase this selection 1" << endl;
831         }
832         //lyxerr << "cap::eraseSelection end: " << cur << endl;
833 }
834
835
836 void selDel(LCursor & cur)
837 {
838         //lyxerr << "cap::selDel" << endl;
839         if (cur.selection())
840                 eraseSelection(cur);
841 }
842
843
844 void selClearOrDel(LCursor & cur)
845 {
846         //lyxerr << "cap::selClearOrDel" << endl;
847         if (lyxrc.auto_region_delete)
848                 selDel(cur);
849         else
850                 cur.selection() = false;
851 }
852
853
854 docstring grabSelection(LCursor const & cur)
855 {
856         if (!cur.selection())
857                 return docstring();
858
859         // FIXME: What is wrong with the following?
860 #if 0
861         std::ostringstream os;
862         for (DocIterator dit = cur.selectionBegin();
863              dit != cur.selectionEnd(); dit.forwardPos())
864                 os << asString(dit.cell());
865         return os.str();
866 #endif
867
868         CursorSlice i1 = cur.selBegin();
869         CursorSlice i2 = cur.selEnd();
870
871         if (i1.idx() == i2.idx()) {
872                 if (i1.inset().asInsetMath()) {
873                         MathArray::const_iterator it = i1.cell().begin();
874                         return asString(MathArray(it + i1.pos(), it + i2.pos()));
875                 } else {
876                         return from_ascii("unknown selection 1");
877                 }
878         }
879
880         InsetBase::row_type r1, r2;
881         InsetBase::col_type c1, c2;
882         region(i1, i2, r1, r2, c1, c2);
883
884         docstring data;
885         if (i1.inset().asInsetMath()) {
886                 for (InsetBase::row_type row = r1; row <= r2; ++row) {
887                         if (row > r1)
888                                 data += "\\\\";
889                         for (InsetBase::col_type col = c1; col <= c2; ++col) {
890                                 if (col > c1)
891                                         data += '&';
892                                 data += asString(i1.asInsetMath()->
893                                         cell(i1.asInsetMath()->index(row, col)));
894                         }
895                 }
896         } else {
897                 data = from_ascii("unknown selection 2");
898         }
899         return data;
900 }
901
902
903 void dirtyTabularStack(bool b)
904 {
905         dirty_tabular_stack_ = b;
906 }
907
908
909 bool tabularStackDirty()
910 {
911         return dirty_tabular_stack_;
912 }
913
914
915 } // namespace cap
916
917 } // namespace lyx