]> git.lyx.org Git - lyx.git/blob - src/CutAndPaste.C
78025d7f5dda9f63c08fc2510491ae81cc2fcb1c
[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 //       Paragraph * buf;
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 simple cut_buffer
206 #if 1
207         ParagraphList simple_cut_clone;
208         ParagraphList::iterator it = paragraphs.begin();
209         ParagraphList::iterator end = paragraphs.end();
210         for (; it != end; ++it) {
211                 simple_cut_clone.push_back(new Paragraph(*it, false));
212         }
213 #else
214         // Later we want it done like this:
215         ParagraphList simple_cut_clone = paragraphs;
216 #endif
217         // now remove all out of the buffer which is NOT allowed in the
218         // new environment and set also another font if that is required
219         ParagraphList::iterator tmpbuf = paragraphs.begin();
220         int depth_delta = pit->params().depth() - tmpbuf->params().depth();
221
222         // make sure there is no class difference
223 #warning current_view used here
224         SwitchLayoutsBetweenClasses(textclass, tc, &*tmpbuf,
225                                     current_view->buffer()->params);
226
227         Paragraph::depth_type max_depth = pit->getMaxDepthAfter();
228
229         for (; tmpbuf != paragraphs.end(); ++tmpbuf) {
230                 // If we have a negative jump so that the depth would
231                 // go below 0 depth then we have to redo the delta to
232                 // this new max depth level so that subsequent
233                 // paragraphs are aligned correctly to this paragraph
234                 // at level 0.
235                 if ((int(tmpbuf->params().depth()) + depth_delta) < 0)
236                         depth_delta = 0;
237                 // set the right depth so that we are not too deep or shallow.
238                 tmpbuf->params().depth(tmpbuf->params().depth() + depth_delta);
239                 if (tmpbuf->params().depth() > max_depth)
240                         tmpbuf->params().depth(max_depth);
241                 // only set this from the 2nd on as the 2nd depends for maxDepth
242                 // still on pit
243                 if (tmpbuf->previous() != pit)
244                         max_depth = tmpbuf->getMaxDepthAfter();
245                 // set the inset owner of this paragraph
246                 tmpbuf->setInsetOwner(pit->inInset());
247                 for (pos_type i = 0; i < tmpbuf->size(); ++i) {
248                         if (tmpbuf->getChar(i) == Paragraph::META_INSET) {
249                                 if (!pit->insetAllowed(tmpbuf->getInset(i)->lyxCode())) {
250                                         tmpbuf->erase(i--);
251                                 }
252                         } else {
253 #if 0
254                                 LyXFont f1 = tmpbuf->getFont(current_view->buffer()->params, i, outerFont(tmpbuf, pars));
255 #else
256                                 LyXFont f1 = tmpbuf->getFont(current_view->buffer()->params, i, outerFont(pit, pars));
257 #endif
258                                 LyXFont f2 = f1;
259                                 if (!pit->checkInsertChar(f1)) {
260                                         tmpbuf->erase(i--);
261                                 } else if (f1 != f2) {
262                                         tmpbuf->setFont(i, f1);
263                                 }
264                         }
265                 }
266         }
267
268         // make the buf exactly the same layout than
269         // the cursor paragraph
270         paragraphs.begin()->makeSameLayout(*pit);
271
272         // find the end of the buffer
273         // FIXME: change this to end() - 1
274         ParagraphList::iterator lastbuffer = paragraphs.begin();
275         while (boost::next(lastbuffer) != paragraphs.end())
276                 ++lastbuffer;
277
278         bool paste_the_end = false;
279
280         // open the paragraph for inserting the buf
281         // if necessary
282         if (pit->size() > pos || !pit->next()) {
283                 breakParagraphConservative(current_view->buffer()->params,
284                                            pars, pit, pos);
285                 paste_the_end = true;
286         }
287         // set the end for redoing later
288         ParagraphList::iterator endpit = boost::next(boost::next(pit));
289
290         // paste it!
291         lastbuffer->next(pit->next());
292         pit->next()->previous(&*lastbuffer);
293
294         pit->next(&*paragraphs.begin());
295         paragraphs.begin()->previous(&*pit);
296
297         if (boost::next(pit) == lastbuffer)
298                 lastbuffer = pit;
299
300         mergeParagraph(current_view->buffer()->params, pars, pit);
301         // store the new cursor position
302         pit = lastbuffer;
303         pos = lastbuffer->size();
304         // maybe some pasting
305         if (boost::next(lastbuffer) != paragraphs.end() && paste_the_end) {
306                 if (boost::next(lastbuffer)->hasSameLayout(*lastbuffer)) {
307                         mergeParagraph(current_view->buffer()->params, pars,
308                                        lastbuffer);
309                 } else if (!boost::next(lastbuffer)->size()) {
310                         boost::next(lastbuffer)->makeSameLayout(*lastbuffer);
311                         mergeParagraph(current_view->buffer()->params, pars,
312                                        lastbuffer);
313                 } else if (!lastbuffer->size()) {
314                         lastbuffer->makeSameLayout(*boost::next(lastbuffer));
315                         mergeParagraph(current_view->buffer()->params, pars,
316                                        lastbuffer);
317                 } else
318                         boost::next(lastbuffer)->stripLeadingSpaces();
319         }
320         // restore the simple cut buffer
321         paragraphs = simple_cut_clone;
322
323         return make_pair(PitPosPair(pit, pos), endpit);
324 }
325
326
327 int CutAndPaste::nrOfParagraphs()
328 {
329         return paragraphs.size();
330 }
331
332
333 int CutAndPaste::SwitchLayoutsBetweenClasses(textclass_type c1,
334                                              textclass_type c2,
335                                              Paragraph * par,
336                                              BufferParams const & /*bparams*/)
337 {
338         int ret = 0;
339         if (!par || c1 == c2)
340                 return ret;
341
342         LyXTextClass const & tclass1 = textclasslist[c1];
343         LyXTextClass const & tclass2 = textclasslist[c2];
344         ParIterator end = ParIterator();
345         for (ParIterator it = ParIterator(par); it != end; ++it) {
346                 par = *it;
347                 string const name = par->layout()->name();
348                 bool hasLayout = tclass2.hasLayout(name);
349
350                 if (hasLayout)
351                         par->layout(tclass2[name]);
352                 else
353                         par->layout(tclass2.defaultLayout());
354
355                 if (!hasLayout && name != tclass1.defaultLayoutName()) {
356                         ++ret;
357 #if USE_BOOST_FORMAT
358                         boost::format fmt(_("Layout had to be changed from\n"
359                                             "%1$s to %2$s\n"
360                                             "because of class conversion from\n"
361                                             "%3$s to %4$s"));
362                         fmt     % name
363                                 % par->layout()->name()
364                                 % tclass1.name()
365                                 % tclass2.name();
366
367                         string const s = fmt.str();
368 #else
369                         string const s = _("Layout had to be changed from\n")
370                                 + name + _(" to ")
371                                 + par->layout()->name()
372                                 + _("\nbecause of class conversion from\n")
373                                 + tclass1.name() + _(" to ")
374                                 + tclass2.name();
375 #endif
376                         freezeUndo();
377                         InsetError * new_inset = new InsetError(s);
378                         LyXText * txt = current_view->getLyXText();
379                         LyXCursor cur = txt->cursor;
380                         txt->setCursorIntern(par, 0);
381                         txt->insertInset(new_inset);
382                         txt->fullRebreak();
383                         txt->setCursorIntern(cur.par(), cur.pos());
384                         unFreezeUndo();
385                 }
386         }
387         return ret;
388 }
389
390
391 bool CutAndPaste::checkPastePossible()
392 {
393         return !paragraphs.empty();
394 }