X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FCutAndPaste.h;h=332e414002b322570e2844bc3ad516229b7721da;hb=35204f8f33d7400a5fefeffea533fb4cb4097211;hp=74d0f091853c16e4f13a0f6daf4fc8a20fc411ab;hpb=2e1eeac0b968511ff2084e193eac98f33cb1ea87;p=lyx.git diff --git a/src/CutAndPaste.h b/src/CutAndPaste.h index 74d0f09185..332e414002 100644 --- a/src/CutAndPaste.h +++ b/src/CutAndPaste.h @@ -4,7 +4,7 @@ * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * - * \author Juergen Vigna + * \author Jürgen Vigna * \author Lars Gullik Bjønnes * \author Alfredo Braunstein * @@ -15,70 +15,87 @@ #define CUTANDPASTE_H #include "ParagraphList_fwd.h" -#include "support/types.h" -#include "support/std_string.h" +#include "support/docstring.h" + #include +namespace lyx { + class Buffer; -class BufferParams; class ErrorList; +class InsetText; class LyXTextClass; -class Paragraph; +class LCursor; -/// -namespace CutAndPaste { +namespace cap { /// -std::vector -CutAndPaste::availableSelections(Buffer const & buffer); +std::vector const availableSelections(Buffer const & buffer); +/// +size_type numberOfSelections(); +/// +docstring getSelection(Buffer const & buffer, size_t sel_index); /// -PitPosPair cutSelection(BufferParams const & params, - ParagraphList & pars, - ParagraphList::iterator startpit, - ParagraphList::iterator endpit, - int start, int end, lyx::textclass_type tc, - bool doclear = false); +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, std::string const & str, + bool backwards); +/// replace selection helper +void replaceSelection(LCursor & cur); + /// -PitPosPair eraseSelection(BufferParams const & params, - ParagraphList & pars, - ParagraphList::iterator startpit, - ParagraphList::iterator endpit, - int start, int end, bool doclear = false); +void cutSelection(LCursor & cur, bool doclear = true, bool realcut = true); /// -bool copySelection(ParagraphList::iterator startpit, - ParagraphList::iterator endpit, - int start, int end, lyx::textclass_type tc); +void copySelection(LCursor & cur); /// -std::pair -pasteSelection(Buffer const & buffer, - ParagraphList & pars, - ParagraphList::iterator pit, int pos, - lyx::textclass_type tc, ErrorList &); +void pasteSelection(LCursor & cur, ErrorList &, size_t sel_index = 0); -/// -std::pair -pasteSelection(Buffer const & buffer, - ParagraphList & pars, - ParagraphList::iterator pit, int pos, - lyx::textclass_type tc, - size_t cuts_indexm, ErrorList &); +/// 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 &); /// -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. -*/ -int SwitchLayoutsBetweenClasses(lyx::textclass_type c1, - lyx::textclass_type c2, - ParagraphList & par, - ErrorList &); +docstring grabSelection(LCursor const & cur); /// -bool checkPastePossible(); +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); -} // end of CutAndPaste +/** 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