X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FCutAndPaste.h;h=332e414002b322570e2844bc3ad516229b7721da;hb=35204f8f33d7400a5fefeffea533fb4cb4097211;hp=4acfbd8341fbe9cb461d4a7f5de9f02252696da1;hpb=4110aa3b1e2828e7df3ca964ccb7e79cc010ae03;p=lyx.git diff --git a/src/CutAndPaste.h b/src/CutAndPaste.h index 4acfbd8341..332e414002 100644 --- a/src/CutAndPaste.h +++ b/src/CutAndPaste.h @@ -14,36 +14,38 @@ #ifndef CUTANDPASTE_H #define CUTANDPASTE_H -#include "support/types.h" +#include "ParagraphList_fwd.h" + +#include "support/docstring.h" -#include #include +namespace lyx { + class Buffer; class ErrorList; +class InsetText; class LyXTextClass; class LCursor; -class ParagraphList; -/// -namespace lyx { namespace cap { /// -std::vector const availableSelections(Buffer const & buffer); +std::vector const availableSelections(Buffer const & buffer); /// -std::string getSelection(Buffer const & buffer, size_t sel_index); +size_type numberOfSelections(); +/// +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, std::string const & str, + bool backwards); /// replace selection helper void replaceSelection(LCursor & cur); @@ -52,26 +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); + +/// 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 & 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); @@ -83,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