X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FCutAndPaste.h;h=332e414002b322570e2844bc3ad516229b7721da;hb=35204f8f33d7400a5fefeffea533fb4cb4097211;hp=cb384b868b5e27e96ea031e592c31e271b42e528;hpb=674038dc8c97bd00e9c41aa4b6270aef31f57657;p=lyx.git diff --git a/src/CutAndPaste.h b/src/CutAndPaste.h index cb384b868b..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); +/// +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, 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); @@ -81,6 +84,17 @@ void selDel(LCursor & cur); 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