]> git.lyx.org Git - lyx.git/blob - src/CutAndPaste.cpp
Fix a crash following the input of an invalid paragraph separation value in the docum...
[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 "FuncRequest.h"
26 #include "InsetIterator.h"
27 #include "InsetList.h"
28 #include "Language.h"
29 #include "lfuns.h"
30 #include "LyXFunc.h"
31 #include "LyXRC.h"
32 #include "Text.h"
33 #include "TextClassList.h"
34 #include "Paragraph.h"
35 #include "paragraph_funcs.h"
36 #include "ParagraphParameters.h"
37 #include "ParIterator.h"
38 #include "Undo.h"
39
40 #include "insets/InsetFlex.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, TextClassPtr> > 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         Inset::row_type & r1, Inset::row_type & r2,
87         Inset::col_type & c1, Inset::col_type & c2)
88 {
89         Inset & p = i1.inset();
90         c1 = p.col(i1.idx());
91         c2 = p.col(i2.idx());
92         if (c1 > c2)
93                 swap(c1, c2);
94         r1 = p.row(i1.idx());
95         r2 = p.row(i2.idx());
96         if (r1 > r2)
97                 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(Cursor & cur, ParagraphList const & parlist,
109                      TextClassPtr 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         TextClassPtr const tc = buffer.params().getTextClassPtr();
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() == ERT_CODE ||
132                 pars[pit].inInset()->lyxCode() == LISTINGS_CODE)) {
133                 for (ParagraphList::size_type i = 0; i < insertion.size(); ++i) {
134                         for (pos_type j = 0; j < insertion[i].size(); ++j) {
135                                 if (insertion[i].isNewline(j)) {
136                                         // do not track deletion of newline
137                                         insertion[i].eraseChar(j, false);
138                                         breakParagraphConservative(
139                                                         buffer.params(),
140                                                         insertion, i, j);
141                                 }
142                         }
143                 }
144         }
145
146         // set the paragraphs to empty layout if necessary
147         // note that we are doing this if the empty layout is
148         // supposed to be the default, not just if it is forced
149         if (cur.inset().useEmptyLayout()) {
150                 LayoutPtr const layout =
151                         buffer.params().getTextClass().emptyLayout();
152                 ParagraphList::iterator const end = insertion.end();
153                 for (ParagraphList::iterator par = insertion.begin();
154                                 par != end; ++par)
155                         par->layout(layout);
156         }
157
158         // Make sure there is no class difference.
159         InsetText in;
160         // This works without copying any paragraph data because we have
161         // a specialized swap method for ParagraphList. This is important
162         // since we store pointers to insets at some places and we don't
163         // want to invalidate them.
164         insertion.swap(in.paragraphs());
165         cap::switchBetweenClasses(textclass, tc, in, errorlist);
166         insertion.swap(in.paragraphs());
167
168         ParagraphList::iterator tmpbuf = insertion.begin();
169         int depth_delta = pars[pit].params().depth() - tmpbuf->params().depth();
170
171         depth_type max_depth = pars[pit].getMaxDepthAfter();
172
173         for (; tmpbuf != insertion.end(); ++tmpbuf) {
174                 // If we have a negative jump so that the depth would
175                 // go below 0 depth then we have to redo the delta to
176                 // this new max depth level so that subsequent
177                 // paragraphs are aligned correctly to this paragraph
178                 // at level 0.
179                 if (int(tmpbuf->params().depth()) + depth_delta < 0)
180                         depth_delta = 0;
181
182                 // Set the right depth so that we are not too deep or shallow.
183                 tmpbuf->params().depth(tmpbuf->params().depth() + depth_delta);
184                 if (tmpbuf->params().depth() > max_depth)
185                         tmpbuf->params().depth(max_depth);
186
187                 // Only set this from the 2nd on as the 2nd depends
188                 // for maxDepth still on pit.
189                 if (tmpbuf != insertion.begin())
190                         max_depth = tmpbuf->getMaxDepthAfter();
191
192                 // Set the inset owner of this paragraph.
193                 tmpbuf->setInsetOwner(pars[pit].inInset());
194                 for (pos_type i = 0; i < tmpbuf->size(); ++i) {
195                         // do not track deletion of invalid insets
196                         if (Inset * inset = tmpbuf->getInset(i))
197                                 if (!pars[pit].insetAllowed(inset->lyxCode()))
198                                         tmpbuf->eraseChar(i--, false);
199                 }
200
201                 tmpbuf->setChange(Change(buffer.params().trackChanges ?
202                                          Change::INSERTED : Change::UNCHANGED));
203         }
204
205         bool const empty = pars[pit].empty();
206         if (!empty) {
207                 // Make the buf exactly the same layout as the cursor
208                 // paragraph.
209                 insertion.begin()->makeSameLayout(pars[pit]);
210         }
211
212         // Prepare the paragraphs and insets for insertion.
213         // A couple of insets store buffer references so need updating.
214         insertion.swap(in.paragraphs());
215
216         ParIterator fpit = par_iterator_begin(in);
217         ParIterator fend = par_iterator_end(in);
218
219         for (; fpit != fend; ++fpit) {
220                 InsetList::const_iterator lit = fpit->insetList().begin();
221                 InsetList::const_iterator eit = fpit->insetList().end();
222
223                 for (; lit != eit; ++lit) {
224                         switch (lit->inset->lyxCode()) {
225                         case TABULAR_CODE: {
226                                 InsetTabular * it = static_cast<InsetTabular*>(lit->inset);
227                                 it->buffer(&buffer);
228                                 break;
229                         }
230
231                         default:
232                                 break; // nothing
233                         }
234                 }
235         }
236         insertion.swap(in.paragraphs());
237
238         // Split the paragraph for inserting the buf if necessary.
239         if (!empty)
240                 breakParagraphConservative(buffer.params(), pars, pit, pos);
241
242         // Paste it!
243         if (empty) {
244                 pars.insert(boost::next(pars.begin(), pit),
245                             insertion.begin(),
246                             insertion.end());
247
248                 // merge the empty par with the last par of the insertion
249                 mergeParagraph(buffer.params(), pars,
250                                pit + insertion.size() - 1);
251         } else {
252                 pars.insert(boost::next(pars.begin(), pit + 1),
253                             insertion.begin(),
254                             insertion.end());
255
256                 // merge the first par of the insertion with the current par
257                 mergeParagraph(buffer.params(), pars, pit);
258         }
259
260         pit_type last_paste = pit + insertion.size() - 1;
261
262         // Store the new cursor position.
263         pit = last_paste;
264         pos = pars[last_paste].size();
265
266         // Join (conditionally) last pasted paragraph with next one, i.e.,
267         // the tail of the spliced document paragraph
268         if (!empty && last_paste + 1 != pit_type(pars.size())) {
269                 if (pars[last_paste + 1].hasSameLayout(pars[last_paste])) {
270                         mergeParagraph(buffer.params(), pars, last_paste);
271                 } else if (pars[last_paste + 1].empty()) {
272                         pars[last_paste + 1].makeSameLayout(pars[last_paste]);
273                         mergeParagraph(buffer.params(), pars, last_paste);
274                 } else if (pars[last_paste].empty()) {
275                         pars[last_paste].makeSameLayout(pars[last_paste + 1]);
276                         mergeParagraph(buffer.params(), pars, last_paste);
277                 } else {
278                         pars[last_paste + 1].stripLeadingSpaces(buffer.params().trackChanges);
279                         ++last_paste;
280                 }
281         }
282
283         return make_pair(PitPosPair(pit, pos), last_paste + 1);
284 }
285
286
287 PitPosPair eraseSelectionHelper(BufferParams const & params,
288         ParagraphList & pars,
289         pit_type startpit, pit_type endpit,
290         int startpos, int endpos)
291 {
292         // Start of selection is really invalid.
293         if (startpit == pit_type(pars.size()) ||
294             (startpos > pars[startpit].size()))
295                 return PitPosPair(endpit, endpos);
296
297         // Start and end is inside same paragraph
298         if (endpit == pit_type(pars.size()) || startpit == endpit) {
299                 endpos -= pars[startpit].eraseChars(startpos, endpos, params.trackChanges);
300                 return PitPosPair(endpit, endpos);
301         }
302
303         for (pit_type pit = startpit; pit != endpit + 1;) {
304                 pos_type const left  = (pit == startpit ? startpos : 0);
305                 pos_type right = (pit == endpit ? endpos : pars[pit].size() + 1);
306                 bool const merge = pars[pit].isMergedOnEndOfParDeletion(params.trackChanges);
307
308                 // Logically erase only, including the end-of-paragraph character
309                 pars[pit].eraseChars(left, right, params.trackChanges);
310
311                 // Separate handling of paragraph break:
312                 if (merge && pit != endpit &&
313                     (pit + 1 != endpit || pars[pit].hasSameLayout(pars[endpit]))) {
314                         if (pit + 1 == endpit)
315                                 endpos += pars[pit].size();
316                         mergeParagraph(params, pars, pit);
317                         --endpit;
318                 } else
319                         ++pit;
320         }
321
322         // Ensure legal cursor pos:
323         endpit = startpit;
324         endpos = startpos;
325         return PitPosPair(endpit, endpos);
326 }
327
328
329 void putClipboard(ParagraphList const & paragraphs, TextClassPtr textclass,
330                   docstring const & plaintext)
331 {
332         // For some strange reason gcc 3.2 and 3.3 do not accept
333         // Buffer buffer(string(), false);
334         Buffer buffer("", false);
335         buffer.setUnnamed(true);
336         buffer.paragraphs() = paragraphs;
337         buffer.params().setTextClass(textclass);
338         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, TextClassPtr 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
359         // beginning of the first paragraph. Keep this order - there may only
360         // be one paragraph!  Do not track deletions here; this is an internal
361         // action not visible to the user
362
363         Paragraph & back = copy_pars.back();
364         back.eraseChars(end, back.size(), false);
365         Paragraph & front = copy_pars.front();
366         front.eraseChars(0, start, false);
367
368         ParagraphList::iterator it = copy_pars.begin();
369         ParagraphList::iterator it_end = copy_pars.end();
370
371         for (; it != it_end; it++) {
372                 // ERT paragraphs have the Language latex_language.
373                 // This is invalid outside of ERT, so we need to change it
374                 // to the buffer language.
375                 if (it->ownerCode() == ERT_CODE || it->ownerCode() == LISTINGS_CODE) {
376                         it->changeLanguage(buf.params(), latex_language, buf.language());
377                 }
378                 it->setInsetOwner(0);
379         }
380
381         // do not copy text (also nested in insets) which is marked as deleted
382         acceptChanges(copy_pars, buf.params());
383
384         cutstack.push(make_pair(copy_pars, tc));
385 }
386
387 } // namespace anon
388
389
390
391
392 namespace cap {
393
394 docstring grabAndEraseSelection(Cursor & cur)
395 {
396         if (!cur.selection())
397                 return docstring();
398         docstring res = grabSelection(cur);
399         eraseSelection(cur);
400         return res;
401 }
402
403
404 void switchBetweenClasses(TextClassPtr const & oldone, 
405         TextClassPtr const & newone, InsetText & in, ErrorList & errorlist)
406 {
407         errorlist.clear();
408
409         BOOST_ASSERT(!in.paragraphs().empty());
410         if (oldone == newone)
411                 return;
412         
413         TextClass const & oldtc = *oldone;
414         TextClass const & newtc = *newone;
415
416         // layouts
417         ParIterator end = par_iterator_end(in);
418         for (ParIterator it = par_iterator_begin(in); it != end; ++it) {
419                 docstring const name = it->layout()->name();
420                 bool hasLayout = newtc.hasLayout(name);
421
422                 if (hasLayout)
423                         it->layout(newtc[name]);
424                 else
425                         it->layout(newtc.defaultLayout());
426
427                 if (!hasLayout && name != oldtc.defaultLayoutName()) {
428                         docstring const s = bformat(
429                                                  _("Layout had to be changed from\n%1$s to %2$s\n"
430                                                 "because of class conversion from\n%3$s to %4$s"),
431                          name, it->layout()->name(),
432                          from_utf8(oldtc.name()), from_utf8(newtc.name()));
433                         // To warn the user that something had to be done.
434                         errorlist.push_back(ErrorItem(_("Changed Layout"), s,
435                                                       it->id(), 0,
436                                                       it->size()));
437                 }
438         }
439
440         // character styles
441         InsetIterator const i_end = inset_iterator_end(in);
442         for (InsetIterator it = inset_iterator_begin(in); it != i_end; ++it) {
443                 InsetCollapsable * inset = it->asInsetCollapsable();
444                 if (!inset)
445                         continue;
446                 if (inset->lyxCode() != FLEX_CODE)
447                         // FIXME: Should we verify all InsetCollapsable?
448                         continue;
449                 inset->setLayout(newone);
450                 if (inset->getLayout().labelstring != from_utf8("UNDEFINED"))
451                         continue;
452                 // The flex inset is undefined in newtc
453                 docstring const s = bformat(_(
454                         "Flex inset %1$s is "
455                         "undefined because of class "
456                         "conversion from\n%2$s to %3$s"),
457                         inset->name(), from_utf8(oldtc.name()),
458                         from_utf8(newtc.name()));
459                 // To warn the user that something had to be done.
460                 errorlist.push_back(ErrorItem(
461                                 _("Undefined flex inset"),
462                                 s, it.paragraph().id(), it.pos(), it.pos() + 1));
463         }
464 }
465
466
467 vector<docstring> const availableSelections(Buffer const & buffer)
468 {
469         vector<docstring> selList;
470
471         CutStack::const_iterator cit = theCuts.begin();
472         CutStack::const_iterator end = theCuts.end();
473         for (; cit != end; ++cit) {
474                 // we do not use cit-> here because gcc 2.9x does not
475                 // like it (JMarc)
476                 ParagraphList const & pars = (*cit).first;
477                 docstring asciiSel;
478                 ParagraphList::const_iterator pit = pars.begin();
479                 ParagraphList::const_iterator pend = pars.end();
480                 for (; pit != pend; ++pit) {
481                         asciiSel += pit->asString(buffer, false);
482                         if (asciiSel.size() > 25) {
483                                 asciiSel.replace(22, docstring::npos,
484                                                  from_ascii("..."));
485                                 break;
486                         }
487                 }
488
489                 selList.push_back(asciiSel);
490         }
491
492         return selList;
493 }
494
495
496 size_type numberOfSelections()
497 {
498         return theCuts.size();
499 }
500
501
502 void cutSelection(Cursor & cur, bool doclear, bool realcut)
503 {
504         // This doesn't make sense, if there is no selection
505         if (!cur.selection())
506                 return;
507
508         // OK, we have a selection. This is always between cur.selBegin()
509         // and cur.selEnd()
510
511         if (cur.inTexted()) {
512                 Text * text = cur.text();
513                 BOOST_ASSERT(text);
514
515                 saveSelection(cur);
516
517                 // make sure that the depth behind the selection are restored, too
518                 cur.recordUndoSelection();
519                 pit_type begpit = cur.selBegin().pit();
520                 pit_type endpit = cur.selEnd().pit();
521
522                 int endpos = cur.selEnd().pos();
523
524                 BufferParams const & bp = cur.buffer().params();
525                 if (realcut) {
526                         copySelectionHelper(cur.buffer(),
527                                 text->paragraphs(),
528                                 begpit, endpit,
529                                 cur.selBegin().pos(), endpos,
530                                 bp.getTextClassPtr(), theCuts);
531                         // Stuff what we got on the clipboard.
532                         // Even if there is no selection.
533                         putClipboard(theCuts[0].first, theCuts[0].second,
534                                 cur.selectionAsString(true));
535                 }
536
537                 boost::tie(endpit, endpos) =
538                         eraseSelectionHelper(bp,
539                                 text->paragraphs(),
540                                 begpit, endpit,
541                                 cur.selBegin().pos(), endpos);
542
543                 // cutSelection can invalidate the cursor so we need to set
544                 // it anew. (Lgb)
545                 // we prefer the end for when tracking changes
546                 cur.pos() = endpos;
547                 cur.pit() = endpit;
548
549                 // sometimes necessary
550                 if (doclear
551                         && text->paragraphs()[begpit].stripLeadingSpaces(bp.trackChanges))
552                         cur.fixIfBroken();
553
554                 // need a valid cursor. (Lgb)
555                 cur.clearSelection();
556                 updateLabels(cur.buffer());
557
558                 // tell tabular that a recent copy happened
559                 dirtyTabularStack(false);
560         }
561
562         if (cur.inMathed()) {
563                 if (cur.selBegin().idx() != cur.selEnd().idx()) {
564                         // The current selection spans more than one cell.
565                         // Record all cells
566                         cur.recordUndoInset();
567                 } else {
568                         // Record only the current cell to avoid a jumping
569                         // cursor after undo
570                         cur.recordUndo();
571                 }
572                 if (realcut)
573                         copySelection(cur);
574                 eraseSelection(cur);
575         }
576 }
577
578
579 void copySelection(Cursor & cur)
580 {
581         copySelection(cur, cur.selectionAsString(true));
582 }
583
584
585 namespace {
586
587 void copySelectionToStack(Cursor & cur, CutStack & cutstack)
588 {
589         // this doesn't make sense, if there is no selection
590         if (!cur.selection())
591                 return;
592
593         // copySelection can not yet handle the case of cross idx selection
594         if (cur.selBegin().idx() != cur.selEnd().idx())
595                 return;
596
597         if (cur.inTexted()) {
598                 Text * text = cur.text();
599                 BOOST_ASSERT(text);
600                 // ok we have a selection. This is always between cur.selBegin()
601                 // and sel_end cursor
602
603                 // copy behind a space if there is one
604                 ParagraphList & pars = text->paragraphs();
605                 pos_type pos = cur.selBegin().pos();
606                 pit_type par = cur.selBegin().pit();
607                 while (pos < pars[par].size() &&
608                        pars[par].isLineSeparator(pos) &&
609                        (par != cur.selEnd().pit() || pos < cur.selEnd().pos()))
610                         ++pos;
611
612                 copySelectionHelper(cur.buffer(), pars, par, cur.selEnd().pit(),
613                         pos, cur.selEnd().pos(), 
614                         cur.buffer().params().getTextClassPtr(), cutstack);
615                 dirtyTabularStack(false);
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.getTextClass().defaultLayout());
624                 par.insert(0, grabSelection(cur), Font(), Change(Change::UNCHANGED));
625                 pars.push_back(par);
626                 cutstack.push(make_pair(pars, bp.getTextClassPtr()));
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(Cursor & cur, docstring const & plaintext)
641 {
642         // In tablemode, because copy and paste actually use special table stack
643         // we do not attempt to get selected paragraphs under cursor. Instead, a
644         // paragraph with the plain text version is generated so that table cells
645         // can be pasted as pure text somewhere else.
646         if (cur.selBegin().idx() != cur.selEnd().idx()) {
647                 ParagraphList pars;
648                 Paragraph par;
649                 BufferParams const & bp = cur.buffer().params();
650                 par.layout(bp.getTextClass().defaultLayout());
651                 par.insert(0, plaintext, Font(), Change(Change::UNCHANGED));
652                 pars.push_back(par);
653                 theCuts.push(make_pair(pars, bp.getTextClassPtr()));
654         } else {
655                 copySelectionToStack(cur, theCuts);
656         }
657
658         // stuff the selection onto the X clipboard, from an explicit copy request
659         putClipboard(theCuts[0].first, theCuts[0].second, plaintext);
660 }
661
662
663 void saveSelection(Cursor & cur)
664 {
665         // This function is called, not when a selection is formed, but when
666         // a selection is cleared. Therefore, multiple keyboard selection
667         // will not repeatively trigger this function (bug 3877).
668         if (cur.selection() 
669             && cur.selBegin() == cur.bv().cursor().selBegin()
670             && cur.selEnd() == cur.bv().cursor().selEnd()) {
671                 LYXERR(Debug::ACTION, "'" << cur.selectionAsString(true) << "'");
672                 copySelectionToStack(cur, selectionBuffer);
673         }
674 }
675
676
677 bool selection()
678 {
679         return !selectionBuffer.empty();
680 }
681
682
683 void clearSelection()
684 {
685         selectionBuffer.clear();
686 }
687
688
689 void clearCutStack()
690 {
691         theCuts.clear();
692 }
693
694
695 docstring getSelection(Buffer const & buf, size_t sel_index)
696 {
697         return sel_index < theCuts.size()
698                 ? theCuts[sel_index].first.back().asString(buf, false)
699                 : docstring();
700 }
701
702
703 void pasteParagraphList(Cursor & cur, ParagraphList const & parlist,
704                         TextClassPtr textclass, ErrorList & errorList)
705 {
706         if (cur.inTexted()) {
707                 Text * text = cur.text();
708                 BOOST_ASSERT(text);
709
710                 pit_type endpit;
711                 PitPosPair ppp;
712
713                 boost::tie(ppp, endpit) =
714                         pasteSelectionHelper(cur, parlist,
715                                              textclass, errorList);
716                 updateLabels(cur.buffer());
717                 cur.clearSelection();
718                 text->setCursor(cur, ppp.first, ppp.second);
719         }
720
721         // mathed is handled in InsetMathNest/InsetMathGrid
722         BOOST_ASSERT(!cur.inMathed());
723 }
724
725
726 void pasteFromStack(Cursor & cur, ErrorList & errorList, size_t sel_index)
727 {
728         // this does not make sense, if there is nothing to paste
729         if (!checkPastePossible(sel_index))
730                 return;
731
732         cur.recordUndo();
733         pasteParagraphList(cur, theCuts[sel_index].first,
734                            theCuts[sel_index].second, errorList);
735         cur.setSelection();
736 }
737
738
739 void pasteClipboardText(Cursor & cur, ErrorList & errorList, bool asParagraphs)
740 {
741         // Use internal clipboard if it is the most recent one
742         if (theClipboard().isInternal()) {
743                 pasteFromStack(cur, errorList, 0);
744                 return;
745         }
746
747         // First try LyX format
748         if (theClipboard().hasLyXContents()) {
749                 string lyx = theClipboard().getAsLyX();
750                 if (!lyx.empty()) {
751                         // For some strange reason gcc 3.2 and 3.3 do not accept
752                         // Buffer buffer(string(), false);
753                         Buffer buffer("", false);
754                         buffer.setUnnamed(true);
755                         if (buffer.readString(lyx)) {
756                                 cur.recordUndo();
757                                 pasteParagraphList(cur, buffer.paragraphs(),
758                                         buffer.params().getTextClassPtr(), errorList);
759                                 cur.setSelection();
760                                 return;
761                         }
762                 }
763         }
764
765         // Then try plain text
766         docstring const text = theClipboard().getAsText();
767         if (text.empty())
768                 return;
769         cur.recordUndo();
770         if (asParagraphs)
771                 cur.text()->insertStringAsParagraphs(cur, text);
772         else
773                 cur.text()->insertStringAsLines(cur, text);
774 }
775
776
777 void pasteClipboardGraphics(Cursor & cur, ErrorList & errorList,
778                             Clipboard::GraphicsType preferedType)
779 {
780         BOOST_ASSERT(theClipboard().hasGraphicsContents(preferedType));
781
782         // get picture from clipboard
783         FileName filename = theClipboard().getAsGraphics(cur, preferedType);
784         if (filename.empty())
785                 return;
786
787         // create inset for graphic
788         InsetGraphics * inset = new InsetGraphics;
789         InsetGraphicsParams params;
790         params.filename = EmbeddedFile(filename.absFilename(), cur.buffer().filePath());
791         inset->setParams(params);
792         cur.recordUndo();
793         cur.insert(inset);
794 }
795
796
797 void pasteSelection(Cursor & cur, ErrorList & errorList)
798 {
799         if (selectionBuffer.empty())
800                 return;
801         cur.recordUndo();
802         pasteParagraphList(cur, selectionBuffer[0].first,
803                            selectionBuffer[0].second, errorList);
804 }
805
806
807 void replaceSelectionWithString(Cursor & cur, docstring const & str, bool backwards)
808 {
809         cur.recordUndo();
810         DocIterator selbeg = cur.selectionBegin();
811
812         // Get font setting before we cut
813         Font const font =
814                 selbeg.paragraph().getFontSettings(cur.buffer().params(), selbeg.pos());
815
816         // Insert the new string
817         pos_type pos = cur.selEnd().pos();
818         Paragraph & par = cur.selEnd().paragraph();
819         docstring::const_iterator cit = str.begin();
820         docstring::const_iterator end = str.end();
821         for (; cit != end; ++cit, ++pos)
822                 par.insertChar(pos, *cit, font, cur.buffer().params().trackChanges);
823
824         // Cut the selection
825         cutSelection(cur, true, false);
826
827         // select the replacement
828         if (backwards) {
829                 selbeg.pos() += str.length();
830                 cur.setSelection(selbeg, -int(str.length()));
831         } else
832                 cur.setSelection(selbeg, str.length());
833 }
834
835
836 void replaceSelection(Cursor & cur)
837 {
838         if (cur.selection())
839                 cutSelection(cur, true, false);
840 }
841
842
843 void eraseSelection(Cursor & cur)
844 {
845         //lyxerr << "cap::eraseSelection begin: " << cur << endl;
846         CursorSlice const & i1 = cur.selBegin();
847         CursorSlice const & i2 = cur.selEnd();
848         if (i1.inset().asInsetMath()) {
849                 saveSelection(cur);
850                 cur.top() = i1;
851                 if (i1.idx() == i2.idx()) {
852                         i1.cell().erase(i1.pos(), i2.pos());
853                         // We may have deleted i1.cell(cur.pos()).
854                         // Make sure that pos is valid.
855                         if (cur.pos() > cur.lastpos())
856                                 cur.pos() = cur.lastpos();
857                 } else {
858                         InsetMath * p = i1.asInsetMath();
859                         Inset::row_type r1, r2;
860                         Inset::col_type c1, c2;
861                         region(i1, i2, r1, r2, c1, c2);
862                         for (Inset::row_type row = r1; row <= r2; ++row)
863                                 for (Inset::col_type col = c1; col <= c2; ++col)
864                                         p->cell(p->index(row, col)).clear();
865                         // We've deleted the whole cell. Only pos 0 is valid.
866                         cur.pos() = 0;
867                 }
868                 // need a valid cursor. (Lgb)
869                 cur.clearSelection();
870         } else {
871                 lyxerr << "can't erase this selection 1" << endl;
872         }
873         //lyxerr << "cap::eraseSelection end: " << cur << endl;
874 }
875
876
877 void selDel(Cursor & cur)
878 {
879         //lyxerr << "cap::selDel" << endl;
880         if (cur.selection())
881                 eraseSelection(cur);
882 }
883
884
885 void selClearOrDel(Cursor & cur)
886 {
887         //lyxerr << "cap::selClearOrDel" << endl;
888         if (lyxrc.auto_region_delete)
889                 selDel(cur);
890         else
891                 cur.selection() = false;
892 }
893
894
895 docstring grabSelection(Cursor const & cur)
896 {
897         if (!cur.selection())
898                 return docstring();
899
900         // FIXME: What is wrong with the following?
901 #if 0
902         ostringstream os;
903         for (DocIterator dit = cur.selectionBegin();
904              dit != cur.selectionEnd(); dit.forwardPos())
905                 os << asString(dit.cell());
906         return os.str();
907 #endif
908
909         CursorSlice i1 = cur.selBegin();
910         CursorSlice i2 = cur.selEnd();
911
912         if (i1.idx() == i2.idx()) {
913                 if (i1.inset().asInsetMath()) {
914                         MathData::const_iterator it = i1.cell().begin();
915                         return asString(MathData(it + i1.pos(), it + i2.pos()));
916                 } else {
917                         return from_ascii("unknown selection 1");
918                 }
919         }
920
921         Inset::row_type r1, r2;
922         Inset::col_type c1, c2;
923         region(i1, i2, r1, r2, c1, c2);
924
925         docstring data;
926         if (i1.inset().asInsetMath()) {
927                 for (Inset::row_type row = r1; row <= r2; ++row) {
928                         if (row > r1)
929                                 data += "\\\\";
930                         for (Inset::col_type col = c1; col <= c2; ++col) {
931                                 if (col > c1)
932                                         data += '&';
933                                 data += asString(i1.asInsetMath()->
934                                         cell(i1.asInsetMath()->index(row, col)));
935                         }
936                 }
937         } else {
938                 data = from_ascii("unknown selection 2");
939         }
940         return data;
941 }
942
943
944 void dirtyTabularStack(bool b)
945 {
946         dirty_tabular_stack_ = b;
947 }
948
949
950 bool tabularStackDirty()
951 {
952         return dirty_tabular_stack_;
953 }
954
955
956 } // namespace cap
957
958 } // namespace lyx