]> git.lyx.org Git - lyx.git/blob - src/CutAndPaste.C
undo-5.diff: remove lastundopar
[lyx.git] / src / CutAndPaste.C
1 /* This file is part of
2  * ======================================================
3  *
4  *           LyX, The Document Processor
5  *
6  *           Copyright 1995-2001 The LyX Team.
7  *
8  * ====================================================== */
9
10 #include <config.h>
11
12 #include "CutAndPaste.h"
13 #include "BufferView.h"
14 #include "buffer.h"
15 #include "paragraph.h"
16 #include "ParagraphParameters.h"
17 #include "lyxtext.h"
18 #include "lyxcursor.h"
19 #include "gettext.h"
20 #include "iterators.h"
21 #include "lyxtextclasslist.h"
22 #include "undo_funcs.h"
23 #include "paragraph_funcs.h"
24 #include "debug.h"
25
26 #include "insets/inseterror.h"
27
28 #include "support/BoostFormat.h"
29 #include "support/LAssert.h"
30
31 using std::endl;
32 using std::pair;
33 using std::make_pair;
34 using std::for_each;
35
36 using lyx::pos_type;
37 using lyx::textclass_type;
38
39 extern BufferView * current_view;
40
41 // Jürgen, note that this means that you cannot currently have a list
42 // of selections cut/copied. So IMHO later we should have a
43 // list/vector/deque that we could store
44 // struct selection_item {
45 //       ParagraphList copy_pars;
46 //       LyXTextClassList::size_type textclass;
47 // };
48 // in and some method of choosing beween them (based on the first few chars
49 // in the selection probably.) This would be a nice feature and quite
50 // easy to implement. (Lgb)
51 //
52 // Sure but I just cleaned up this code for now with the same functionality
53 // as before. I also want to add a XClipboard function so that we can copy
54 // text from LyX to some other X-application in the form of ASCII or in the
55 // form of LaTeX (or Docbook depending on the document-class!). Think how nice
56 // it could be to select a math-inset do a "Copy to X-Clipboard as LaTeX" and
57 // then do a middle mouse button click in the application you want and have
58 // the whole formula there in LaTeX-Code. (Jug)
59
60 namespace {
61
62 // FIXME: stupid name
63 ParagraphList paragraphs;
64 textclass_type textclass = 0;
65
66 } // namespace anon
67
68 PitPosPair CutAndPaste::cutSelection(ParagraphList & pars,
69                                      ParagraphList::iterator startpit,
70                                      ParagraphList::iterator endpit,
71                                      int startpos, int endpos,
72                                      textclass_type tc, bool doclear)
73 {
74         copySelection(startpit, endpit, startpos, endpos, tc);
75         return eraseSelection(pars, startpit, endpit, startpos,
76                               endpos, doclear);
77 }
78
79
80 PitPosPair CutAndPaste::eraseSelection(ParagraphList & pars,
81                                        ParagraphList::iterator startpit,
82                                        ParagraphList::iterator endpit,
83                                        int startpos, int endpos, bool doclear)
84 {
85         if (startpit == pars.end() || (startpos > startpit->size()))
86                 return PitPosPair(endpit, endpos);
87
88         if (endpit == pars.end() || startpit == endpit) {
89                 endpos -= startpit->erase(startpos, endpos);
90                 return PitPosPair(endpit, endpos);
91         }
92
93         // clear end/begin fragments of the first/last par in selection
94         bool all_erased = true;
95
96         startpit->erase(startpos, startpit->size());
97         if (startpit->size() != startpos)
98                 all_erased = false;
99
100         endpos -= endpit->erase(0, endpos);
101         if (endpos != 0)
102                 all_erased = false;
103
104         // Loop through the deleted pars if any, erasing as needed
105
106         ParagraphList::iterator pit = boost::next(startpit);
107
108         while (pit != endpit && pit != pars.end()) {
109                 ParagraphList::iterator const next = boost::next(pit);
110                 // "erase" the contents of the par
111                 pit->erase(0, pit->size());
112                 if (!pit->size()) {
113                         // remove the par if it's now empty
114                         pars.erase(pit);
115                 } else
116                         all_erased = false;
117                 pit = next;
118         }
119
120 #if 0 // FIXME: why for cut but not copy ?
121         // the cut selection should begin with standard layout
122         if (realcut) {
123                 buf->params().clear();
124                 buf->bibkey = 0;
125                 buf->layout(textclasslist[buffer->params.textclass].defaultLayoutName());
126         }
127 #endif
128
129         if (boost::next(startpit) == pars.end())
130                 return PitPosPair(endpit, endpos);
131
132         if (doclear) {
133                 boost::next(startpit)->stripLeadingSpaces();
134         }
135
136         // paste the paragraphs again, if possible
137         if (all_erased &&
138             (startpit->hasSameLayout(*boost::next(startpit)) ||
139              boost::next(startpit)->empty())) {
140 #warning current_view used here.
141 // should we pass buffer or buffer->params around?
142                 Buffer * buffer = current_view->buffer();
143                 mergeParagraph(buffer->params, pars, &*startpit);
144                 // this because endpar gets deleted here!
145                 endpit = startpit;
146                 endpos = startpos;
147         }
148
149         return PitPosPair(endpit, endpos);
150
151 }
152
153
154 namespace {
155
156 struct resetOwnerAndChanges {
157         void operator()(Paragraph & p) {
158                 p.cleanChanges();
159                 p.setInsetOwner(0);
160         }
161 };
162
163 } // anon namespace
164
165 bool CutAndPaste::copySelection(ParagraphList::iterator startpit,
166                                 ParagraphList::iterator endpit,
167                                 int start, int end, textclass_type tc)
168 {
169         lyx::Assert(&*startpit);
170         lyx::Assert(&*endpit);
171         lyx::Assert(0 <= start && start <= startpit->size());
172         lyx::Assert(0 <= end && end <= endpit->size());
173         lyx::Assert(startpit != endpit || start <= end);
174
175         textclass = tc;
176
177         // Clone the paragraphs within the selection.
178         ParagraphList::iterator postend = boost::next(endpit);
179
180         paragraphs.assign(startpit, postend);
181         for_each(paragraphs.begin(), paragraphs.end(), resetOwnerAndChanges());
182
183         // Cut out the end of the last paragraph.
184         Paragraph & back = paragraphs.back();
185         back.erase(end, back.size());
186
187         // Cut out the begin of the first paragraph
188         Paragraph & front = paragraphs.front();
189         front.erase(0, start);
190
191         return true;
192 }
193
194
195 pair<PitPosPair, ParagraphList::iterator>
196 CutAndPaste::pasteSelection(ParagraphList & pars,
197                             ParagraphList::iterator pit, int pos,
198                             textclass_type tc)
199 {
200         if (!checkPastePossible())
201                 return make_pair(PitPosPair(pit, pos), pit);
202
203         lyx::Assert (pos <= pit->size());
204
205         // Make a copy of the CaP paragraphs.
206         ParagraphList simple_cut_clone = paragraphs;
207
208         // Now remove all out of the pars which is NOT allowed in the
209         // new environment and set also another font if that is required.
210
211         ParagraphList::iterator tmpbuf = simple_cut_clone.begin();
212         int depth_delta = pit->params().depth() - tmpbuf->params().depth();
213
214         // Make sure there is no class difference.
215 #warning current_view used here
216         SwitchLayoutsBetweenClasses(textclass, tc, &*tmpbuf,
217                                     current_view->buffer()->params);
218
219         Paragraph::depth_type max_depth = pit->getMaxDepthAfter();
220
221         for (; tmpbuf != simple_cut_clone.end(); ++tmpbuf) {
222                 // If we have a negative jump so that the depth would
223                 // go below 0 depth then we have to redo the delta to
224                 // this new max depth level so that subsequent
225                 // paragraphs are aligned correctly to this paragraph
226                 // at level 0.
227                 if ((int(tmpbuf->params().depth()) + depth_delta) < 0)
228                         depth_delta = 0;
229
230                 // Set the right depth so that we are not too deep or shallow.
231                 tmpbuf->params().depth(tmpbuf->params().depth() + depth_delta);
232                 if (tmpbuf->params().depth() > max_depth)
233                         tmpbuf->params().depth(max_depth);
234
235                 // Only set this from the 2nd on as the 2nd depends
236                 // for maxDepth still on pit.
237                 if (tmpbuf != simple_cut_clone.begin())
238                         max_depth = tmpbuf->getMaxDepthAfter();
239
240                 // Set the inset owner of this paragraph.
241                 tmpbuf->setInsetOwner(pit->inInset());
242                 for (pos_type i = 0; i < tmpbuf->size(); ++i) {
243                         if (tmpbuf->getChar(i) == Paragraph::META_INSET) {
244                                 if (!pit->insetAllowed(tmpbuf->getInset(i)->lyxCode())) {
245                                         tmpbuf->erase(i--);
246                                 }
247                         } else {
248                                 LyXFont f1 = tmpbuf->getFont(current_view->buffer()->params, i, outerFont(pit, pars));
249                                 LyXFont f2 = f1;
250                                 if (!pit->checkInsertChar(f1)) {
251                                         tmpbuf->erase(i--);
252                                 } else if (f1 != f2) {
253                                         tmpbuf->setFont(i, f1);
254                                 }
255                         }
256                 }
257         }
258
259         // Make the buf exactly the same layout than
260         // the cursor paragraph.
261         simple_cut_clone.begin()->makeSameLayout(*pit);
262
263         bool paste_the_end = false;
264
265         // Open the paragraph for inserting the buf
266         // if necessary.
267         if (pit->size() > pos || boost::next(pit) == pars.end()) {
268                 breakParagraphConservative(current_view->buffer()->params,
269                                            pars, pit, pos);
270                 paste_the_end = true;
271         }
272
273         // Set the end for redoing later.
274         ParagraphList::iterator endpit = boost::next(boost::next(pit));
275
276         // Paste it!
277
278         ParagraphList::iterator past_pit = boost::next(pit);
279         pars.splice(past_pit, simple_cut_clone);
280         ParagraphList::iterator last_paste = boost::prior(past_pit);
281
282         // If we only inserted one paragraph.
283         if (boost::next(pit) == last_paste)
284                 last_paste = pit;
285
286         mergeParagraph(current_view->buffer()->params, pars, pit);
287
288         // Store the new cursor position.
289         pit = last_paste;
290         pos = last_paste->size();
291
292         // Maybe some pasting.
293 #warning CHECK! Are we comparing last_paste to the wrong list here? (Lgb)
294         if (boost::next(last_paste) != pars.end() &&
295             paste_the_end) {
296                 if (boost::next(last_paste)->hasSameLayout(*last_paste)) {
297                         mergeParagraph(current_view->buffer()->params, pars,
298                                        last_paste);
299                 } else if (boost::next(last_paste)->empty()) {
300                         boost::next(last_paste)->makeSameLayout(*last_paste);
301                         mergeParagraph(current_view->buffer()->params, pars,
302                                        last_paste);
303                 } else if (last_paste->empty()) {
304                         last_paste->makeSameLayout(*boost::next(last_paste));
305                         mergeParagraph(current_view->buffer()->params, pars,
306                                        last_paste);
307                 } else
308                         boost::next(last_paste)->stripLeadingSpaces();
309         }
310
311         return make_pair(PitPosPair(pit, pos), endpit);
312 }
313
314
315 int CutAndPaste::nrOfParagraphs()
316 {
317         return paragraphs.size();
318 }
319
320
321 int CutAndPaste::SwitchLayoutsBetweenClasses(textclass_type c1,
322                                              textclass_type c2,
323                                              Paragraph * par,
324                                              BufferParams const & /*bparams*/)
325 {
326         lyx::Assert(par);
327
328         int ret = 0;
329         if (c1 == c2)
330                 return ret;
331
332         LyXTextClass const & tclass1 = textclasslist[c1];
333         LyXTextClass const & tclass2 = textclasslist[c2];
334         ParIterator end = ParIterator();
335         for (ParIterator it = ParIterator(par); it != end; ++it) {
336                 par = *it;
337                 string const name = par->layout()->name();
338                 bool hasLayout = tclass2.hasLayout(name);
339
340                 if (hasLayout)
341                         par->layout(tclass2[name]);
342                 else
343                         par->layout(tclass2.defaultLayout());
344
345                 if (!hasLayout && name != tclass1.defaultLayoutName()) {
346                         ++ret;
347 #if USE_BOOST_FORMAT
348                         boost::format fmt(_("Layout had to be changed from\n"
349                                             "%1$s to %2$s\n"
350                                             "because of class conversion from\n"
351                                             "%3$s to %4$s"));
352                         fmt     % name
353                                 % par->layout()->name()
354                                 % tclass1.name()
355                                 % tclass2.name();
356
357                         string const s = fmt.str();
358 #else
359                         string const s = _("Layout had to be changed from\n")
360                                 + name + _(" to ")
361                                 + par->layout()->name()
362                                 + _("\nbecause of class conversion from\n")
363                                 + tclass1.name() + _(" to ")
364                                 + tclass2.name();
365 #endif
366                         freezeUndo();
367                         InsetError * new_inset = new InsetError(s);
368                         LyXText * txt = current_view->getLyXText();
369                         LyXCursor cur = txt->cursor;
370                         txt->setCursorIntern(par, 0);
371                         txt->insertInset(new_inset);
372                         txt->fullRebreak();
373                         txt->setCursorIntern(cur.par(), cur.pos());
374                         unFreezeUndo();
375                 }
376         }
377         return ret;
378 }
379
380
381 bool CutAndPaste::checkPastePossible()
382 {
383         return !paragraphs.empty();
384 }