X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FCutAndPaste.h;h=6383e50fa4076e081f14009a3928d415f52ad821;hb=10ba1b8918e7da14334bb5573ce2a707671c8b51;hp=690514cb021ea7947829fe7c81548e9eccbe35f4;hpb=d5f3bad9bb4cc649d6cafc71ade744588ab87612;p=lyx.git diff --git a/src/CutAndPaste.h b/src/CutAndPaste.h index 690514cb02..6383e50fa4 100644 --- a/src/CutAndPaste.h +++ b/src/CutAndPaste.h @@ -1,69 +1,87 @@ // -*- C++ -*- -/* \file CutAndPaste.C +/** + * \file CutAndPaste.h * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * - * \author Jurgen Vigna + * \author Jürgen Vigna * \author Lars Gullik Bjønnes + * \author Alfredo Braunstein * - * Full author contact details are available in file CREDITS + * Full author contact details are available in file CREDITS. */ #ifndef CUTANDPASTE_H #define CUTANDPASTE_H #include "support/types.h" -#include "ParagraphList.h" -class Paragraph; -class BufferParams; -class LyXTextClass; +#include +#include + +class Buffer; class ErrorList; +class LyXTextClass; +class LCursor; +class ParagraphList; /// -namespace CutAndPaste { -/// -PitPosPair cutSelection(ParagraphList & pars, - ParagraphList::iterator startpit, - ParagraphList::iterator endpit, - int start, int end, lyx::textclass_type tc, - bool doclear = false); -/// -PitPosPair eraseSelection(ParagraphList & pars, - ParagraphList::iterator startpit, - ParagraphList::iterator endpit, - int start, int end, bool doclear = false); +namespace lyx { +namespace cap { + /// -bool copySelection(ParagraphList::iterator startpit, - ParagraphList::iterator endpit, - int start, int end, lyx::textclass_type tc); +std::vector const availableSelections(Buffer const & buffer); /// -std::pair -pasteSelection(ParagraphList & pars, - ParagraphList::iterator pit, int pos, - lyx::textclass_type tc, ErrorList &); +std::string getSelection(Buffer const & buffer, size_t sel_index); /// -std::pair -pasteSelection(ParagraphList & pars, - ParagraphList::iterator pit, int pos, - lyx::textclass_type tc, - size_t cuts_indexm, ErrorList &); +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); /// -int nrOfParagraphs(); +void cutSelection(LCursor & cur, bool doclear = true, bool realcut = true); +/// +void copySelection(LCursor & cur); +/// +void pasteSelection(LCursor & cur, size_t sel_index = 0); -/** 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. -*/ +/** 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 &); -/// -bool checkPastePossible(); -} // end of CutAndPaste +// only used by the spellchecker +void replaceWord(LCursor & cur, std::string const & replacestring); + +/// +std::string grabSelection(LCursor & 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); +} // namespace cap +} // namespce lyx #endif