]> git.lyx.org Git - lyx.git/blobdiff - src/CutAndPaste.C
Make lyx2lyx output the new external inset format.
[lyx.git] / src / CutAndPaste.C
index 2e77087eb3cd921d532ec3d50ba61d4995453fc8..076d6eca7b8eac83d5403c3e5db9bb98c8a97376 100644 (file)
@@ -1,32 +1,35 @@
-/* This file is part of
- * ======================================================
+/* \file CutAndPaste.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           LyX, The Document Processor
+ * \author Jurgen Vigna
+ * \author Lars Gullik Bjønnes
  *
- *           Copyright 1995-2001 The LyX Team.
- *
- * ====================================================== */
+ * Full author contact details are available in file CREDITS
+ */
 
 #include <config.h>
 
 #include "CutAndPaste.h"
 #include "BufferView.h"
 #include "buffer.h"
+#include "errorlist.h"
 #include "paragraph.h"
 #include "ParagraphParameters.h"
 #include "lyxtext.h"
 #include "lyxcursor.h"
-#include "gettext.h"
 #include "iterators.h"
 #include "lyxtextclasslist.h"
 #include "undo_funcs.h"
+#include "gettext.h"
 #include "paragraph_funcs.h"
 #include "debug.h"
+#include "insets/insetinclude.h"
+#include "insets/insettabular.h"
 
-#include "insets/inseterror.h"
-
-#include "support/BoostFormat.h"
 #include "support/LAssert.h"
+#include "support/lstrings.h"
+#include "support/limited_stack.h"
 
 using std::endl;
 using std::pair;
@@ -59,9 +62,7 @@ extern BufferView * current_view;
 
 namespace {
 
-// FIXME: stupid name
-ParagraphList paragraphs;
-textclass_type textclass = 0;
+limited_stack<pair<ParagraphList, textclass_type> > cuts(10);
 
 } // namespace anon
 
