]> git.lyx.org Git - features.git/blob - src/CutAndPaste.h
the stuff from the sneak preview:
[features.git] / src / CutAndPaste.h
1 // -*- C++ -*-
2 /**
3  * \file CutAndPaste.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Jürgen Vigna
8  * \author Lars Gullik Bjønnes
9  * \author Alfredo Braunstein
10  *
11  * Full author contact details are available in file CREDITS.
12  */
13
14 #ifndef CUTANDPASTE_H
15 #define CUTANDPASTE_H
16
17 #include "support/types.h"
18
19 #include <string>
20 #include <vector>
21
22 class Buffer;
23 class ErrorList;
24 class LyXTextClass;
25 class LCursor;
26 class ParagraphList;
27
28 ///
29 namespace lyx {
30 namespace cap {
31
32 ///
33 std::vector<std::string> const availableSelections(Buffer const & buffer);
34
35 ///
36 void cutSelection(LCursor & cur, bool doclear, bool realcut);
37
38 /**
39  * Sets the selection from the current cursor position to length
40  * characters to the right. No safety checks.
41  */
42 void setSelectionRange(LCursor & cur, lyx::pos_type length);
43 /// simply replace using the font of the first selected character
44 void replaceSelectionWithString(LCursor & cur, std::string const & str);
45 /// replace selection helper
46 void replaceSelection(LCursor & cur);
47
48 ///
49 void cutSelection(LCursor & cur, bool doclear = true, bool realcut = true);
50 ///
51 void copySelection(LCursor & cur);
52 ///
53 void pasteSelection(LCursor & cur, size_t sel_index = 0);
54
55 /** Needed to switch between different classes. This works
56     for a list of paragraphs beginning with the specified par
57     return value is the number of wrong conversions.
58 */
59 int SwitchLayoutsBetweenClasses(lyx::textclass_type c1,
60                                 lyx::textclass_type c2,
61                                 ParagraphList & par,
62                                 ErrorList &);
63 ///
64 bool checkPastePossible();
65
66 // only used by the spellchecker
67 void replaceWord(LCursor & cur, std::string const & replacestring);
68
69 } // namespace cap
70 } // namespce lyx
71
72 #endif