]> git.lyx.org Git - lyx.git/blobdiff - src/CutAndPaste.h
oops again! hopefully this works now. Time to go to bed
[lyx.git] / src / CutAndPaste.h
index bdb40f61bf14c235f5413edf19d37fcf7a6dc1d0..49fa5e2e6f2051dc46be061cadc3b3c35a1b7ac3 100644 (file)
@@ -1,9 +1,9 @@
 // -*- C++ -*-
 /* This file is part of
- * ====================================================== 
- * 
+ * ======================================================
+ *
  *           LyX, The Document Processor
- *      
+ *
  *           Copyright 1995-2001 the LyX Team.
  *
  * ====================================================== */
 #ifndef CUTANDPASTE_H
 #define CUTANDPASTE_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
+#include "support/types.h"
 
-#include "layout.h"
-
-class LyXParagraph;
+class Paragraph;
+class BufferParams;
+class LyXTextClass;
 
 ///
 class CutAndPaste {
 public:
-       ///
+       /// realcut == false is we actually want a delete
        static
-       bool cutSelection(LyXParagraph * startpar, LyXParagraph ** endpar,
-                      int start, int & end, char tc, bool doclear = false);
+       bool cutSelection(Paragraph * startpar, Paragraph ** endpar,
+                         int start, int & end, char tc, bool doclear = false,
+                         bool realcut = true);
        ///
        static
-       bool copySelection(LyXParagraph * startpar, LyXParagraph * endpar,
-                       int start, int end, char tc);
+       bool copySelection(Paragraph * startpar, Paragraph * endpar,
+                          int start, int end, char tc);
        ///
        static
-       bool pasteSelection(LyXParagraph ** par, LyXParagraph ** endpar,
-                        int & pos, char tc);
+       bool pasteSelection(Paragraph ** par, Paragraph ** endpar,
+                           int & pos, char tc);
        ///
        static
        int nrOfParagraphs();
        /** needed to switch between different classes this works
-           for a list of paragraphs beginning with the specified par 
+           for a list of paragraphs beginning with the specified par
            return value is the number of wrong conversions
        */
        static
-       int SwitchLayoutsBetweenClasses(LyXTextClassList::size_type class1,
-                                    LyXTextClassList::size_type class2,
-                                    LyXParagraph * par);
+       int SwitchLayoutsBetweenClasses(lyx::textclass_type c1,
+                                       lyx::textclass_type c2,
+                                       Paragraph * par,
+                                       BufferParams const & bparams);
        ///
        static
-       bool checkPastePossible(LyXParagraph *);
+       bool checkPastePossible(Paragraph *);
 };
 
 #endif