@@ -140,7 +141,7 @@ PitPosPair CutAndPaste::eraseSelection(ParagraphList & pars,
 #warning current_view used here.
 // should we pass buffer or buffer->params around?
                Buffer * buffer = current_view->buffer();
-               mergeParagraph(buffer->params, pars, &*startpit);
+               mergeParagraph(buffer->params, pars, startpit);
                // this because endpar gets deleted here!
                endpit = startpit;
                endpos = startpos;
@@ -172,7 +173,7 @@ bool CutAndPaste::copySelection(ParagraphList::iterator startpit,
        lyx::Assert(0 <= end && end <= endpit->size());
        lyx::Assert(startpit != endpit || start <= end);
 
-       textclass = tc;
+       ParagraphList paragraphs;
 
        // Clone the paragraphs within the selection.
        ParagraphList::iterator postend = boost::next(endpit);
@@ -188,6 +189,8 @@ bool CutAndPaste::copySelection(ParagraphList::iterator startpit,
        Paragraph & front = paragraphs.front();
        front.erase(0, start);
 
+       cuts.push(make_pair(paragraphs, tc));
+
        return true;
 }
 
@@ -195,7 +198,17 @@ bool CutAndPaste::copySelection(ParagraphList::iterator startpit,
 pair<PitPosPair, ParagraphList::iterator>
 CutAndPaste::pasteSelection(ParagraphList & pars,
                            ParagraphList::iterator pit, int pos,
-                           textclass_type tc)
+                           textclass_type tc,
+                           ErrorList & errorlist)
+{
+       return pasteSelection(pars, pit, pos, tc, 0, errorlist);
+}
+
+pair<PitPosPair, ParagraphList::iterator>
+CutAndPaste::pasteSelection(ParagraphList & pars,
+                           ParagraphList::iterator pit, int pos,
+                           textclass_type tc, size_t cut_index,
+                           ErrorList & errorlist)
 {
        if (!checkPastePossible())
                return make_pair(PitPosPair(pit, pos), pit);
@@ -203,19 +216,19 @@ CutAndPaste::pasteSelection(ParagraphList & pars,
        lyx::Assert (pos <= pit->size());
 
        // Make a copy of the CaP paragraphs.
-       ParagraphList simple_cut_clone = paragraphs;
+       ParagraphList simple_cut_clone = cuts[cut_index].first;
+       textclass_type const textclass = cuts[cut_index].second;
 
        // Now remove all out of the pars which is NOT allowed in the
        // new environment and set also another font if that is required.
 
+       // Make sure there is no class difference.
+       SwitchLayoutsBetweenClasses(textclass, tc, simple_cut_clone,
+                                   errorlist);
+
        ParagraphList::iterator tmpbuf = simple_cut_clone.begin();
        int depth_delta = pit->params().depth() - tmpbuf->params().depth();
 
-       // Make sure there is no class difference.
-#warning current_view used here
-       SwitchLayoutsBetweenClasses(textclass, tc, &*tmpbuf,
-                                   current_view->buffer()->params);
-
        Paragraph::depth_type max_depth = pit->getMaxDepthAfter();
 
        for (; tmpbuf != simple_cut_clone.end(); ++tmpbuf) {
@@ -260,6 +273,38 @@ CutAndPaste::pasteSelection(ParagraphList & pars,
        // the cursor paragraph.
        simple_cut_clone.begin()->makeSameLayout(*pit);
 
+       // Prepare the paragraphs and insets for insertion
+       // A couple of insets store buffer references so need
+       // updating
+       ParIterator fpit(simple_cut_clone.begin(), simple_cut_clone);
+       ParIterator fend(simple_cut_clone.end(), simple_cut_clone);
+
+       for (; fpit != fend; ++fpit) {
+               InsetList::iterator lit = fpit->insetlist.begin();
+               InsetList::iterator eit = fpit->insetlist.end();
+
+               for (; lit != eit; ++lit) {
+                       switch (lit->inset->lyxCode()) {
+                       case Inset::INCLUDE_CODE: {
+                               InsetInclude * ii = static_cast<InsetInclude*>(lit->inset);
+                               InsetInclude::Params ip = ii->params();
+                               ip.masterFilename_ = current_view->buffer()->fileName();
+                               ii->set(ip);
+                               break;
+                       }
+                               
+                       case Inset::TABULAR_CODE: {
+                               InsetTabular * it = static_cast<InsetTabular*>(lit->inset);
+                               it->buffer(current_view->buffer());
+                               break;
+                       }
+                               
+                       default:
+                               break; // nothing
+                       }
+               }
+       }
+
        bool paste_the_end = false;
 
        // Open the paragraph for inserting the buf
@@ -314,16 +359,16 @@ CutAndPaste::pasteSelection(ParagraphList & pars,
 
 int CutAndPaste::nrOfParagraphs()
 {
-       return paragraphs.size();
+       return cuts.empty() ? 0 : cuts[0].first.size();
 }
 
 
 int CutAndPaste::SwitchLayoutsBetweenClasses(textclass_type c1,
                                             textclass_type c2,
-                                            Paragraph * par,
-                                            BufferParams const & /*bparams*/)
+                                            ParagraphList & pars,
+                                            ErrorList & errorlist)
 {
-       lyx::Assert(par);
+       lyx::Assert(!pars.empty());
 
        int ret = 0;
        if (c1 == c2)
@@ -331,9 +376,9 @@ int CutAndPaste::SwitchLayoutsBetweenClasses(textclass_type c1,
 
        LyXTextClass const & tclass1 = textclasslist[c1];
        LyXTextClass const & tclass2 = textclasslist[c2];
-       ParIterator end = ParIterator();
-       for (ParIterator it = ParIterator(par); it != end; ++it) {
-               par = *it;
+       ParIterator end = ParIterator(pars.end(), pars);
+       for (ParIterator it = ParIterator(pars.begin(), pars); it != end; ++it) {
+               Paragraph * par = &*(*it);
                string const name = par->layout()->name();
                bool hasLayout = tclass2.hasLayout(name);
 
@@ -344,34 +389,14 @@ int CutAndPaste::SwitchLayoutsBetweenClasses(textclass_type c1,
 
                if (!hasLayout && name != tclass1.defaultLayoutName()) {
                        ++ret;
-#if USE_BOOST_FORMAT
-                       boost::format fmt(_("Layout had to be changed from\n"
-                                           "%1$s to %2$s\n"
-                                           "because of class conversion from\n"
-                                           "%3$s to %4$s"));
-                       fmt     % name
-                               % par->layout()->name()
-                               % tclass1.name()
-                               % tclass2.name();
-
-                       string const s = fmt.str();
-#else
-                       string const s = _("Layout had to be changed from\n")
-                               + name + _(" to ")
-                               + par->layout()->name()
-                               + _("\nbecause of class conversion from\n")
-                               + tclass1.name() + _(" to ")
-                               + tclass2.name();
-#endif
-                       freezeUndo();
-                       InsetError * new_inset = new InsetError(s);
-                       LyXText * txt = current_view->getLyXText();
-                       LyXCursor cur = txt->cursor;
-                       txt->setCursorIntern(par, 0);
-                       txt->insertInset(new_inset);
-                       txt->fullRebreak();
-                       txt->setCursorIntern(cur.par(), cur.pos());
-                       unFreezeUndo();
+                       string const s = bformat(
+                               _("Layout had to be changed from\n%1$s to %2$s\n"
+                               "because of class conversion from\n%3$s to %4$s"),
+                        name, par->layout()->name(), tclass1.name(), tclass2.name());
+                       // To warn the user that something had to be done.
+                       errorlist.push_back(ErrorItem("Changed Layout", s,
+                                                     par->id(), 0,
+                                                     par->size()));
                }
        }
        return ret;
@@ -380,5 +405,5 @@ int CutAndPaste::SwitchLayoutsBetweenClasses(textclass_type c1,
 
 bool CutAndPaste::checkPastePossible()
 {
-       return !paragraphs.empty();
+       return !cuts.empty() && !cuts[0].first.empty();
 }