]> git.lyx.org Git - lyx.git/blobdiff - src/CutAndPaste.h
more cleanup:
[lyx.git] / src / CutAndPaste.h
index ff9ec902b38373a4a068647dfd694d4baf6620b3..eb6aded2e23dc70804298cdef429184333ee7d7b 100644 (file)
 #ifndef CUTANDPASTE_H
 #define CUTANDPASTE_H
 
-#include "support/types.h"
+#include "ParagraphList_fwd.h"
+
+#include "support/docstring.h"
 
-#include <string>
 #include <vector>
 
+namespace lyx {
+
 class Buffer;
 class ErrorList;
+class InsetText;
 class LyXTextClass;
 class LCursor;
-class ParagraphList;
 
-///
-namespace lyx {
 namespace cap {
 
 ///
-std::vector<std::string> const availableSelections(Buffer const & buffer);
+std::vector<docstring> const availableSelections(Buffer const & buffer);
 ///
-lyx::size_type numberOfSelections();
+size_type numberOfSelections();
 ///
-std::string getSelection(Buffer const & buffer, size_t sel_index);
+docstring 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.
+/* 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 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);
+void replaceSelectionWithString(LCursor & cur, docstring const & str,
+                               bool backwards);
 /// replace selection helper
 void replaceSelection(LCursor & cur);
 
@@ -54,31 +54,27 @@ void cutSelection(LCursor & cur, bool doclear = true, bool realcut = true);
 ///
 void copySelection(LCursor & cur);
 ///
-void pasteSelection(LCursor & cur, size_t sel_index = 0);
+void pasteSelection(LCursor & cur, ErrorList &, size_t sel_index = 0);
 
-///
-void pasteParagraphList(LCursor & cur, ParagraphList const & parlist, 
-                        textclass_type textclass);
+/// 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(lyx::textclass_type c1,
-                               lyx::textclass_type c2,
-                               ParagraphList & par,
-                               ErrorList &);
-
-// only used by the spellchecker
-void replaceWord(LCursor & cur, std::string const & replacestring);
+void switchBetweenClasses(textclass_type c1, textclass_type c2,
+                          InsetText & in, ErrorList &);
 
 ///
-std::string grabSelection(LCursor const & cur);
+docstring grabSelection(LCursor const & cur);
 ///
 void eraseSelection(LCursor & cur);
 ///
-std::string grabAndEraseSelection(LCursor & cur);
+docstring grabAndEraseSelection(LCursor & cur);
 // other selection methods
 ///
 void selCut(LCursor & cur);
@@ -90,7 +86,7 @@ void selClearOrDel(LCursor & cur);
 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 
+ *  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