]> git.lyx.org Git - lyx.git/blobdiff - src/CutAndPaste.C
Trivial fixes to some warnings thrown up by MSVS.Net 2003.
[lyx.git] / src / CutAndPaste.C
index 2ed08ebf0af767acdbefa06733b1e3b6a63a79a6..436113033ab1100cc78aa0a78dd4e21bcf4dd2a2 100644 (file)
@@ -23,6 +23,7 @@
 #include "errorlist.h"
 #include "funcrequest.h"
 #include "gettext.h"
+#include "insetiterator.h"
 #include "lfuns.h"
 #include "lyxrc.h"
 #include "lyxtext.h"
@@ -34,6 +35,7 @@
 #include "pariterator.h"
 #include "undo.h"
 
+#include "insets/insetcharstyle.h"
 #include "insets/insettabular.h"
 
 #include "mathed/math_data.h"
@@ -45,7 +47,7 @@
 #include <boost/tuple/tuple.hpp>
 
 using lyx::pos_type;
-using lyx::par_type;
+using lyx::pit_type;
 using lyx::textclass_type;
 
 using lyx::support::bformat;
@@ -60,13 +62,19 @@ using std::string;
 
 namespace {
 
-typedef std::pair<lyx::par_type, int> PitPosPair;
+typedef std::pair<lyx::pit_type, int> PitPosPair;
 
 typedef limited_stack<pair<ParagraphList, textclass_type> > CutStack;
 
 CutStack theCuts(10);
 
-struct resetOwnerAndChanges : public std::unary_function<Paragraph, void> {
+// store whether the tabular stack is newer than the normal copy stack
+// FIXME: this is a workaround for bug 1919. Should be removed for 1.5, 
+// when we (hopefully) have a one-for-all paste mechanism.
+bool dirty_tabular_stack_;
+
+class resetOwnerAndChanges : public std::unary_function<Paragraph, void> {
+public:
        void operator()(Paragraph & p) const {
                p.cleanChanges();
                p.setInsetOwner(0);
@@ -96,9 +104,9 @@ bool checkPastePossible(int index)
 }
 
 
-pair<PitPosPair, par_type>
+pair<PitPosPair, pit_type>
 pasteSelectionHelper(Buffer const & buffer, ParagraphList & pars,
-       par_type pit, int pos,
+       pit_type pit, int pos,
        textclass_type tc, size_t cut_index, ErrorList & errorlist)
 {
        if (!checkPastePossible(cut_index))
@@ -113,9 +121,24 @@ pasteSelectionHelper(Buffer const & buffer, ParagraphList & pars,
        // Now remove all out of the pars which is NOT allowed in the
        // new environment and set also another font if that is required.
 
+       // Convert newline to paragraph break in ERT inset.
+       // This should not be here!
+       if (pars[pit].inInset() &&
+           pars[pit].inInset()->lyxCode() == InsetBase::ERT_CODE) {
+               for (ParagraphList::size_type i = 0; i < insertion.size(); ++i) {
+                       for (pos_type j = 0; j < insertion[i].size(); ++j) {
+                               if (insertion[i].isNewline(j)) {
+                                       insertion[i].erase(j);
+                                       breakParagraphConservative(
+                                                       buffer.params(),
+                                                       insertion, i, j);
+                               }
+                       }
+               }
+       }
+
        // Make sure there is no class difference.
-       lyx::cap::SwitchLayoutsBetweenClasses(textclass, tc, insertion,
-                                   errorlist);
+       lyx::cap::SwitchBetweenClasses(textclass, tc, insertion, errorlist);
 
        ParagraphList::iterator tmpbuf = insertion.begin();
        int depth_delta = pars[pit].params().depth() - tmpbuf->params().depth();
@@ -144,15 +167,18 @@ pasteSelectionHelper(Buffer const & buffer, ParagraphList & pars,
                // Set the inset owner of this paragraph.
                tmpbuf->setInsetOwner(pars[pit].inInset());
                for (pos_type i = 0; i < tmpbuf->size(); ++i) {
-                       if (tmpbuf->getChar(i) == Paragraph::META_INSET) {
-                               if (!pars[pit].insetAllowed(tmpbuf->getInset(i)->lyxCode()))
-                                       tmpbuf->erase(i--);
-                       }
+                       if (tmpbuf->getChar(i) == Paragraph::META_INSET &&
+                           !pars[pit].insetAllowed(tmpbuf->getInset(i)->lyxCode()))
+                               tmpbuf->erase(i--);
                }
        }
 
-       // Make the buf exactly the same layout as the cursor paragraph.
-       insertion.begin()->makeSameLayout(pars[pit]);
+       bool const empty = pars[pit].empty();
+       if (!empty) {
+               // Make the buf exactly the same layout as the cursor
+               // paragraph.
+               insertion.begin()->makeSameLayout(pars[pit]);
+       }
 
        // Prepare the paragraphs and insets for insertion.
        // A couple of insets store buffer references so need updating.
@@ -168,9 +194,9 @@ pasteSelectionHelper(Buffer const & buffer, ParagraphList & pars,
 
                for (; lit != eit; ++lit) {
                        switch (lit->inset->lyxCode()) {
-                       case InsetOld::TABULAR_CODE: {
+                       case InsetBase::TABULAR_CODE: {
                                InsetTabular * it = static_cast<InsetTabular*>(lit->inset);
-                               it->buffer(const_cast<Buffer*>(&buffer));
+                               it->buffer(&buffer);
                                break;
                        }
 
@@ -182,24 +208,33 @@ pasteSelectionHelper(Buffer const & buffer, ParagraphList & pars,
        std::swap(in.paragraphs(), insertion);
 
        // Split the paragraph for inserting the buf if necessary.
-       bool did_split = false;
-       if (pars[pit].size() || pit + 1 == par_type(pars.size())) {
+       if (!empty)
                breakParagraphConservative(buffer.params(), pars, pit, pos);
-               did_split = true;
-       }
 
        // Paste it!
-       pars.insert(pars.begin() + pit + 1, insertion.begin(), insertion.end());
-       mergeParagraph(buffer.params(), pars, pit);
+       if (empty) {
+               pars.insert(pars.begin() + pit, insertion.begin(),
+                           insertion.end());
 
-       par_type last_paste = pit + insertion.size() - 1;
+               // merge the empty par with the last par of the insertion
+               mergeParagraph(buffer.params(), pars,
+                              pit + insertion.size() - 1);
+       } else {
+               pars.insert(pars.begin() + pit + 1, insertion.begin(),
+                           insertion.end());
+
+               // merge the first par of the insertion with the current par
+               mergeParagraph(buffer.params(), pars, pit);
+       }
+
+       pit_type last_paste = pit + insertion.size() - 1;
 
        // Store the new cursor position.
        pit = last_paste;
        pos = pars[last_paste].size();
 
        // Maybe some pasting.
-       if (did_split && last_paste + 1 != par_type(pars.size())) {
+       if (!empty && last_paste + 1 != pit_type(pars.size())) {
                if (pars[last_paste + 1].hasSameLayout(pars[last_paste])) {
                        mergeParagraph(buffer.params(), pars, last_paste);
                } else if (pars[last_paste + 1].empty()) {
@@ -220,44 +255,53 @@ pasteSelectionHelper(Buffer const & buffer, ParagraphList & pars,
 
 PitPosPair eraseSelectionHelper(BufferParams const & params,
        ParagraphList & pars,
-       par_type startpit, par_type endpit,
+       pit_type startpit, pit_type endpit,
        int startpos, int endpos, bool doclear)
 {
-       if (startpit == par_type(pars.size()) ||
+        // Start of selection is really invalid.
+       if (startpit == pit_type(pars.size()) ||
            (startpos > pars[startpit].size()))
                return PitPosPair(endpit, endpos);
 
-       if (endpit == par_type(pars.size()) ||
+        // Start and end is inside same paragraph
+       if (endpit == pit_type(pars.size()) ||
            startpit == endpit) {
                endpos -= pars[startpit].erase(startpos, endpos);
                return PitPosPair(endpit, endpos);
        }
 
-       // clear end/begin fragments of the first/last par in selection
        bool all_erased = true;
 
+        // Clear fragments of the first par in selection
        pars[startpit].erase(startpos, pars[startpit].size());
        if (pars[startpit].size() != startpos)
                all_erased = false;
 
+        // Clear fragments of the last par in selection
        endpos -= pars[endpit].erase(0, endpos);
        if (endpos != 0)
                all_erased = false;
 
-       // Loop through the deleted pars if any, erasing as needed
-       for (par_type pit = startpit + 1; pit != endpit;) {
-               // "erase" the contents of the par
-               pars[pit].erase(0, pars[pit].size());
-               if (!pars[pit].size()) {
-                       // remove the par if it's now empty
-                       pars.erase(pars.begin() + pit);
-                       --endpit;
-               } else {
-                       ++pit;
-                       all_erased = false;
+        // Erase all the "middle" paragraphs.
+       if (params.tracking_changes) {
+               // Look through the deleted pars if any, erasing as needed
+               for (pit_type pit = startpit + 1; pit != endpit;) {
+                       // "erase" the contents of the par
+                       pars[pit].erase(0, pars[pit].size());
+                       if (pars[pit].empty()) {
+                               // remove the par if it's now empty
+                               pars.erase(pars.begin() + pit);
+                               --endpit;
+                       } else {
+                               ++pit;
+                               all_erased = false;
+                       }
                }
+       } else {
+               pars.erase(pars.begin() + startpit + 1, pars.begin() + endpit);
+               endpit = startpit + 1;
        }
-
+       
 #if 0 // FIXME: why for cut but not copy ?
        // the cut selection should begin with standard layout
        if (realcut) {
@@ -267,30 +311,29 @@ PitPosPair eraseSelectionHelper(BufferParams const & params,
        }
 #endif
 
-       if (startpit + 1 == par_type(pars.size()))
+       if (startpit + 1 == pit_type(pars.size()))
                return PitPosPair(endpit, endpos);
 
        if (doclear) {
                pars[startpit + 1].stripLeadingSpaces();
        }
 
-       // paste the paragraphs again, if possible
+       // Merge first and last paragraph, if possible
        if (all_erased &&
            (pars[startpit].hasSameLayout(pars[startpit + 1]) ||
             pars[startpit + 1].empty())) {
                mergeParagraph(params, pars, startpit);
-               // this because endpar gets deleted here!
+               // This because endpar gets deleted here!
                endpit = startpit;
                endpos = startpos;
        }
 
        return PitPosPair(endpit, endpos);
-
 }
 
 
 void copySelectionHelper(ParagraphList & pars,
-       par_type startpit, par_type endpit,
+       pit_type startpit, pit_type endpit,
        int start, int end, textclass_type tc)
 {
        BOOST_ASSERT(0 <= start && start <= pars[startpit].size());
@@ -299,6 +342,7 @@ void copySelectionHelper(ParagraphList & pars,
 
        // Clone the paragraphs within the selection.
        ParagraphList paragraphs(pars.begin() + startpit, pars.begin() + endpit + 1);
+
        for_each(paragraphs.begin(), paragraphs.end(), resetOwnerAndChanges());
 
        // Cut out the end of the last paragraph.
@@ -312,18 +356,6 @@ void copySelectionHelper(ParagraphList & pars,
        theCuts.push(make_pair(paragraphs, tc));
 }
 
-
-
-PitPosPair cutSelectionHelper(BufferParams const & params,
-       ParagraphList & pars, par_type startpit, par_type endpit,
-       int startpos, int endpos, textclass_type tc, bool doclear)
-{
-       copySelectionHelper(pars, startpit, endpit, startpos, endpos, tc);
-       return eraseSelectionHelper(params, pars, startpit, endpit,
-               startpos, endpos, doclear);
-}
-
-
 } // namespace anon
 
 
@@ -338,18 +370,16 @@ string grabAndEraseSelection(LCursor & cur)
                return string();
        string res = grabSelection(cur);
        eraseSelection(cur);
-       cur.selection() = false;
        return res;
 }
 
 
-int SwitchLayoutsBetweenClasses(textclass_type c1, textclass_type c2,
+void SwitchBetweenClasses(textclass_type c1, textclass_type c2,
        ParagraphList & pars, ErrorList & errorlist)
 {
        BOOST_ASSERT(!pars.empty());
-       int ret = 0;
        if (c1 == c2)
-               return ret;
+               return;
 
        LyXTextClass const & tclass1 = textclasslist[c1];
        LyXTextClass const & tclass2 = textclasslist[c2];
@@ -357,6 +387,7 @@ int SwitchLayoutsBetweenClasses(textclass_type c1, textclass_type c2,
        InsetText in;
        std::swap(in.paragraphs(), pars);
 
+       // layouts
        ParIterator end = par_iterator_end(in);
        for (ParIterator it = par_iterator_begin(in); it != end; ++it) {
                string const name = it->layout()->name();
@@ -368,19 +399,48 @@ int SwitchLayoutsBetweenClasses(textclass_type c1, textclass_type c2,
                        it->layout(tclass2.defaultLayout());
 
                if (!hasLayout && name != tclass1.defaultLayoutName()) {
-                       ++ret;
                        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, it->layout()->name(), tclass1.name(), tclass2.name());
                        // To warn the user that something had to be done.
-                       errorlist.push_back(ErrorItem("Changed Layout", s,
+                       errorlist.push_back(ErrorItem(_("Changed Layout"), s,
                                                      it->id(), 0,
                                                      it->size()));
                }
        }
+
+       // character styles
+       InsetIterator const i_end = inset_iterator_end(in);
+       for (InsetIterator it = inset_iterator_begin(in); it != i_end; ++it) {
+               if (it->lyxCode() == InsetBase::CHARSTYLE_CODE) {
+                       InsetCharStyle & inset =
+                               static_cast<InsetCharStyle &>(*it);
+                       string const name = inset.params().type;
+                       CharStyles::iterator const found_cs =
+                               tclass2.charstyle(name);
+                       if (found_cs == tclass2.charstyles().end()) {
+                               // The character style is undefined in tclass2
+                               inset.setUndefined();
+                               string const s = bformat(_(
+                                       "Character style %1$s is "
+                                       "undefined because of class "
+                                       "conversion from\n%2$s to %3$s"),
+                                        name, tclass1.name(), tclass2.name());
+                               // To warn the user that something had to be done.
+                               errorlist.push_back(ErrorItem(
+                                               _("Undefined character style"),
+                                               s, it.paragraph().id(),
+                                               it.pos(), it.pos() + 1));
+                       } else if (inset.undefined()) {
+                               // The character style is undefined in
+                               // tclass1 and is defined in tclass2
+                               inset.setDefined(found_cs);
+                       }
+               }
+       }
+
        std::swap(in.paragraphs(), pars);
-       return ret;
 }
 
 
@@ -412,14 +472,15 @@ std::vector<string> const availableSelections(Buffer const & buffer)
 }
 
 
-int nrOfParagraphs()
+void cutSelection(LCursor & cur, bool doclear, bool realcut)
 {
-       return theCuts.empty() ? 0 : theCuts[0].first.size();
-}
+       // This doesn't make sense, if there is no selection
+       if (!cur.selection())
+               return;
 
+       // OK, we have a selection. This is always between cur.selBegin()
+       // and cur.selEnd()
 
-void cutSelection(LCursor & cur, bool doclear, bool realcut)
-{
        if (cur.inTexted()) {
                LyXText * text = cur.text();
                BOOST_ASSERT(text);
@@ -431,19 +492,12 @@ void cutSelection(LCursor & cur, bool doclear, bool realcut)
                // finished. The solution used currently just works, to make it
                // faster we need to be more clever and probably also have more
                // calls to stuffClipboard. (Lgb)
-               cur.bv().stuffClipboard(cur.selectionAsString(true));
-
-               // This doesn't make sense, if there is no selection
-               if (!cur.selection())
-                       return;
-
-               // OK, we have a selection. This is always between cur.selBegin()
-               // and cur.selEnd()
+//             cur.bv().stuffClipboard(cur.selectionAsString(true));
 
                // make sure that the depth behind the selection are restored, too
                recordUndoSelection(cur);
-               par_type begpit = cur.selBegin().par();
-               par_type endpit = cur.selEnd().par();
+               pit_type begpit = cur.selBegin().pit();
+               pit_type endpit = cur.selEnd().pit();
 
                int endpos = cur.selEnd().pos();
 
@@ -455,7 +509,7 @@ void cutSelection(LCursor & cur, bool doclear, bool realcut)
                                bp.textclass);
                }
 
-               boost::tie(endpit, endpos) = 
+               boost::tie(endpit, endpos) =
                        eraseSelectionHelper(bp,
                                text->paragraphs(),
                                begpit, endpit,
@@ -466,24 +520,33 @@ void cutSelection(LCursor & cur, bool doclear, bool realcut)
                if (doclear)
                        text->paragraphs()[begpit].stripLeadingSpaces();
 
-               text->redoParagraphs(begpit, begpit + 1);
                // cutSelection can invalidate the cursor so we need to set
                // it anew. (Lgb)
                // we prefer the end for when tracking changes
                cur.pos() = endpos;
-               cur.par() = endpit;
+               cur.pit() = endpit;
 
                // need a valid cursor. (Lgb)
                cur.clearSelection();
-               text->updateCounters();
+               updateCounters(cur.buffer());
+
+               // tell tabular that a recent copy happened
+               dirtyTabularStack(false);
        }
 
        if (cur.inMathed()) {
-               lyxerr << "cutSelection in mathed" << endl;
-               LCursor tmp = cur;
-               copySelection(cur);
-               cur.selection() = false;
-               eraseSelection(tmp);
+               if (cur.selBegin().idx() != cur.selEnd().idx()) {
+                       // The current selection spans more than one cell.
+                       // Record all cells
+                       recordUndoInset(cur);
+               } else {
+                       // Record only the current cell to avoid a jumping
+                       // cursor after undo
+                       recordUndo(cur);
+               }
+               if (realcut)
+                       copySelection(cur);
+               eraseSelection(cur);
        }
 }
 
@@ -506,13 +569,13 @@ void copySelection(LCursor & cur)
                // copy behind a space if there is one
                ParagraphList & pars = text->paragraphs();
                pos_type pos = cur.selBegin().pos();
-               par_type par = cur.selBegin().par();
+               pit_type par = cur.selBegin().pit();
                while (pos < pars[par].size()
                                         && pars[par].isLineSeparator(pos)
-                                        && (par != cur.selEnd().par() || pos < cur.selEnd().pos()))
+                                        && (par != cur.selEnd().pit() || pos < cur.selEnd().pos()))
                        ++pos;
 
-               copySelectionHelper(pars, par, cur.selEnd().par(),
+               copySelectionHelper(pars, par, cur.selEnd().pit(),
                        pos, cur.selEnd().pos(), cur.buffer().params().textclass);
        }
 
@@ -526,6 +589,8 @@ void copySelection(LCursor & cur)
                pars.back().insert(0, grabSelection(cur), LyXFont());
                theCuts.push(make_pair(pars, bp.textclass));
        }
+       // tell tabular that a recent copy happened
+       dirtyTabularStack(false);
 }
 
 
@@ -550,32 +615,28 @@ void pasteSelection(LCursor & cur, size_t sel_index)
 
                recordUndo(cur);
 
-               par_type endpit;
+               pit_type endpit;
                PitPosPair ppp;
 
                ErrorList el;
 
                boost::tie(ppp, endpit) =
                        pasteSelectionHelper(cur.buffer(),
-                                                               text->paragraphs(),
-                                                               cur.par(), cur.pos(),
-                                                               cur.buffer().params().textclass,
-                                                               sel_index, el);
+                                             text->paragraphs(),
+                                             cur.pit(), cur.pos(),
+                                             cur.buffer().params().textclass,
+                                             sel_index, el);
                bufferErrors(cur.buffer(), el);
                cur.bv().showErrorList(_("Paste"));
 
-               text->redoParagraphs(cur.par(), endpit);
-
                cur.clearSelection();
-               cur.resetAnchor();
                text->setCursor(cur, ppp.first, ppp.second);
                cur.setSelection();
-               text->updateCounters();
+               updateCounters(cur.buffer());
        }
 
-       if (cur.inMathed()) {
-               lyxerr << "### should be handled in MathNest/GridInset" << endl;
-       }
+       // mathed is handled in MathNestInset/MathGridInset
+       BOOST_ASSERT(!cur.inMathed());
 }
 
 
@@ -601,14 +662,15 @@ void replaceSelectionWithString(LCursor & cur, string const & str)
 
        // Get font setting before we cut
        pos_type pos = cur.selEnd().pos();
-       LyXFont const font = text->getPar(cur.selBegin().par()).
-               getFontSettings(cur.buffer().params(), cur.selBegin().pos());
+       Paragraph & par = text->getPar(cur.selEnd().pit());
+       LyXFont const font =
+               par.getFontSettings(cur.buffer().params(), cur.selBegin().pos());
 
        // Insert the new string
        string::const_iterator cit = str.begin();
        string::const_iterator end = str.end();
        for (; cit != end; ++cit, ++pos)
-               text->getPar(cur.selEnd().par()).insertChar(pos, (*cit), font);
+               par.insertChar(pos, (*cit), font);
 
        // Cut the selection
        cutSelection(cur, true, false);
@@ -639,15 +701,17 @@ void replaceWord(LCursor & cur, string const & replacestring)
 
 void eraseSelection(LCursor & cur)
 {
-       //lyxerr << "LCursor::eraseSelection" << endl;
+       //lyxerr << "LCursor::eraseSelection begin: " << cur << endl;
        CursorSlice const & i1 = cur.selBegin();
        CursorSlice const & i2 = cur.selEnd();
-#ifdef WITH_WARNINGS
-#warning FIXME
-#endif
        if (i1.inset().asMathInset()) {
+               cur.top() = i1;
                if (i1.idx() == i2.idx()) {
                        i1.cell().erase(i1.pos(), i2.pos());
+                       // We may have deleted i1.cell(cur.pos()).
+                       // Make sure that pos is valid.
+                       if (cur.pos() > cur.lastpos())
+                               cur.pos() = cur.lastpos();
                } else {
                        MathInset * p = i1.asMathInset();
                        InsetBase::row_type r1, r2;
@@ -656,22 +720,23 @@ void eraseSelection(LCursor & cur)
                        for (InsetBase::row_type row = r1; row <= r2; ++row)
                                for (InsetBase::col_type col = c1; col <= c2; ++col)
                                        p->cell(p->index(row, col)).clear();
+                       // We've deleted the whole cell. Only pos 0 is valid.
+                       cur.pos() = 0;
                }
-               cur.back() = i1;
+               // need a valid cursor. (Lgb)
+               cur.clearSelection();
        } else {
                lyxerr << "can't erase this selection 1" << endl;
        }
-       //lyxerr << "LCursor::eraseSelection end" << endl;
+       //lyxerr << "LCursor::eraseSelection end: " << cur << endl;
 }
 
 
 void selDel(LCursor & cur)
 {
        //lyxerr << "LCursor::selDel" << endl;
-       if (cur.selection()) {
+       if (cur.selection())
                eraseSelection(cur);
-               cur.selection() = false;
-       }
 }
 
 
@@ -685,11 +750,20 @@ void selClearOrDel(LCursor & cur)
 }
 
 
-string grabSelection(LCursor & cur)
+string grabSelection(LCursor const & cur)
 {
        if (!cur.selection())
                return string();
 
+       // FIXME: What is wrong with the following?
+#if 0
+       std::ostringstream os;
+       for (DocIterator dit = cur.selectionBegin();
+            dit != cur.selectionEnd(); dit.forwardPos())
+               os << asString(dit.cell());
+       return os.str();
+#endif
+
        CursorSlice i1 = cur.selBegin();
        CursorSlice i2 = cur.selEnd();
 
@@ -725,5 +799,17 @@ string grabSelection(LCursor & cur)
 }
 
 
+void dirtyTabularStack(bool b)
+{
+       dirty_tabular_stack_ = b;
+}
+
+
+bool tabularStackDirty()
+{
+       return dirty_tabular_stack_;
+}
+
+
 } // namespace cap
 } // namespace lyx