]> git.lyx.org Git - lyx.git/blob - src/CutAndPaste.h
Transfer current_font and real_current_font from Text to Cursor.
[lyx.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/docstring.h"
18 #include "TextClass_ptr.h"
19
20 #include <vector>
21
22 namespace lyx {
23
24 class Buffer;
25 class ErrorList;
26 class InsetText;
27 class TextClass;
28 class Cursor;
29 class ParagraphList;
30
31 namespace cap {
32
33 /// Get all elements of the cut buffer in plain text format.
34 std::vector<docstring> const availableSelections(Buffer const & buffer);
35 /// Get the number of available elements in the cut buffer.
36 size_type numberOfSelections();
37 /// Get the sel_index-th element of the cut buffer in plain text format.
38 docstring getSelection(Buffer const & buffer, size_t sel_index);
39
40 /**
41  * Replace using the font of the first selected character and select
42  * the new string. When \c backwards == false, set anchor before
43  * cursor; otherwise set cursor before anchor.
44  * Does handle undo.
45  */
46 void replaceSelectionWithString(Cursor & cur, docstring const & str,
47                                 bool backwards);
48 /// If a selection exists, delete it without pushing it to the cut buffer.
49 /// Does handle undo.
50 void replaceSelection(Cursor & cur);
51
52 /**
53  * Cut the current selection and possibly push it to the cut buffer and
54  * system clipboard.
55  * Does handle undo. Calls saveSelection.
56  * \param doclear If this is true: Delete leading spaces in paragraphs before
57  *                they get merged.
58  * \param realcut If this is true: Push the selection to the cut buffer and
59  *                system clipboard. Set this to false to only delete the
60  *                selection.
61  */
62 void cutSelection(Cursor & cur, bool doclear = true, bool realcut = true);
63 /// Push the current selection to the cut buffer and the system clipboard.
64 void copySelection(Cursor & cur);
65 /**
66  * Push the current selection to the cut buffer and the system clipboard.
67  * \param plaintext plain text version of the selection for the system
68  *        clipboard
69  */
70 void copySelection(Cursor & cur, docstring const & plaintext);
71 /// Push the selection buffer to the cut buffer.
72 void copySelectionToStack();
73 /// Store the current selection in the internal selection buffer
74 void saveSelection(Cursor & cur);
75 /// Is a selection available in our selection buffer?
76 bool selection();
77 /// Clear our selection buffer
78 void clearSelection();
79 /// Paste the current selection at \p cur
80 /// Does handle undo. Does only work in text, not mathed.
81 void pasteSelection(Cursor & cur, ErrorList &);
82 /// Replace the current selection with the clipboard contents (internal or
83 /// external: which is newer)
84 /// Does handle undo. Does only work in text, not mathed.
85 void pasteClipboard(Cursor & cur, ErrorList & errorList, bool asParagraphs = true);
86 /// Replace the current selection with cut buffer \c sel_index
87 /// Does handle undo. Does only work in text, not mathed.
88 void pasteFromStack(Cursor & cur, ErrorList & errorList, size_t sel_index);
89
90 /// Paste the paragraph list \p parlist at the position given by \p cur.
91 /// Does not handle undo. Does only work in text, not mathed.
92 void pasteParagraphList(Cursor & cur, ParagraphList const & parlist,
93                         TextClass_ptr textclass, ErrorList & errorList);
94
95
96 /** Needed to switch between different classes. This works
97  *  for a list of paragraphs beginning with the specified par.
98  *  It changes layouts and character styles.
99  */
100 void switchBetweenClasses(TextClass_ptr const & c1, 
101         TextClass_ptr const & c2, InsetText & in, ErrorList &);
102
103 /// Get the current selection as a string. Does not change the selection.
104 /// Does only work if the whole selection is in mathed.
105 docstring grabSelection(Cursor const & cur);
106 /// Erase the current selection.
107 /// Does not handle undo. Does only work if the whole selection is in mathed.
108 /// Calls saveSelection.
109 void eraseSelection(Cursor & cur);
110 /// Erase the selection and return it as a string.
111 /// Does not handle undo. Does only work if the whole selection is in mathed.
112 docstring grabAndEraseSelection(Cursor & cur);
113 // other selection methods
114 /// Erase the selection if one exists.
115 /// Does not handle undo. Does only work if the whole selection is in mathed.
116 void selDel(Cursor & cur);
117 /// Clear or delete the selection if one exists, depending on lyxrc setting.
118 /// Does not handle undo. Does only work if the whole selection is in mathed.
119 void selClearOrDel(Cursor & cur);
120
121 /** Tabular has its own paste stack for multiple cells
122  *  but it needs to know whether there is a more recent
123  *  ordinary paste. Therefore which one is newer.
124  */
125 //FIXME: this is a workaround for bug 1919. Replace this by
126 //an all-for-one-paste mechanism in 1.5
127 /// store whether tabular or ordinary paste stack is newer
128 void dirtyTabularStack(bool b);
129 /// is the tabular paste stack newer than the ordinary one?
130 bool tabularStackDirty();
131 } // namespace cap
132 } // namespce lyx
133
134 #endif