]> git.lyx.org Git - lyx.git/blobdiff - src/CutAndPaste.h
More fixes to insettabular/text (and some missing features added).
[lyx.git] / src / CutAndPaste.h
index 3f7fece80708824279b642b1904b2704af91dea2..825b11d210b0a0ff047b64ee1225d33789264906 100644 (file)
@@ -23,32 +23,32 @@ class LyXParagraph;
 class CutAndPaste {
 public:
        ///
+       static
        bool cutSelection(LyXParagraph * startpar, LyXParagraph ** endpar,
-                         int start, int & end, char tc, bool doclear = false);
+                         int start, int & end,
+                         char tc, bool doclear = false);
        ///
+       static
        bool copySelection(LyXParagraph * startpar, LyXParagraph * endpar,
                           int start, int end, char tc);
        ///
+       static
        bool pasteSelection(LyXParagraph ** par, LyXParagraph ** endpar,
                            int & pos, char tc);
        ///
-       int nrOfParagraphs() const;
+       static
+       int nrOfParagraphs();
        /** needed to switch between different classes this works
            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);
        ///
-       LyXTextClassList::size_type getBufferTextClass() const;
-       ///
-       bool checkPastePossible(LyXParagraph *, int pos) const;
-private:
-       ///
-       void DeleteBuffer();
-       ///
-       LyXTextClassList::size_type textclass;
+       static
+       bool checkPastePossible(LyXParagraph *, int pos);
 };
 
 #endif