]> git.lyx.org Git - lyx.git/blob - src/CutAndPaste.cpp
Fix the rest of bug 5010.
[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 "Buffer.h"
19 #include "buffer_funcs.h"
20 #include "BufferParams.h"
21 #include "BufferView.h"
22 #include "Changes.h"
23 #include "Cursor.h"
24 #include "ErrorList.h"
25 #include "FuncCode.h"
26 #include "FuncRequest.h"
27 #include "InsetIterator.h"
28 #include "InsetList.h"
29 #include "Language.h"
30 #include "LyXFunc.h"
31 #include "LyXRC.h"
32 #include "Text.h"
33 #include "Paragraph.h"
34 #include "paragraph_funcs.h"
35 #include "ParagraphParameters.h"
36 #include "ParIterator.h"
37 #include "Undo.h"
38
39 #include "insets/InsetFlex.h"
40 #include "insets/InsetCommand.h"
41 #include "insets/InsetGraphics.h"
42 #include "insets/InsetGraphicsParams.h"
43 #include "insets/InsetTabular.h"
44
45 #include "mathed/MathData.h"
46 #include "mathed/InsetMath.h"
47 #include "mathed/MathSupport.h"
48
49 #include "support/debug.h"
50 #include "support/docstream.h"
51 #include "support/gettext.h"
52 #include "support/limited_stack.h"
53 #include "support/lstrings.h"
54
55 #include "frontends/Clipboard.h"
56 #include "frontends/Selection.h"
57
58 #include <boost/tuple/tuple.hpp>
59 #include <boost/next_prior.hpp>
60
61 #include <string>
62
63 using namespace std;
64 using namespace lyx::support;
65 using lyx::frontend::Clipboard;
66
67 namespace lyx {
68
69 namespace {
70
71 typedef pair<pit_type, int> PitPosPair;
72
73 typedef limited_stack<pair<ParagraphList, DocumentClass const *> > 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 bool checkPastePossible(int index)
86 {
87         return size_t(index) < theCuts.size() && !theCuts[index].first.empty();
88 }
89
90
91 pair<PitPosPair, pit_type>
92 pasteSelectionHelper(Cursor & cur, ParagraphList const & parlist,
93                      DocumentClass const * const oldDocClass, ErrorList & errorlist)
94 {
95         Buffer const & buffer = cur.buffer();
96         pit_type pit = cur.pit();
97         pos_type pos = cur.pos();
98         ParagraphList & pars = cur.text()->paragraphs();
99
100         if (parlist.empty())
101                 return make_pair(PitPosPair(pit, pos), pit);
102
103         BOOST_ASSERT (pos <= pars[pit].size());
104
105         // Make a copy of the CaP paragraphs.
106         ParagraphList insertion = parlist;
107         DocumentClass const * const newDocClass = 
108                 buffer.params().documentClassPtr();
109
110         // Now remove all out of the pars which is NOT allowed in the
111         // new environment and set also another font if that is required.
112
113         // Convert newline to paragraph break in ERT inset.
114         // This should not be here!
115         Inset * inset = pars[pit].inInset();
116         if (inset && (inset->lyxCode() == ERT_CODE ||
117                         inset->lyxCode() == LISTINGS_CODE)) {
118                 for (size_t i = 0; i != insertion.size(); ++i) {
119                         for (pos_type j = 0; j != insertion[i].size(); ++j) {
120                                 if (insertion[i].isNewline(j)) {
121                                         // do not track deletion of newline
122                                         insertion[i].eraseChar(j, false);
123                                         breakParagraphConservative(
124                                                         buffer.params(),
125                                                         insertion, i, j);
126                                 }
127                         }
128                 }
129         }
130
131         // set the paragraphs to empty layout if necessary
132         if (cur.inset().useEmptyLayout()) {
133                 bool forceEmptyLayout = cur.inset().forceEmptyLayout();
134                 Layout const & emptyLayout = newDocClass->emptyLayout();
135                 Layout const & defaultLayout = newDocClass->defaultLayout();
136                 ParagraphList::iterator const end = insertion.end();
137                 ParagraphList::iterator par = insertion.begin();
138                 for (; par != end; ++par) {
139                         Layout const & parLayout = par->layout();
140                         if (forceEmptyLayout || parLayout == defaultLayout)
141                                 par->setLayout(emptyLayout);
142                 }
143         } else { // check if we need to reset from empty layout
144                 Layout const & defaultLayout = newDocClass->defaultLayout();
145                 Layout const & emptyLayout = newDocClass->emptyLayout();
146                 ParagraphList::iterator const end = insertion.end();
147                 ParagraphList::iterator par = insertion.begin();
148                 for (; par != end; ++par) {
149                         Layout const & parLayout = par->layout();
150                         if (parLayout == emptyLayout)
151                                 par->setLayout(defaultLayout);
152                 }
153         }
154
155         // Make sure there is no class difference.
156         InsetText in;
157         // This works without copying any paragraph data because we have
158         // a specialized swap method for ParagraphList. This is important
159         // since we store pointers to insets at some places and we don't
160         // want to invalidate them.
161         insertion.swap(in.paragraphs());
162         cap::switchBetweenClasses(oldDocClass, newDocClass, in, errorlist);
163         insertion.swap(in.paragraphs());
164
165         ParagraphList::iterator tmpbuf = insertion.begin();
166         int depth_delta = pars[pit].params().depth() - tmpbuf->params().depth();
167
168         depth_type max_depth = pars[pit].getMaxDepthAfter();
169
170         for (; tmpbuf != insertion.end(); ++tmpbuf) {
171                 // If we have a negative jump so that the depth would
172                 // go below 0 depth then we have to redo the delta to
173                 // this new max depth level so that subsequent
174                 // paragraphs are aligned correctly to this paragraph
175                 // at level 0.
176                 if (int(tmpbuf->params().depth()) + depth_delta < 0)
177                         depth_delta = 0;
178
179                 // Set the right depth so that we are not too deep or shallow.
180                 tmpbuf->params().depth(tmpbuf->params().depth() + depth_delta);
181                 if (tmpbuf->params().depth() > max_depth)
182                         tmpbuf->params().depth(max_depth);
183
184                 // Only set this from the 2nd on as the 2nd depends
185                 // for maxDepth still on pit.
186                 if (tmpbuf != insertion.begin())
187                         max_depth = tmpbuf->getMaxDepthAfter();
188
189                 // Set the inset owner of this paragraph.
190                 tmpbuf->setInsetOwner(pars[pit].inInset());
191                 for (pos_type i = 0; i < tmpbuf->size(); ++i) {
192                         // do not track deletion of invalid insets
193                         if (Inset * inset = tmpbuf->getInset(i))
194                                 if (!pars[pit].insetAllowed(inset->lyxCode()))
195                                         tmpbuf->eraseChar(i--, false);
196                 }
197
198                 tmpbuf->setChange(Change(buffer.params().trackChanges ?
199                                          Change::INSERTED : Change::UNCHANGED));
200         }
201
202         bool const empty = pars[pit].empty();
203         if (!empty) {
204                 // Make the buf exactly the same layout as the cursor
205                 // paragraph.
206                 insertion.begin()->makeSameLayout(pars[pit]);
207         }
208
209         // Prepare the paragraphs and insets for insertion.
210         // A couple of insets store buffer references so need updating.
211         insertion.swap(in.paragraphs());
212
213         InsetIterator const i_end = inset_iterator_end(in);
214
215         for (InsetIterator it = inset_iterator_begin(in); it != i_end; ++it) {
216
217                 it->setBuffer(const_cast<Buffer &>(buffer));
218
219                 switch (it->lyxCode()) {
220  
221                 case LABEL_CODE: {
222                         // check for duplicates
223                         InsetCommand & lab = static_cast<InsetCommand &>(*it);
224                         docstring const oldname = lab.getParam("name");
225                         lab.updateCommand(oldname, false);
226                         docstring const newname = lab.getParam("name");
227                         if (oldname != newname) {
228                                 // adapt the references
229                                 for (InsetIterator itt = inset_iterator_begin(in); itt != i_end; ++itt) {
230                                         if (itt->lyxCode() == REF_CODE) {
231                                                 InsetCommand & ref = dynamic_cast<InsetCommand &>(*itt);
232                                                 if (ref.getParam("reference") == oldname)
233                                                         ref.setParam("reference", newname);
234                                         }
235                                 }
236                         }
237                         break;
238                 }
239
240                 case BIBITEM_CODE: {
241                         // check for duplicates
242                         InsetCommand & bib = static_cast<InsetCommand &>(*it);
243                         docstring const oldkey = bib.getParam("key");
244                         bib.updateCommand(oldkey, false);
245                         docstring const newkey = bib.getParam("key");
246                         if (oldkey != newkey) {
247                                 // adapt the references
248                                 for (InsetIterator itt = inset_iterator_begin(in); itt != i_end; ++itt) {
249                                         if (itt->lyxCode() == CITE_CODE) {
250                                                 InsetCommand & ref = dynamic_cast<InsetCommand &>(*itt);
251                                                 if (ref.getParam("key") == oldkey)
252                                                         ref.setParam("key", newkey);
253                                         }
254                                 }
255                         }
256                         break;
257                 }
258
259                 default:
260                         break; // nothing
261                 }
262         }
263         insertion.swap(in.paragraphs());
264
265         // Split the paragraph for inserting the buf if necessary.
266         if (!empty)
267                 breakParagraphConservative(buffer.params(), pars, pit, pos);
268
269         // Paste it!
270         if (empty) {
271                 pars.insert(boost::next(pars.begin(), pit),
272                             insertion.begin(),
273                             insertion.end());
274
275                 // merge the empty par with the last par of the insertion
276                 mergeParagraph(buffer.params(), pars,
277                                pit + insertion.size() - 1);
278         } else {
279                 pars.insert(boost::next(pars.begin(), pit + 1),
280                             insertion.begin(),
281                             insertion.end());
282
283                 // merge the first par of the insertion with the current par
284                 mergeParagraph(buffer.params(), pars, pit);
285         }
286
287         pit_type last_paste = pit + insertion.size() - 1;
288
289         // Store the new cursor position.
290         pit = last_paste;
291         pos = pars[last_paste].size();
292
293         // Join (conditionally) last pasted paragraph with next one, i.e.,
294         // the tail of the spliced document paragraph
295         if (!empty && last_paste + 1 != pit_type(pars.size())) {
296                 if (pars[last_paste + 1].hasSameLayout(pars[last_paste])) {
297                         mergeParagraph(buffer.params(), pars, last_paste);
298                 } else if (pars[last_paste + 1].empty()) {
299                         pars[last_paste + 1].makeSameLayout(pars[last_paste]);
300                         mergeParagraph(buffer.params(), pars, last_paste);
301                 } else if (pars[last_paste].empty()) {
302                         pars[last_paste].makeSameLayout(pars[last_paste + 1]);
303                         mergeParagraph(buffer.params(), pars, last_paste);
304                 } else {
305                         pars[last_paste + 1].stripLeadingSpaces(buffer.params().trackChanges);
306                         ++last_paste;
307                 }
308         }
309
310         return make_pair(PitPosPair(pit, pos), last_paste + 1);
311 }
312
313
314 PitPosPair eraseSelectionHelper(BufferParams const & params,
315         ParagraphList & pars,
316         pit_type startpit, pit_type endpit,
317         int startpos, int endpos)
318 {
319         // Start of selection is really invalid.
320         if (startpit == pit_type(pars.size()) ||
321             (startpos > pars[startpit].size()))
322                 return PitPosPair(endpit, endpos);
323
324         // Start and end is inside same paragraph
325         if (endpit == pit_type(pars.size()) || startpit == endpit) {
326                 endpos -= pars[startpit].eraseChars(startpos, endpos, params.trackChanges);
327                 return PitPosPair(endpit, endpos);
328         }
329
330         for (pit_type pit = startpit; pit != endpit + 1;) {
331                 pos_type const left  = (pit == startpit ? startpos : 0);
332                 pos_type right = (pit == endpit ? endpos : pars[pit].size() + 1);
333                 bool const merge = pars[pit].isMergedOnEndOfParDeletion(params.trackChanges);
334
335                 // Logically erase only, including the end-of-paragraph character
336                 pars[pit].eraseChars(left, right, params.trackChanges);
337
338                 // Separate handling of paragraph break:
339                 if (merge && pit != endpit &&
340                     (pit + 1 != endpit 
341                      || pars[pit].hasSameLayout(pars[endpit])
342                      || pars[endpit].size() == endpos)) {
343                         if (pit + 1 == endpit)
344                                 endpos += pars[pit].size();
345                         mergeParagraph(params, pars, pit);
346                         --endpit;
347                 } else
348                         ++pit;
349         }
350
351         // Ensure legal cursor pos:
352         endpit = startpit;
353         endpos = startpos;
354         return PitPosPair(endpit, endpos);
355 }
356
357
358 void putClipboard(ParagraphList const & paragraphs, 
359         DocumentClass const * const docclass, docstring const & plaintext)
360 {
361         // For some strange reason gcc 3.2 and 3.3 do not accept
362         // Buffer buffer(string(), false);
363         // This needs to be static to avoid a memory leak. When a Buffer is
364         // constructed, it constructs a BufferParams, which in turn constructs
365         // a DocumentClass, via new, that is never deleted. If we were to go to
366         // some kind of garbage collection there, or a shared_ptr, then this
367         // would not be needed.
368         static Buffer buffer("", false);
369         buffer.setUnnamed(true);
370         buffer.paragraphs() = paragraphs;
371         buffer.params().setDocumentClass(docclass);
372         ostringstream lyx;
373         if (buffer.write(lyx))
374                 theClipboard().put(lyx.str(), plaintext);
375         else
376                 theClipboard().put(string(), plaintext);
377         // Save that memory
378         buffer.paragraphs() = ParagraphList();
379 }
380
381
382 void copySelectionHelper(Buffer const & buf, ParagraphList & pars,
383         pit_type startpit, pit_type endpit,
384         int start, int end, DocumentClass const * const dc, CutStack & cutstack)
385 {
386         LASSERT(0 <= start && start <= pars[startpit].size(), /**/);
387         LASSERT(0 <= end && end <= pars[endpit].size(), /**/);
388         LASSERT(startpit != endpit || start <= end, /**/);
389
390         // Clone the paragraphs within the selection.
391         ParagraphList copy_pars(boost::next(pars.begin(), startpit),
392                                 boost::next(pars.begin(), endpit + 1));
393
394         // Remove the end of the last paragraph; afterwards, remove the
395         // beginning of the first paragraph. Keep this order - there may only
396         // be one paragraph!  Do not track deletions here; this is an internal
397         // action not visible to the user
398
399         Paragraph & back = copy_pars.back();
400         back.eraseChars(end, back.size(), false);
401         Paragraph & front = copy_pars.front();
402         front.eraseChars(0, start, false);
403
404         ParagraphList::iterator it = copy_pars.begin();
405         ParagraphList::iterator it_end = copy_pars.end();
406
407         for (; it != it_end; it++) {
408                 // ERT paragraphs have the Language latex_language.
409                 // This is invalid outside of ERT, so we need to change it
410                 // to the buffer language.
411                 if (it->ownerCode() == ERT_CODE || it->ownerCode() == LISTINGS_CODE) {
412                         it->changeLanguage(buf.params(), latex_language, buf.language());
413                 }
414                 it->setInsetOwner(0);
415         }
416
417         // do not copy text (also nested in insets) which is marked as deleted
418         acceptChanges(copy_pars, buf.params());
419
420         DocumentClass * d = const_cast<DocumentClass *>(dc);
421         cutstack.push(make_pair(copy_pars, d));
422 }
423
424 } // namespace anon
425
426
427
428
429 namespace cap {
430
431 void region(CursorSlice const & i1, CursorSlice const & i2,
432             Inset::row_type & r1, Inset::row_type & r2,
433             Inset::col_type & c1, Inset::col_type & c2)
434 {
435         Inset & p = i1.inset();
436         c1 = p.col(i1.idx());
437         c2 = p.col(i2.idx());
438         if (c1 > c2)
439                 swap(c1, c2);
440         r1 = p.row(i1.idx());
441         r2 = p.row(i2.idx());
442         if (r1 > r2)
443                 swap(r1, r2);
444 }
445
446
447 docstring grabAndEraseSelection(Cursor & cur)
448 {
449         if (!cur.selection())
450                 return docstring();
451         docstring res = grabSelection(cur);
452         eraseSelection(cur);
453         return res;
454 }
455
456
457 bool reduceSelectionToOneCell(Cursor & cur)
458 {
459         if (!cur.selection() || !cur.inMathed())
460                 return false;
461
462         CursorSlice i1 = cur.selBegin();
463         CursorSlice i2 = cur.selEnd();
464         if (!i1.inset().asInsetMath())
465                 return false;
466
467         // the easy case: do nothing if only one cell is selected
468         if (i1.idx() == i2.idx())
469                 return true;
470         
471         cur.top().pos() = 0;
472         cur.resetAnchor();
473         cur.top().pos() = cur.top().lastpos();
474         
475         return true;
476 }
477
478
479 bool multipleCellsSelected(Cursor const & cur)
480 {
481         if (!cur.selection() || !cur.inMathed())
482                 return false;
483         
484         CursorSlice i1 = cur.selBegin();
485         CursorSlice i2 = cur.selEnd();
486         if (!i1.inset().asInsetMath())
487                 return false;
488         
489         if (i1.idx() == i2.idx())
490                 return false;
491         
492         return true;
493 }
494
495
496 void switchBetweenClasses(DocumentClass const * const oldone, 
497                 DocumentClass const * const newone, InsetText & in, ErrorList & errorlist)
498 {
499         errorlist.clear();
500
501         LASSERT(!in.paragraphs().empty(), /**/);
502         if (oldone == newone)
503                 return;
504         
505         DocumentClass const & oldtc = *oldone;
506         DocumentClass const & newtc = *newone;
507
508         // layouts
509         ParIterator end = par_iterator_end(in);
510         for (ParIterator it = par_iterator_begin(in); it != end; ++it) {
511                 docstring const name = it->layout().name();
512                 bool hasLayout = newtc.hasLayout(name);
513
514                 if (in.useEmptyLayout())
515                         it->setLayout(newtc.emptyLayout());
516                 else if (hasLayout)
517                         it->setLayout(newtc[name]);
518                 else
519                         it->setLayout(newtc.defaultLayout());
520
521                 if (!hasLayout && name != oldtc.defaultLayoutName()) {
522                         docstring const s = bformat(
523                                                  _("Layout had to be changed from\n%1$s to %2$s\n"
524                                                 "because of class conversion from\n%3$s to %4$s"),
525                          name, it->layout().name(),
526                          from_utf8(oldtc.name()), from_utf8(newtc.name()));
527                         // To warn the user that something had to be done.
528                         errorlist.push_back(ErrorItem(_("Changed Layout"), s,
529                                                       it->id(), 0,
530                                                       it->size()));
531                 }
532         }
533
534         // character styles
535         InsetIterator const i_end = inset_iterator_end(in);
536         for (InsetIterator it = inset_iterator_begin(in); it != i_end; ++it) {
537                 InsetCollapsable * inset = it->asInsetCollapsable();
538                 if (!inset)
539                         continue;
540                 if (inset->lyxCode() != FLEX_CODE)
541                         // FIXME: Should we verify all InsetCollapsable?
542                         continue;
543                 inset->setLayout(newone);
544                 if (!inset->undefined())
545                         continue;
546                 // The flex inset is undefined in newtc
547                 docstring const s = bformat(_(
548                         "Flex inset %1$s is "
549                         "undefined because of class "
550                         "conversion from\n%2$s to %3$s"),
551                         inset->name(), from_utf8(oldtc.name()),
552                         from_utf8(newtc.name()));
553                 // To warn the user that something had to be done.
554                 errorlist.push_back(ErrorItem(
555                                 _("Undefined flex inset"),
556                                 s, it.paragraph().id(), it.pos(), it.pos() + 1));
557         }
558 }
559
560
561 vector<docstring> availableSelections()
562 {
563         vector<docstring> selList;
564
565         CutStack::const_iterator cit = theCuts.begin();
566         CutStack::const_iterator end = theCuts.end();
567         for (; cit != end; ++cit) {
568                 // we do not use cit-> here because gcc 2.9x does not
569                 // like it (JMarc)
570                 ParagraphList const & pars = (*cit).first;
571                 docstring asciiSel;
572                 ParagraphList::const_iterator pit = pars.begin();
573                 ParagraphList::const_iterator pend = pars.end();
574                 for (; pit != pend; ++pit) {
575                         asciiSel += pit->asString(AS_STR_INSETS);
576                         if (asciiSel.size() > 25) {
577                                 asciiSel.replace(22, docstring::npos,
578                                                  from_ascii("..."));
579                                 break;
580                         }
581                 }
582
583                 selList.push_back(asciiSel);
584         }
585
586         return selList;
587 }
588
589
590 size_type numberOfSelections()
591 {
592         return theCuts.size();
593 }
594
595
596 void cutSelection(Cursor & cur, bool doclear, bool realcut)
597 {
598         // This doesn't make sense, if there is no selection
599         if (!cur.selection())
600                 return;
601
602         // OK, we have a selection. This is always between cur.selBegin()
603         // and cur.selEnd()
604
605         if (cur.inTexted()) {
606                 Text * text = cur.text();
607                 LASSERT(text, /**/);
608
609                 saveSelection(cur);
610
611                 // make sure that the depth behind the selection are restored, too
612                 cur.recordUndoSelection();
613                 pit_type begpit = cur.selBegin().pit();
614                 pit_type endpit = cur.selEnd().pit();
615
616                 int endpos = cur.selEnd().pos();
617
618                 BufferParams const & bp = cur.buffer().params();
619                 if (realcut) {
620                         copySelectionHelper(cur.buffer(),
621                                 text->paragraphs(),
622                                 begpit, endpit,
623                                 cur.selBegin().pos(), endpos,
624                                 bp.documentClassPtr(), theCuts);
625                         // Stuff what we got on the clipboard.
626                         // Even if there is no selection.
627                         putClipboard(theCuts[0].first, theCuts[0].second,
628                                 cur.selectionAsString(true));
629                 }
630
631                 if (begpit != endpit)
632                         cur.updateFlags(Update::Force | Update::FitCursor);
633
634                 boost::tie(endpit, endpos) =
635                         eraseSelectionHelper(bp,
636                                 text->paragraphs(),
637                                 begpit, endpit,
638                                 cur.selBegin().pos(), endpos);
639
640                 // cutSelection can invalidate the cursor so we need to set
641                 // it anew. (Lgb)
642                 // we prefer the end for when tracking changes
643                 cur.pos() = endpos;
644                 cur.pit() = endpit;
645
646                 // sometimes necessary
647                 if (doclear
648                         && text->paragraphs()[begpit].stripLeadingSpaces(bp.trackChanges))
649                         cur.fixIfBroken();
650
651                 // need a valid cursor. (Lgb)
652                 cur.clearSelection();
653                 updateLabels(cur.buffer());
654
655                 // tell tabular that a recent copy happened
656                 dirtyTabularStack(false);
657         }
658
659         if (cur.inMathed()) {
660                 if (cur.selBegin().idx() != cur.selEnd().idx()) {
661                         // The current selection spans more than one cell.
662                         // Record all cells
663                         cur.recordUndoInset();
664                 } else {
665                         // Record only the current cell to avoid a jumping
666                         // cursor after undo
667                         cur.recordUndo();
668                 }
669                 if (realcut)
670                         copySelection(cur);
671                 eraseSelection(cur);
672         }
673 }
674
675
676 void copySelection(Cursor & cur)
677 {
678         copySelection(cur, cur.selectionAsString(true));
679 }
680
681
682 namespace {
683
684 void copySelectionToStack(Cursor & cur, CutStack & cutstack)
685 {
686         // this doesn't make sense, if there is no selection
687         if (!cur.selection())
688                 return;
689
690         // copySelection can not yet handle the case of cross idx selection
691         if (cur.selBegin().idx() != cur.selEnd().idx())
692                 return;
693
694         if (cur.inTexted()) {
695                 Text * text = cur.text();
696                 LASSERT(text, /**/);
697                 // ok we have a selection. This is always between cur.selBegin()
698                 // and sel_end cursor
699
700                 // copy behind a space if there is one
701                 ParagraphList & pars = text->paragraphs();
702                 pos_type pos = cur.selBegin().pos();
703                 pit_type par = cur.selBegin().pit();
704                 while (pos < pars[par].size() &&
705                        pars[par].isLineSeparator(pos) &&
706                        (par != cur.selEnd().pit() || pos < cur.selEnd().pos()))
707                         ++pos;
708
709                 copySelectionHelper(cur.buffer(), pars, par, cur.selEnd().pit(),
710                         pos, cur.selEnd().pos(), 
711                         cur.buffer().params().documentClassPtr(), cutstack);
712                 dirtyTabularStack(false);
713         }
714
715         if (cur.inMathed()) {
716                 //lyxerr << "copySelection in mathed" << endl;
717                 ParagraphList pars;
718                 Paragraph par;
719                 BufferParams const & bp = cur.buffer().params();
720                 // FIXME This should be the empty layout...right?
721                 par.setLayout(bp.documentClass().emptyLayout());
722                 par.insert(0, grabSelection(cur), Font(), Change(Change::UNCHANGED));
723                 pars.push_back(par);
724                 cutstack.push(make_pair(pars, bp.documentClassPtr()));
725         }
726 }
727
728 }
729
730
731 void copySelectionToStack()
732 {
733         if (!selectionBuffer.empty())
734                 theCuts.push(selectionBuffer[0]);
735 }
736
737
738 void copySelection(Cursor & cur, docstring const & plaintext)
739 {
740         // In tablemode, because copy and paste actually use special table stack
741         // we do not attempt to get selected paragraphs under cursor. Instead, a
742         // paragraph with the plain text version is generated so that table cells
743         // can be pasted as pure text somewhere else.
744         if (cur.selBegin().idx() != cur.selEnd().idx()) {
745                 ParagraphList pars;
746                 Paragraph par;
747                 BufferParams const & bp = cur.buffer().params();
748                 par.setLayout(bp.documentClass().emptyLayout());
749                 par.insert(0, plaintext, Font(), Change(Change::UNCHANGED));
750                 pars.push_back(par);
751                 theCuts.push(make_pair(pars, bp.documentClassPtr()));
752         } else {
753                 copySelectionToStack(cur, theCuts);
754         }
755
756         // stuff the selection onto the X clipboard, from an explicit copy request
757         putClipboard(theCuts[0].first, theCuts[0].second, plaintext);
758 }
759
760
761 void saveSelection(Cursor & cur)
762 {
763         // This function is called, not when a selection is formed, but when
764         // a selection is cleared. Therefore, multiple keyboard selection
765         // will not repeatively trigger this function (bug 3877).
766         if (cur.selection() 
767             && cur.selBegin() == cur.bv().cursor().selBegin()
768             && cur.selEnd() == cur.bv().cursor().selEnd()) {
769                 LYXERR(Debug::ACTION, "'" << cur.selectionAsString(true) << "'");
770                 copySelectionToStack(cur, selectionBuffer);
771         }
772 }
773
774
775 bool selection()
776 {
777         return !selectionBuffer.empty();
778 }
779
780
781 void clearSelection()
782 {
783         selectionBuffer.clear();
784 }
785
786
787 void clearCutStack()
788 {
789         theCuts.clear();
790 }
791
792
793 docstring selection(size_t sel_index)
794 {
795         return sel_index < theCuts.size()
796                 ? theCuts[sel_index].first.back().asString(AS_STR_INSETS)
797                 : docstring();
798 }
799
800
801 void pasteParagraphList(Cursor & cur, ParagraphList const & parlist,
802                         DocumentClass const * const docclass, ErrorList & errorList)
803 {
804         if (cur.inTexted()) {
805                 Text * text = cur.text();
806                 LASSERT(text, /**/);
807
808                 pit_type endpit;
809                 PitPosPair ppp;
810
811                 boost::tie(ppp, endpit) =
812                         pasteSelectionHelper(cur, parlist, docclass, errorList);
813                 updateLabels(cur.buffer());
814                 cur.clearSelection();
815                 text->setCursor(cur, ppp.first, ppp.second);
816         }
817
818         // mathed is handled in InsetMathNest/InsetMathGrid
819         LASSERT(!cur.inMathed(), /**/);
820 }
821
822
823 void pasteFromStack(Cursor & cur, ErrorList & errorList, size_t sel_index)
824 {
825         // this does not make sense, if there is nothing to paste
826         if (!checkPastePossible(sel_index))
827                 return;
828
829         cur.recordUndo();
830         pasteParagraphList(cur, theCuts[sel_index].first,
831                            theCuts[sel_index].second, errorList);
832         cur.setSelection();
833 }
834
835
836 void pasteClipboardText(Cursor & cur, ErrorList & errorList, bool asParagraphs)
837 {
838         // Use internal clipboard if it is the most recent one
839         if (theClipboard().isInternal()) {
840                 pasteFromStack(cur, errorList, 0);
841                 return;
842         }
843
844         // First try LyX format
845         if (theClipboard().hasLyXContents()) {
846                 string lyx = theClipboard().getAsLyX();
847                 if (!lyx.empty()) {
848                         // For some strange reason gcc 3.2 and 3.3 do not accept
849                         // Buffer buffer(string(), false);
850                         Buffer buffer("", false);
851                         buffer.setUnnamed(true);
852                         if (buffer.readString(lyx)) {
853                                 cur.recordUndo();
854                                 pasteParagraphList(cur, buffer.paragraphs(),
855                                         buffer.params().documentClassPtr(), errorList);
856                                 cur.setSelection();
857                                 return;
858                         }
859                 }
860         }
861
862         // Then try plain text
863         docstring const text = theClipboard().getAsText();
864         if (text.empty())
865                 return;
866         cur.recordUndo();
867         if (asParagraphs)
868                 cur.text()->insertStringAsParagraphs(cur, text);
869         else
870                 cur.text()->insertStringAsLines(cur, text);
871 }
872
873
874 void pasteClipboardGraphics(Cursor & cur, ErrorList & /* errorList */,
875                             Clipboard::GraphicsType preferedType)
876 {
877         LASSERT(theClipboard().hasGraphicsContents(preferedType), /**/);
878
879         // get picture from clipboard
880         FileName filename = theClipboard().getAsGraphics(cur, preferedType);
881         if (filename.empty())
882                 return;
883
884         // create inset for graphic
885         InsetGraphics * inset = new InsetGraphics(cur.buffer());
886         InsetGraphicsParams params;
887         params.filename = support::DocFileName(filename.absFilename());
888         inset->setParams(params);
889         cur.recordUndo();
890         cur.insert(inset);
891 }
892
893
894 void pasteSelection(Cursor & cur, ErrorList & errorList)
895 {
896         if (selectionBuffer.empty())
897                 return;
898         cur.recordUndo();
899         pasteParagraphList(cur, selectionBuffer[0].first,
900                            selectionBuffer[0].second, errorList);
901 }
902
903
904 void replaceSelectionWithString(Cursor & cur, docstring const & str, bool backwards)
905 {
906         cur.recordUndo();
907         DocIterator selbeg = cur.selectionBegin();
908
909         // Get font setting before we cut
910         Font const font =
911                 selbeg.paragraph().getFontSettings(cur.buffer().params(), selbeg.pos());
912
913         // Insert the new string
914         pos_type pos = cur.selEnd().pos();
915         Paragraph & par = cur.selEnd().paragraph();
916         docstring::const_iterator cit = str.begin();
917         docstring::const_iterator end = str.end();
918         for (; cit != end; ++cit, ++pos)
919                 par.insertChar(pos, *cit, font, cur.buffer().params().trackChanges);
920
921         // Cut the selection
922         cutSelection(cur, true, false);
923
924         // select the replacement
925         if (backwards) {
926                 selbeg.pos() += str.length();
927                 cur.setSelection(selbeg, -int(str.length()));
928         } else
929                 cur.setSelection(selbeg, str.length());
930 }
931
932
933 void replaceSelection(Cursor & cur)
934 {
935         if (cur.selection())
936                 cutSelection(cur, true, false);
937 }
938
939
940 void eraseSelection(Cursor & cur)
941 {
942         //lyxerr << "cap::eraseSelection begin: " << cur << endl;
943         CursorSlice const & i1 = cur.selBegin();
944         CursorSlice const & i2 = cur.selEnd();
945         if (i1.inset().asInsetMath()) {
946                 saveSelection(cur);
947                 cur.top() = i1;
948                 if (i1.idx() == i2.idx()) {
949                         i1.cell().erase(i1.pos(), i2.pos());
950                         // We may have deleted i1.cell(cur.pos()).
951                         // Make sure that pos is valid.
952                         if (cur.pos() > cur.lastpos())
953                                 cur.pos() = cur.lastpos();
954                 } else {
955                         InsetMath * p = i1.asInsetMath();
956                         Inset::row_type r1, r2;
957                         Inset::col_type c1, c2;
958                         region(i1, i2, r1, r2, c1, c2);
959                         for (Inset::row_type row = r1; row <= r2; ++row)
960                                 for (Inset::col_type col = c1; col <= c2; ++col)
961                                         p->cell(p->index(row, col)).clear();
962                         // We've deleted the whole cell. Only pos 0 is valid.
963                         cur.pos() = 0;
964                 }
965                 // need a valid cursor. (Lgb)
966                 cur.clearSelection();
967         } else {
968                 lyxerr << "can't erase this selection 1" << endl;
969         }
970         //lyxerr << "cap::eraseSelection end: " << cur << endl;
971 }
972
973
974 void selDel(Cursor & cur)
975 {
976         //lyxerr << "cap::selDel" << endl;
977         if (cur.selection())
978                 eraseSelection(cur);
979 }
980
981
982 void selClearOrDel(Cursor & cur)
983 {
984         //lyxerr << "cap::selClearOrDel" << endl;
985         if (lyxrc.auto_region_delete)
986                 selDel(cur);
987         else
988                 cur.selection() = false;
989 }
990
991
992 docstring grabSelection(Cursor const & cur)
993 {
994         if (!cur.selection())
995                 return docstring();
996
997 #if 0
998         // grab selection by glueing multiple cells together. This is not what
999         // we want because selections spanning multiple cells will get "&" and "\\"
1000         // seperators.
1001         ostringstream os;
1002         for (DocIterator dit = cur.selectionBegin();
1003              dit != cur.selectionEnd(); dit.forwardPos())
1004                 os << asString(dit.cell());
1005         return os.str();
1006 #endif
1007
1008         CursorSlice i1 = cur.selBegin();
1009         CursorSlice i2 = cur.selEnd();
1010
1011         if (i1.idx() == i2.idx()) {
1012                 if (i1.inset().asInsetMath()) {
1013                         MathData::const_iterator it = i1.cell().begin();
1014                         return asString(MathData(it + i1.pos(), it + i2.pos()));
1015                 } else {
1016                         return from_ascii("unknown selection 1");
1017                 }
1018         }
1019
1020         Inset::row_type r1, r2;
1021         Inset::col_type c1, c2;
1022         region(i1, i2, r1, r2, c1, c2);
1023
1024         docstring data;
1025         if (i1.inset().asInsetMath()) {
1026                 for (Inset::row_type row = r1; row <= r2; ++row) {
1027                         if (row > r1)
1028                                 data += "\\\\";
1029                         for (Inset::col_type col = c1; col <= c2; ++col) {
1030                                 if (col > c1)
1031                                         data += '&';
1032                                 data += asString(i1.asInsetMath()->
1033                                         cell(i1.asInsetMath()->index(row, col)));
1034                         }
1035                 }
1036         } else {
1037                 data = from_ascii("unknown selection 2");
1038         }
1039         return data;
1040 }
1041
1042
1043 void dirtyTabularStack(bool b)
1044 {
1045         dirty_tabular_stack_ = b;
1046 }
1047
1048
1049 bool tabularStackDirty()
1050 {
1051         return dirty_tabular_stack_;
1052 }
1053
1054
1055 } // namespace cap
1056
1057 } // namespace lyx