]> git.lyx.org Git - lyx.git/blobdiff - src/CutAndPaste.h
Applied Angus patch to compile on DEC C++ and to avoid name clashes
[lyx.git] / src / CutAndPaste.h
index edc4ae0a3680ee8f9d7c47647ee57e66f539196e..3835d553fe8969e53c153679350a2ac275f55ed9 100644 (file)
@@ -23,30 +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();
+       static
+       bool checkPastePossible(LyXParagraph *);
 };
 
 #endif