2000-04-10 14:29:05 +00:00
|
|
|
|
// -*- C++ -*-
|
2003-08-23 00:17:00 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file CutAndPaste.h
|
2003-05-06 09:34:56 +00:00
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
2002-03-21 17:27:08 +00:00
|
|
|
|
*
|
2003-09-07 01:45:40 +00:00
|
|
|
|
* \author J<EFBFBD>rgen Vigna
|
2003-05-06 09:34:56 +00:00
|
|
|
|
* \author Lars Gullik Bj<EFBFBD>nnes
|
2003-06-28 01:23:11 +00:00
|
|
|
|
* \author Alfredo Braunstein
|
2002-03-21 17:27:08 +00:00
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
|
* Full author contact details are available in file CREDITS.
|
2003-05-06 09:34:56 +00:00
|
|
|
|
*/
|
2000-04-10 14:29:05 +00:00
|
|
|
|
|
|
|
|
|
#ifndef CUTANDPASTE_H
|
|
|
|
|
#define CUTANDPASTE_H
|
|
|
|
|
|
2006-03-23 20:11:06 +00:00
|
|
|
|
#include "ParagraphList_fwd.h"
|
|
|
|
|
|
2006-10-11 19:40:50 +00:00
|
|
|
|
#include "support/docstring.h"
|
2000-04-10 14:29:05 +00:00
|
|
|
|
|
2003-06-17 15:33:49 +00:00
|
|
|
|
#include <vector>
|
|
|
|
|
|
2003-09-06 12:36:58 +00:00
|
|
|
|
class Buffer;
|
2003-05-20 16:51:31 +00:00
|
|
|
|
class ErrorList;
|
2006-05-21 17:33:03 +00:00
|
|
|
|
class InsetText;
|
2003-09-06 12:36:58 +00:00
|
|
|
|
class LyXTextClass;
|
2004-03-25 09:16:36 +00:00
|
|
|
|
class LCursor;
|
2000-04-10 14:29:05 +00:00
|
|
|
|
|
|
|
|
|
///
|
2004-03-25 09:16:36 +00:00
|
|
|
|
namespace lyx {
|
|
|
|
|
namespace cap {
|
2003-06-17 15:33:49 +00:00
|
|
|
|
|
|
|
|
|
///
|
2006-10-11 19:40:50 +00:00
|
|
|
|
std::vector<lyx::docstring> const availableSelections(Buffer const & buffer);
|
2004-04-18 07:32:34 +00:00
|
|
|
|
///
|
2005-11-25 09:27:08 +00:00
|
|
|
|
lyx::size_type numberOfSelections();
|
|
|
|
|
///
|
2006-10-11 19:40:50 +00:00
|
|
|
|
lyx::docstring getSelection(Buffer const & buffer, size_t sel_index);
|
2003-06-17 15:33:49 +00:00
|
|
|
|
|
2003-04-29 09:40:49 +00:00
|
|
|
|
///
|
2004-03-25 09:16:36 +00:00
|
|
|
|
void cutSelection(LCursor & cur, bool doclear, bool realcut);
|
2003-03-06 15:39:37 +00:00
|
|
|
|
|
2006-08-16 21:12:20 +00:00
|
|
|
|
/* 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.
|
2004-03-25 09:16:36 +00:00
|
|
|
|
*/
|
2006-08-16 21:12:20 +00:00
|
|
|
|
void replaceSelectionWithString(LCursor & cur, std::string const & str,
|
|
|
|
|
bool backwards);
|
2004-03-25 09:16:36 +00:00
|
|
|
|
/// replace selection helper
|
|
|
|
|
void replaceSelection(LCursor & cur);
|
2003-05-06 09:34:56 +00:00
|
|
|
|
|
2003-03-06 15:39:37 +00:00
|
|
|
|
///
|
2004-03-25 09:16:36 +00:00
|
|
|
|
void cutSelection(LCursor & cur, bool doclear = true, bool realcut = true);
|
|
|
|
|
///
|
|
|
|
|
void copySelection(LCursor & cur);
|
|
|
|
|
///
|
2006-08-13 16:16:43 +00:00
|
|
|
|
void pasteSelection(LCursor & cur, ErrorList &, size_t sel_index = 0);
|
2003-03-06 15:39:37 +00:00
|
|
|
|
|
2005-11-29 15:08:35 +00:00
|
|
|
|
///
|
2006-04-05 23:56:29 +00:00
|
|
|
|
void pasteParagraphList(LCursor & cur, ParagraphList const & parlist,
|
2006-08-13 16:16:43 +00:00
|
|
|
|
textclass_type textclass, ErrorList & errorList);
|
2005-11-29 15:08:35 +00:00
|
|
|
|
|
|
|
|
|
|
2004-03-25 09:16:36 +00:00
|
|
|
|
/** Needed to switch between different classes. This works
|
2005-05-04 11:21:14 +00:00
|
|
|
|
* for a list of paragraphs beginning with the specified par.
|
|
|
|
|
* It changes layouts and character styles.
|
2004-10-05 10:11:42 +00:00
|
|
|
|
*/
|
2006-04-09 00:26:19 +00:00
|
|
|
|
void switchBetweenClasses(lyx::textclass_type c1,
|
2006-05-21 17:33:03 +00:00
|
|
|
|
lyx::textclass_type c2,
|
|
|
|
|
InsetText & in, ErrorList &);
|
2003-03-06 15:39:37 +00:00
|
|
|
|
|
2004-04-18 07:32:34 +00:00
|
|
|
|
///
|
2005-10-12 18:44:53 +00:00
|
|
|
|
std::string grabSelection(LCursor const & cur);
|
2004-04-18 07:32:34 +00:00
|
|
|
|
///
|
|
|
|
|
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);
|
2005-09-06 17:39:39 +00:00
|
|
|
|
|
|
|
|
|
/** Tabular has its own paste stack for multiple cells
|
2006-04-05 23:56:29 +00:00
|
|
|
|
* but it needs to know whether there is a more recent
|
2005-09-06 17:39:39 +00:00
|
|
|
|
* 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();
|
2004-03-25 09:16:36 +00:00
|
|
|
|
} // namespace cap
|
|
|
|
|
} // namespce lyx
|
2000-04-10 14:29:05 +00:00
|
|
|
|
|
|
|
|
|
#endif
|