]> git.lyx.org Git - lyx.git/blob - src/CutAndPaste.C
3a943f85eda8a2912fd990f02ce96396c8878501
[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 #ifdef __GNUG__
13 #pragma implementation
14 #endif
15
16 #include "CutAndPaste.h"
17 #include "BufferView.h"
18 #include "buffer.h"
19 #include "paragraph.h"
20 #include "lyx_gui_misc.h"
21 #include "lyxcursor.h"
22 #include "gettext.h"
23 #include "iterators.h"
24 #include "lyxtextclasslist.h"
25
26 #include "insets/inseterror.h"
27
28 using std::pair;
29 using lyx::pos_type;
30 using lyx::layout_type;
31 using lyx::textclass_type;
32
33 extern BufferView * current_view;
34
35 // Jürgen, note that this means that you cannot currently have a list
36 // of selections cut/copied. So IMHO later we should have a
37 // list/vector/deque that we could store
38 // struct selection_item {
39 //       Paragraph * buf;
40 //       LyXTextClassList::size_type textclass;
41 // };
42 // in and some method of choosing beween them (based on the first few chars
43 // in the selection probably.) This would be a nice feature and quite
44 // easy to implement. (Lgb)
45 //
46 // Sure but I just cleaned up this code for now with the same functionality
47 // as before. I also want to add a XClipboard function so that we can copy
48 // text from LyX to some other X-application in the form of ASCII or in the
49 // form of LaTeX (or Docbook depending on the document-class!). Think how nice
50 // it could be to select a math-inset do a "Copy to X-Clipboard as LaTeX" and
51 // then do a middle mouse button click in the application you want and have
52 // the whole formula there in LaTeX-Code. (Jug)
53
54 namespace {
55
56 Paragraph * buf = 0;
57 textclass_type textclass = 0;
58
59 // for now here this should be in another Cut&Paste Class!
60 // Jürgen, I moved this out of CutAndPaste since it does not operate on any
61 // member of the CutAndPaste class and in addition it was private.
62 // Perhaps it even should take a parameter? (Lgb)
63 void DeleteBuffer()
64 {
65         if (!buf)
66                 return;
67         
68         Paragraph * tmppar;
69         
70         while (buf) {
71                 tmppar =  buf;
72                 buf = buf->next();
73                 delete tmppar;
74         }
75         buf = 0;
76 }
77
78 } // namespace anon
79
80
81 bool CutAndPaste::cutSelection(Paragraph * startpar, Paragraph ** endpar,
82                                int start, int & end, char tc, bool doclear,
83                                                            bool realcut)
84 {
85         if (!startpar || (start > startpar->size()))
86                 return false;
87         
88         if (realcut)
89                 DeleteBuffer();
90         
91         textclass = tc;
92         
93         if (!(*endpar) || startpar == (*endpar)) {
94                 // only within one paragraph
95                 if (realcut)
96                         buf = new Paragraph;
97                 pos_type i = start;
98                 if (end > startpar->size())
99                         end = startpar->size();
100                 for (; i < end; ++i) {
101                         if (realcut)
102                                 startpar->copyIntoMinibuffer(*current_view->buffer(),
103                                                              start);
104                         startpar->erase(start);
105                         if (realcut)
106                                 buf->insertFromMinibuffer(buf->size());
107                 }
108                 end = start - 1;
109         } else {
110                 // more than one paragraph
111                 (*endpar)->breakParagraphConservative(current_view->buffer()->params,
112                                                       end);
113                 *endpar = (*endpar)->next();
114                 end = 0;
115                 
116                 startpar->breakParagraphConservative(current_view->buffer()->params,
117                                                      start);
118                 
119                 // store the selection
120                 if (realcut) {
121                         buf = startpar->next();
122                         buf->previous(0);
123                 } else {
124                         startpar->next()->previous(0);
125                 }
126                 (*endpar)->previous()->next(0);
127                 
128                 // cut the selection
129                 startpar->next(*endpar);
130                 
131                 (*endpar)->previous(startpar);
132                 
133                 // the cut selection should begin with standard layout
134                 if (realcut)
135                         buf->clear(); 
136                 
137                 // paste the paragraphs again, if possible
138                 if (doclear)
139                         startpar->next()->stripLeadingSpaces(textclass);
140                 if (startpar->hasSameLayout(startpar->next()) ||
141                     !startpar->next()->size()) {
142                         startpar->pasteParagraph(current_view->buffer()->params);
143                         (*endpar) = startpar; // this because endpar gets deleted here!
144                 }
145                 // this paragraph's are of noone's owner!
146                 Paragraph * p = buf;
147                 while (p) {
148                         p->setInsetOwner(0);
149                         p = p->next();
150                 }
151         }
152         return true;
153 }
154
155
156 bool CutAndPaste::copySelection(Paragraph * startpar, Paragraph * endpar,
157                                 int start, int end, char tc)
158 {
159         if (!startpar || (start > startpar->size()))
160                 return false;
161         
162         DeleteBuffer();
163         
164         textclass = tc;
165         
166         if (!endpar || startpar == endpar) {
167                 // only within one paragraph
168                 buf = new Paragraph;
169                 pos_type i = start;
170                 if (end > startpar->size())
171                         end = startpar->size();
172                 for (; i < end; ++i) {
173                         startpar->copyIntoMinibuffer(*current_view->buffer(), i);
174                         buf->insertFromMinibuffer(buf->size());
175                 }
176         } else {
177                 // copy more than one paragraph
178                 // clone the paragraphs within the selection
179                 Paragraph * tmppar = startpar;
180                 buf = new Paragraph(*tmppar, false);
181                 Paragraph * tmppar2 = buf;
182                 
183                 while (tmppar != endpar
184                        && tmppar->next()) {
185                         tmppar = tmppar->next();
186                         tmppar2->next(new Paragraph(*tmppar, false));
187                         tmppar2->next()->previous(tmppar2);
188                         tmppar2 = tmppar2->next();
189                 }
190                 tmppar2->next(0);
191                 
192                 // the buf paragraph is too big
193                 pos_type tmpi2 = start;
194                 for (; tmpi2; --tmpi2)
195                         buf->erase(0);
196                 
197                 // now tmppar 2 is too big, delete all after end
198                 tmpi2 = end;
199                 while (tmppar2->size() > tmpi2) {
200                         tmppar2->erase(tmppar2->size() - 1);
201                 }
202                 // this paragraph's are of noone's owner!
203                 tmppar = buf;
204                 while (tmppar) {
205                         tmppar->setInsetOwner(0);
206                         tmppar = tmppar->next();
207                 }
208         }
209         return true;
210 }
211
212
213 bool CutAndPaste::pasteSelection(Paragraph ** par, Paragraph ** endpar,
214                                  int & pos, char tc)
215 {
216         if (!checkPastePossible(*par))
217                 return false;
218         
219         if (pos > (*par)->size())
220                 pos = (*par)->size();
221         
222 #if 0
223         // Paragraph * tmpbuf;
224         Paragraph * tmppar = *par;
225         int tmppos = pos;
226
227         // There are two cases: cutbuffer only one paragraph or many
228         if (!buf->next()) {
229                 // only within a paragraph
230                 Paragraph * tmpbuf = new Paragraph(*buf, false);
231                 
232                 // Some provisions should be done here for checking
233                 // if we are inserting at the beginning of a
234                 // paragraph. If there are a space at the beginning
235                 // of the text to insert and we are inserting at
236                 // the beginning of the paragraph the space should
237                 // be removed.
238                 while (buf->size()) {
239                         // This is an attempt to fix the
240                         // "never insert a space at the
241                         // beginning of a paragraph" problem.
242                         if (!tmppos && buf->isLineSeparator(0)) {
243                                 buf->erase(0);
244                         } else {
245                                 buf->cutIntoMinibuffer(current_view->buffer()->params, 0);
246                                 buf->erase(0);
247                                 if (tmppar->insertFromMinibuffer(tmppos))
248                                         ++tmppos;
249                         }
250                 }
251                 delete buf;
252                 buf = tmpbuf;
253                 *endpar = tmppar->next();
254                 pos = tmppos;
255         } else
256 #endif
257         {
258                 // many paragraphs
259                 
260                 // make a copy of the simple cut_buffer
261                 Paragraph * tmpbuf = buf;
262                 Paragraph * simple_cut_clone = new Paragraph(*tmpbuf, false);
263                 Paragraph * tmpbuf2 = simple_cut_clone;
264                 
265                 while (tmpbuf->next()) {
266                         tmpbuf = tmpbuf->next();
267                         tmpbuf2->next(new Paragraph(*tmpbuf, false));
268                         tmpbuf2->next()->previous(tmpbuf2);
269                         tmpbuf2 = tmpbuf2->next();
270                 }
271
272                 // now remove all out of the buffer which is NOT allowed in the
273                 // new environment and set also another font if that is required
274                 tmpbuf = buf;
275                 while(tmpbuf) {
276                         // set the inset owner of this paragraph
277                         tmpbuf->setInsetOwner((*par)->inInset());
278                         for(pos_type i = 0; i < tmpbuf->size(); ++i) {
279                                 if (tmpbuf->getChar(i) == Paragraph::META_INSET) {
280                                         if (!(*par)->insetAllowed(tmpbuf->getInset(i)->lyxCode()))
281                                         {
282                                                 tmpbuf->erase(i--);
283                                         }
284                                 } else {
285                                         LyXFont f1 = tmpbuf->getFont(current_view->buffer()->params,i);
286                                         LyXFont f2 = f1;
287                                         if (!(*par)->checkInsertChar(f1)) {
288                                                 tmpbuf->erase(i--);
289                                         } else if (f1 != f2) {
290                                                 tmpbuf->setFont(i, f1);
291                                         }
292                                 }
293                         }
294                         tmpbuf = tmpbuf->next();
295                 }
296                 
297                 // make sure there is no class difference
298                 SwitchLayoutsBetweenClasses(textclass, tc, buf,
299                                             current_view->buffer()->params);
300                 
301                 // make the buf exactly the same layout than
302                 // the cursor paragraph
303                 buf->makeSameLayout(*par);
304                 
305                 // find the end of the buffer
306                 Paragraph * lastbuffer = buf;
307                 while (lastbuffer->next())
308                         lastbuffer = lastbuffer->next();
309                 
310                 bool paste_the_end = false;
311                 
312                 // open the paragraph for inserting the buf
313                 // if necessary
314                 if (((*par)->size() > pos) || !(*par)->next()) {
315                         (*par)->breakParagraphConservative(current_view->buffer()->params,
316                                                            pos);
317                         paste_the_end = true;
318                 }
319                 // set the end for redoing later
320                 *endpar = (*par)->next()->next();
321                 
322                 // paste it!
323                 lastbuffer->next((*par)->next());
324                 (*par)->next()->previous(lastbuffer);
325                 
326                 (*par)->next(buf);
327                 buf->previous(*par);
328                 
329                 if ((*par)->next() == lastbuffer)
330                         lastbuffer = *par;
331                 
332                 (*par)->pasteParagraph(current_view->buffer()->params);
333                 // store the new cursor position
334                 *par = lastbuffer;
335                 pos = lastbuffer->size();
336                 // maybe some pasting
337                 if (lastbuffer->next() && paste_the_end) {
338                         if (lastbuffer->next()->hasSameLayout(lastbuffer)) {
339                                 lastbuffer->pasteParagraph(current_view->buffer()->params);
340                         } else if (!lastbuffer->next()->size()) {
341                                 lastbuffer->next()->makeSameLayout(lastbuffer);
342                                 lastbuffer->pasteParagraph(current_view->buffer()->params);
343                         } else if (!lastbuffer->size()) {
344                                 lastbuffer->makeSameLayout(lastbuffer->next());
345                                 lastbuffer->pasteParagraph(current_view->buffer()->params);
346                         } else
347                                 lastbuffer->next()->stripLeadingSpaces(tc);
348                 }
349                 // restore the simple cut buffer
350                 buf = simple_cut_clone;
351         }
352         
353         return true;
354 }
355
356
357 int CutAndPaste::nrOfParagraphs()
358 {
359         if (!buf)
360                 return 0;
361         
362         int n = 1;
363         Paragraph * tmppar = buf;
364         while (tmppar->next()) {
365                 ++n;
366                 tmppar = tmppar->next();
367         }
368         return n;
369 }
370
371
372 int CutAndPaste::SwitchLayoutsBetweenClasses(textclass_type c1,
373                                              textclass_type c2,
374                                              Paragraph * par,
375                                              BufferParams const & bparams)
376 {
377         int ret = 0;
378         if (!par || c1 == c2)
379                 return ret;
380
381         ParIterator end = ParIterator();
382         for (ParIterator it = ParIterator(par); it != end; ++it) {
383                 par = *it;
384                 string const name = textclasslist.NameOfLayout(c1, par->layout);
385                 int lay = 0;
386                 pair<bool, layout_type> pp =
387                         textclasslist.NumberOfLayout(c2, name);
388                 if (pp.first) {
389                         lay = pp.second;
390                 } else {
391                         // not found: use default layout "Standard" (0)
392                         lay = 0;
393                 }
394                 par->layout = lay;
395                 
396                 if (name != textclasslist.NameOfLayout(c2, par->layout)) {
397                         ++ret;
398                         string const s = _("Layout had to be changed from\n")
399                                 + name + _(" to ")
400                                 + textclasslist.NameOfLayout(c2, par->layout)
401                                 + _("\nbecause of class conversion from\n")
402                                 + textclasslist.NameOfClass(c1) + _(" to ")
403                                 + textclasslist.NameOfClass(c2);
404                         InsetError * new_inset = new InsetError(s);
405                         par->insertInset(0, new_inset,
406                                          LyXFont(LyXFont::ALL_INHERIT,
407                                                  bparams.language));
408                 }
409         }
410         return ret;
411 }
412
413
414 bool CutAndPaste::checkPastePossible(Paragraph *)
415 {
416         if (!buf) return false;
417         
418         return true;
419 }