]> git.lyx.org Git - features.git/blobdiff - src/CutAndPaste.h
make doc++ able to generate the source documentation for lyx
[features.git] / src / CutAndPaste.h
index c0888e89f795f74e683931f9630d550f42f3b1c5..825b11d210b0a0ff047b64ee1225d33789264906 100644 (file)
@@ -23,26 +23,32 @@ class LyXParagraph;
 class CutAndPaste {
 public:
        ///
+       static
        bool cutSelection(LyXParagraph * startpar, LyXParagraph ** endpar,
                          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);
        ///
-       bool checkPastePossible(LyXParagraph *, int pos) const;
+       static
+       bool checkPastePossible(LyXParagraph *, int pos);
 };
 
 #endif