]> git.lyx.org Git - lyx.git/blobdiff - src/CutAndPaste.h
more cleanup:
[lyx.git] / src / CutAndPaste.h
index 3835d553fe8969e53c153679350a2ac275f55ed9..eb6aded2e23dc70804298cdef429184333ee7d7b 100644 (file)
 // -*- C++ -*-
-/* This file is part of
- * ====================================================== 
- * 
- *           LyX, The Document Processor
- *      
- *           Copyright 1995-2000 the LyX Team.
+/**
+ * \file CutAndPaste.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- * ====================================================== */
+ * \author Jürgen Vigna
+ * \author Lars Gullik Bjønnes
+ * \author Alfredo Braunstein
+ *
+ * Full author contact details are available in file CREDITS.
+ */
 
 #ifndef CUTANDPASTE_H
 #define CUTANDPASTE_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
+#include "ParagraphList_fwd.h"
+
+#include "support/docstring.h"
+
+#include <vector>
+
+namespace lyx {
+
+class Buffer;
+class ErrorList;
+class InsetText;
+class LyXTextClass;
+class LCursor;
+
+namespace cap {
+
+///
+std::vector<docstring> const availableSelections(Buffer const & buffer);
+///
+size_type numberOfSelections();
+///
+docstring getSelection(Buffer const & buffer, size_t sel_index);
+
+///
+void cutSelection(LCursor & cur, bool doclear, bool realcut);
+
+/* Replace using the font of the first selected character and select
+ * the new string. When \c backwards == false, set anchor before
+ * cursor; otherwise set cursor before anchor.
+ */
+void replaceSelectionWithString(LCursor & cur, docstring const & str,
+                               bool backwards);
+/// replace selection helper
+void replaceSelection(LCursor & cur);
+
+///
+void cutSelection(LCursor & cur, bool doclear = true, bool realcut = true);
+///
+void copySelection(LCursor & cur);
+///
+void pasteSelection(LCursor & cur, ErrorList &, size_t sel_index = 0);
+
+/// Paste the paragraph list \p parlist at the position given by \p cur.
+/// Does not handle undo. Does only work in text, not mathed.
+void pasteParagraphList(LCursor & cur, ParagraphList const & parlist,
+                       textclass_type textclass, ErrorList & errorList);
+
+
+/** Needed to switch between different classes. This works
+ *  for a list of paragraphs beginning with the specified par.
+ *  It changes layouts and character styles.
+ */
+void switchBetweenClasses(textclass_type c1, textclass_type c2,
+                          InsetText & in, ErrorList &);
+
+///
+docstring grabSelection(LCursor const & cur);
+///
+void eraseSelection(LCursor & cur);
+///
+docstring grabAndEraseSelection(LCursor & cur);
+// other selection methods
+///
+void selCut(LCursor & cur);
+///
+void selDel(LCursor & cur);
+/// clears or deletes selection depending on lyxrc setting
+void selClearOrDel(LCursor & cur);
+/// pastes n-th element of cut buffer
+void selPaste(LCursor & cur, size_t n);
 
-#include "layout.h"
-
-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);
-       ///
-       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);
-       ///
-       static
-       bool checkPastePossible(LyXParagraph *);
-};
+/** Tabular has its own paste stack for multiple cells
+ *  but it needs to know whether there is a more recent
+ *  ordinary paste. Therefore which one is newer.
+ */
+//FIXME: this is a workaround for bug 1919. Replace this by
+//an all-for-one-paste mechanism in 1.5
+/// store whether tabular or ordinary paste stack is newer
+void dirtyTabularStack(bool b);
+/// is the tabular paste stack newer than the ordinary one?
+bool tabularStackDirty();
+} // namespace cap
+} // namespce lyx
 
 #endif