]> git.lyx.org Git - lyx.git/blobdiff - src/CutAndPaste.C
Dekels tabular/textinset patches
[lyx.git] / src / CutAndPaste.C
index d28498c7a0fe21268c55409aa6baf4996dd37f43..ef04824c567c1f18cbef1033357dc16deb3ee103 100644 (file)
 #include <config.h>
 
 #include "CutAndPaste.h"
+#include "BufferView.h"
+#include "buffer.h"
 #include "lyxparagraph.h"
 #include "insets/inseterror.h"
 #include "lyx_gui_misc.h"
+#include "lyxcursor.h"
 
 #ifdef __GNUG__
 #pragma implementation
@@ -20,6 +23,8 @@
 
 using std::pair;
 
+extern BufferView * current_view;
+
 // Jürgen, note that this means that you cannot currently have a list
 // of selections cut/copied. So IMHO later we should have a
 // list/vector/deque that we could store
@@ -73,42 +78,57 @@ bool CutAndPaste::cutSelection(LyXParagraph * startpar, LyXParagraph ** endpar,
 
     textclass = tc;
 
-    if (!(*endpar) || (startpar->ParFromPos(start) ==
-                      (*endpar)->ParFromPos(end))) {
+    if (!(*endpar) ||
+#ifndef NEW_INSETS
+       (startpar->ParFromPos(start) ==
+        (*endpar)->ParFromPos(end))
+#else
+       (startpar == (*endpar))
+#endif
+          ) {
        // only within one paragraph
        buf = new LyXParagraph;
        LyXParagraph::size_type i = start;
        if (end > startpar->Last())
            end = startpar->Last();
        for (; i < end; ++i) {
-           startpar->CopyIntoMinibuffer(start);
-           /* table stuff -- begin */
-           if (startpar->table && startpar->IsNewline(start)) {
-               ++start;
-           } else {
-               /* table stuff -- end */
-               startpar->Erase(start);
-           }
+           startpar->CopyIntoMinibuffer(*current_view->buffer(), start);
+           startpar->Erase(start);
+
            buf->InsertFromMinibuffer(buf->Last());
        }
+       end = start-1;
     } else {
        // more than one paragraph
-       (*endpar)->BreakParagraphConservative(end);
+       (*endpar)->BreakParagraphConservative(current_view->buffer()->params,
+                                             end);
        *endpar = (*endpar)->Next();
        end = 0;
    
-       startpar->BreakParagraphConservative(start);
+       startpar->BreakParagraphConservative(current_view->buffer()->params,
+                                            start);
 
        // store the selection
+#ifndef NEW_INSETS
        buf = startpar->ParFromPos(start)->next;
+#else
+       buf = startpar->next;
+#endif
        buf->previous = 0;
        (*endpar)->previous->next = 0;
 
        // cut the selection
+#ifndef NEW_INSETS
        startpar->ParFromPos(start)->next = (*endpar);
        
        (*endpar)->previous = startpar->ParFromPos(start);
+#else
+       startpar->next = (*endpar);
+       
+       (*endpar)->previous = startpar;
+#endif
 
+#ifndef NEW_INSETS
        // care about footnotes
        if (buf->footnoteflag) {
            LyXParagraph * tmppar = buf;
@@ -117,16 +137,27 @@ bool CutAndPaste::cutSelection(LyXParagraph * startpar, LyXParagraph ** endpar,
                tmppar = tmppar->next;
            }
        }
+#endif
 
        // the cut selection should begin with standard layout
        buf->Clear(); 
    
        // paste the paragraphs again, if possible
        if (doclear)
-           startpar->Next()->ClearParagraph();
-       if (startpar->FirstPhysicalPar()->HasSameLayout(startpar->Next()) || 
-           !startpar->Next()->Last())
-           startpar->ParFromPos(start)->PasteParagraph();
+           startpar->Next()->StripLeadingSpaces(textclass);
+#ifndef NEW_INSETS
+       if (startpar->FirstPhysicalPar()->HasSameLayout(startpar->Next()) ||
+#else
+       if (startpar->HasSameLayout(startpar->Next()) ||
+#endif
+           !startpar->Next()->Last()) {
+#ifndef NEW_INSETS
+           startpar->ParFromPos(start)->PasteParagraph(current_view->buffer()->params);
+#else
+           startpar->PasteParagraph(current_view->buffer()->params);
+#endif
+           (*endpar) = startpar; // this because endpar gets deleted here!
+       }
     }
     return true;
 }
@@ -142,25 +173,40 @@ bool CutAndPaste::copySelection(LyXParagraph * startpar, LyXParagraph * endpar,
 
     textclass = tc;
 
-    if (!(endpar) || (startpar->ParFromPos(start) ==
-                      (endpar)->ParFromPos(end))) {
+    if (!(endpar) ||
+#ifndef NEW_INSETS
+       (startpar->ParFromPos(start) ==
+                      (endpar)->ParFromPos(end))
+#else
+       (startpar == endpar)
+#endif
+          ) {
        // only within one paragraph
        buf = new LyXParagraph;
        LyXParagraph::size_type i = start;
        if (end > startpar->Last())
            end = startpar->Last();
        for (; i < end; ++i) {
-           startpar->CopyIntoMinibuffer(i);
+           startpar->CopyIntoMinibuffer(*current_view->buffer(), i);
            buf->InsertFromMinibuffer(buf->Last());
        }
     } else {
        // copy more than one paragraph
        // clone the paragraphs within the selection
-       LyXParagraph *tmppar = startpar->ParFromPos(start);
+#ifndef NEW_INSETS
+       LyXParagraph * tmppar = startpar->ParFromPos(start);
+#else
+       LyXParagraph * tmppar = startpar;
+#endif
        buf = tmppar->Clone();
-       LyXParagraph *tmppar2 = buf;
+       LyXParagraph * tmppar2 = buf;
      
-       while (tmppar != endpar->ParFromPos(end)
+       while (
+#ifndef NEW_INSETS
+               tmppar != endpar->ParFromPos(end)
+#else
+               tmppar != endpar
+#endif
               && tmppar->next) {
            tmppar = tmppar->next;
            tmppar2->next = tmppar->Clone();
@@ -169,6 +215,7 @@ bool CutAndPaste::copySelection(LyXParagraph * startpar, LyXParagraph * endpar,
        }
        tmppar2->next = 0;
 
+#ifndef NEW_INSETS
        // care about footnotes
        if (buf->footnoteflag) {
            tmppar = buf;
@@ -177,15 +224,23 @@ bool CutAndPaste::copySelection(LyXParagraph * startpar, LyXParagraph * endpar,
                tmppar = tmppar->next;
            }
        }
+#endif
        
        // the buf paragraph is too big
+#ifndef NEW_INSETS
        LyXParagraph::size_type tmpi2 = startpar->PositionInParFromPos(start);
+#else
+       LyXParagraph::size_type tmpi2 = start;
+#endif
        for (; tmpi2; --tmpi2)
            buf->Erase(0);
        
        // now tmppar 2 is too big, delete all after end
-       
+#ifndef NEW_INSETS
        tmpi2 = endpar->PositionInParFromPos(end);
+#else
+       tmpi2 = end;
+#endif
        while (tmppar2->size() > tmpi2) {
            tmppar2->Erase(tmppar2->size() - 1);
        }
@@ -211,54 +266,24 @@ bool CutAndPaste::pasteSelection(LyXParagraph ** par, LyXParagraph ** endpar,
     if (!buf->next) {
        // only within a paragraph
        tmpbuf = buf->Clone();
-       /* table stuff -- begin */
-       bool table_too_small = false;
-       if ((*par)->table) {
-           while (buf->size() && !table_too_small) {
-               if (buf->IsNewline(0)){
-                   while((tmppos < tmppar->Last()) &&
-                         !tmppar->IsNewline(tmppos))
-                       ++tmppos;
-                   buf->Erase(0);
-                   if (tmppos < tmppar->Last())
-                       ++tmppos;
-                   else
-                       table_too_small = true;
-               } else {
-                   // This is an attempt to fix the
-                   // "never insert a space at the
-                   // beginning of a paragraph" problem.
-                   if (!tmppos && buf->IsLineSeparator(0)) {
-                       buf->Erase(0);
-                   } else {
-                       buf->CutIntoMinibuffer(0);
-                       buf->Erase(0);
-                       if (tmppar->InsertFromMinibuffer(tmppos))
-                           ++tmppos;
-                   }
-               }
-           }
-       } else {
-           /* table stuff -- end */
-           // Some provisions should be done here for checking
-           // if we are inserting at the beginning of a
-           // paragraph. If there are a space at the beginning
-           // of the text to insert and we are inserting at
-           // the beginning of the paragraph the space should
-           // be removed.
-           while (buf->size()) {
+       // Some provisions should be done here for checking
+       // if we are inserting at the beginning of a
+       // paragraph. If there are a space at the beginning
+       // of the text to insert and we are inserting at
+       // the beginning of the paragraph the space should
+       // be removed.
+       while (buf->size()) {
                // This is an attempt to fix the
                // "never insert a space at the
                // beginning of a paragraph" problem.
                if (!tmppos && buf->IsLineSeparator(0)) {
-                   buf->Erase(0);
+                       buf->Erase(0);
                } else {
-                   buf->CutIntoMinibuffer(0);
-                   buf->Erase(0);
-                   if (tmppar->InsertFromMinibuffer(tmppos))
-                       ++tmppos;
+                       buf->CutIntoMinibuffer(current_view->buffer()->params, 0);
+                       buf->Erase(0);
+                       if (tmppar->InsertFromMinibuffer(tmppos))
+                               ++tmppos;
                }
-           }
        }
        delete buf;
        buf = tmpbuf;
@@ -271,19 +296,23 @@ bool CutAndPaste::pasteSelection(LyXParagraph ** par, LyXParagraph ** endpar,
        tmpbuf = buf;
        LyXParagraph * simple_cut_clone = tmpbuf->Clone();
        LyXParagraph * tmpbuf2 = simple_cut_clone;
+#ifndef NEW_INSETS
        if ((*par)->footnoteflag){
            tmpbuf->footnoteflag = (*par)->footnoteflag;
            tmpbuf->footnotekind = (*par)->footnotekind;
        }
+#endif
        while (tmpbuf->next) {
            tmpbuf = tmpbuf->next;
            tmpbuf2->next = tmpbuf->Clone();
            tmpbuf2->next->previous = tmpbuf2;
            tmpbuf2 = tmpbuf2->next;
+#ifndef NEW_INSETS
            if ((*par)->footnoteflag){
                tmpbuf->footnoteflag = (*par)->footnoteflag;
                tmpbuf->footnotekind = (*par)->footnotekind;
            }
+#endif
        }
        
        // make sure there is no class difference
@@ -303,11 +332,13 @@ bool CutAndPaste::pasteSelection(LyXParagraph ** par, LyXParagraph ** endpar,
        // open the paragraph for inserting the buf
        // if necessary
        if (((*par)->Last() > pos) || !(*par)->Next()) {
-           (*par)->BreakParagraphConservative(pos);
+           (*par)->BreakParagraphConservative(current_view->buffer()->params,
+                                              pos);
            paste_the_end = true;
        }
        
        // set the end for redoing later
+#ifndef NEW_INSETS
        *endpar = (*par)->ParFromPos(pos)->next->Next();
        
        // paste it!
@@ -322,35 +353,59 @@ bool CutAndPaste::pasteSelection(LyXParagraph ** par, LyXParagraph ** endpar,
        if ((*par)->ParFromPos(pos)->Next() == lastbuffer)
            lastbuffer = *par;
        
-       (*par)->ParFromPos(pos)->PasteParagraph();
+       (*par)->ParFromPos(pos)->PasteParagraph(current_view->buffer()->params);
+#else
+       *endpar = (*par)->next->Next();
        
+       // paste it!
+       lastbuffer->next = (*par)->next;
+       (*par)->next->previous = lastbuffer;
+       
+       (*par)->next = buf;
+       buf->previous = (*par);
+       
+       if ((*par)->Next() == lastbuffer)
+           lastbuffer = *par;
+       
+       (*par)->PasteParagraph(current_view->buffer()->params);
+#endif
        // store the new cursor position
-       tmppar = lastbuffer;
-       tmppos = lastbuffer->Last();
+       *par = lastbuffer;
+       pos = lastbuffer->Last();
        
        // maybe some pasting
        if (lastbuffer->Next() && paste_the_end) {
+#ifndef NEW_INSETS
+           if (lastbuffer->Next()->HasSameLayout(lastbuffer)) {
+               lastbuffer->ParFromPos(lastbuffer->Last())->PasteParagraph(current_view->buffer()->params);
+           } else if (!lastbuffer->Next()->Last()) {
+               lastbuffer->Next()->MakeSameLayout(lastbuffer);
+               lastbuffer->ParFromPos(lastbuffer->Last())->PasteParagraph(current_view->buffer()->params);
+           } else if (!lastbuffer->Last()) {
+               lastbuffer->MakeSameLayout(lastbuffer->next);
+               lastbuffer->ParFromPos(lastbuffer->Last())->PasteParagraph(current_view->buffer()->params);
+#else
            if (lastbuffer->Next()->HasSameLayout(lastbuffer)) {
-               lastbuffer->ParFromPos(lastbuffer->Last())->PasteParagraph();
+               lastbuffer->PasteParagraph(current_view->buffer()->params);
            } else if (!lastbuffer->Next()->Last()) {
                lastbuffer->Next()->MakeSameLayout(lastbuffer);
-               lastbuffer->ParFromPos(lastbuffer->Last())->PasteParagraph();
+               lastbuffer->PasteParagraph(current_view->buffer()->params);
            } else if (!lastbuffer->Last()) {
                lastbuffer->MakeSameLayout(lastbuffer->next);
-               lastbuffer->ParFromPos(lastbuffer->Last())->PasteParagraph();
+               lastbuffer->PasteParagraph(current_view->buffer()->params);
+#endif
            } else
-               lastbuffer->Next()->ClearParagraph();
+               lastbuffer->Next()->StripLeadingSpaces(tc);
        }
        // restore the simple cut buffer
        buf = simple_cut_clone;
-       pos = tmppos;
     }
 
     return true;
 }
 
 
-int CutAndPaste::nrOfParagraphs() const
+int CutAndPaste::nrOfParagraphs()
 {
        if (!buf) return 0;
 
@@ -371,7 +426,9 @@ int CutAndPaste::SwitchLayoutsBetweenClasses(LyXTextClassList::size_type c1,
     int ret = 0;
     if (!par || c1 == c2)
        return ret;
+#ifndef NEW_INSETS
     par = par->FirstPhysicalPar();
+#endif
     while (par) {
        string name = textclasslist.NameOfLayout(c1, par->layout);
        int lay = 0;
@@ -387,14 +444,13 @@ int CutAndPaste::SwitchLayoutsBetweenClasses(LyXTextClassList::size_type c1,
        
        if (name != textclasslist.NameOfLayout(c2, par->layout)) {
            ++ret;
-           string s = "Layout had to be changed from\n"
-               + name + " to "
-               + textclasslist.NameOfLayout(c2, par->layout)
-               + "\nbecause of class conversion from\n"
-               + textclasslist.NameOfClass(c1) + " to "
-               + textclasslist.NameOfClass(c2);
+           string s = _("Layout had to be changed from\n")
+                   + name + _(" to ")
+                   + textclasslist.NameOfLayout(c2, par->layout)
+                   + _("\nbecause of class conversion from\n")
+                   + textclasslist.NameOfClass(c1) + _(" to ")
+                   + textclasslist.NameOfClass(c2);
            InsetError * new_inset = new InsetError(s);
-           par->InsertChar(0, LyXParagraph::META_INSET);
            par->InsertInset(0, new_inset);
        }
        
@@ -404,16 +460,15 @@ int CutAndPaste::SwitchLayoutsBetweenClasses(LyXTextClassList::size_type c1,
 }
 
 
-bool CutAndPaste::checkPastePossible(LyXParagraph * par, int) const
+bool CutAndPaste::checkPastePossible(LyXParagraph * par, int)
 {
     if (!buf) return false;
 
-    LyXParagraph * tmppar;
-
+#ifndef NEW_INSETS
     // be carefull with footnotes in footnotes
     if (par->footnoteflag != LyXParagraph::NO_FOOTNOTE) {
        // check whether the cut_buffer includes a footnote
-       tmppar = buf;
+       LyXParagraph * tmppar = buf;
        while (tmppar && tmppar->footnoteflag == LyXParagraph::NO_FOOTNOTE)
            tmppar = tmppar->next;
       
@@ -424,15 +479,6 @@ bool CutAndPaste::checkPastePossible(LyXParagraph * par, int) const
            return false;
        }
     }
-    /* table stuff -- begin */
-    if (par->table) {
-       if (buf->next) {
-           WriteAlert(_("Impossible operation"),
-                      _("Table cell cannot include more than one paragraph!"),
-                      _("Sorry."));
-           return false;
-       }
-    }
-    /* table stuff -- end */
+#endif
     return true;
 }