]> git.lyx.org Git - lyx.git/blobdiff - src/CutAndPaste.h
Extracted from r14281
[lyx.git] / src / CutAndPaste.h
index 88a275fd37c619257c61ef9ac5e9f1c50a9ac36e..c92bb3a24ffeb3c156012929ffe7a46c3cfd050a 100644 (file)
 // -*- C++ -*-
-/* This file is part of
- * ======================================================
+/**
+ * \file CutAndPaste.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           LyX, The Document Processor
+ * \author Jürgen Vigna
+ * \author Lars Gullik Bjønnes
+ * \author Alfredo Braunstein
  *
- *           Copyright 1995-2001 the LyX Team.
- *
- * ====================================================== */
+ * 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/types.h"
 
-class Paragraph;
-class BufferParams;
+#include <string>
+#include <vector>
+
+class Buffer;
+class ErrorList;
+class InsetText;
 class LyXTextClass;
+class LCursor;
+
+///
+namespace lyx {
+namespace cap {
+
+///
+std::vector<std::string> const availableSelections(Buffer const & buffer);
+///
+lyx::size_type numberOfSelections();
+///
+std::string getSelection(Buffer const & buffer, size_t sel_index);
+
+///
+void cutSelection(LCursor & cur, bool doclear, bool realcut);
+
+/**
+ * Sets the selection from the current cursor position to length
+ * characters to the right. No safety checks.
+ */
+void setSelectionRange(LCursor & cur, lyx::pos_type length);
+/// simply replace using the font of the first selected character
+void replaceSelectionWithString(LCursor & cur, std::string const & str);
+/// 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, size_t sel_index = 0);
 
 ///
-class CutAndPaste {
-public:
-       ///
-       static
-       bool cutSelection(Paragraph * startpar, Paragraph ** endpar,
-                         int start, int & end, char tc, bool doclear = false,
-                         bool realcut = true);
-       ///
-       static
-       bool copySelection(Paragraph * startpar, Paragraph * endpar,
-                          int start, int end, char tc);
-       ///
-       static
-       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
-           return value is the number of wrong conversions
-       */
-       static
-       int SwitchLayoutsBetweenClasses(lyx::textclass_type c1,
-                                       lyx::textclass_type c2,
-                                       Paragraph * par,
-                                       BufferParams const & bparams);
-       ///
-       static
-       bool checkPastePossible(Paragraph *);
-};
+void pasteParagraphList(LCursor & cur, ParagraphList const & parlist,
+                       textclass_type textclass);
+
+
+/** 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(lyx::textclass_type c1,
+                          lyx::textclass_type c2,
+                          InsetText & in, ErrorList &);
+
+// only used by the spellchecker
+void replaceWord(LCursor & cur, std::string const & replacestring);
+
+///
+std::string grabSelection(LCursor const & cur);
+///
+void eraseSelection(LCursor & cur);
+///
+std::string 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);
+
+/** 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