2000-04-10 14:29:05 +00:00
|
|
|
|
/* This file is part of
|
|
|
|
|
* ======================================================
|
|
|
|
|
*
|
|
|
|
|
* LyX, The Document Processor
|
|
|
|
|
*
|
2001-05-30 13:53:44 +00:00
|
|
|
|
* Copyright 1995-2001 The LyX Team.
|
2000-04-10 14:29:05 +00:00
|
|
|
|
*
|
|
|
|
|
* ====================================================== */
|
|
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
2001-12-28 13:26:54 +00:00
|
|
|
|
#ifdef __GNUG__
|
|
|
|
|
#pragma implementation
|
|
|
|
|
#endif
|
|
|
|
|
|
2000-04-10 14:29:05 +00:00
|
|
|
|
#include "CutAndPaste.h"
|
2000-06-08 23:16:16 +00:00
|
|
|
|
#include "BufferView.h"
|
|
|
|
|
#include "buffer.h"
|
2001-06-25 00:06:33 +00:00
|
|
|
|
#include "paragraph.h"
|
2000-06-08 23:16:16 +00:00
|
|
|
|
#include "lyxcursor.h"
|
2001-04-05 12:26:41 +00:00
|
|
|
|
#include "gettext.h"
|
2001-12-07 18:40:24 +00:00
|
|
|
|
#include "iterators.h"
|
2001-12-28 13:26:54 +00:00
|
|
|
|
#include "lyxtextclasslist.h"
|
2000-04-10 14:29:05 +00:00
|
|
|
|
|
2001-12-28 13:26:54 +00:00
|
|
|
|
#include "insets/inseterror.h"
|
2000-04-10 14:29:05 +00:00
|
|
|
|
|
2000-04-10 21:40:13 +00:00
|
|
|
|
using std::pair;
|
2001-11-27 10:34:16 +00:00
|
|
|
|
using lyx::pos_type;
|
2001-11-29 17:12:21 +00:00
|
|
|
|
using lyx::textclass_type;
|
2000-04-10 21:40:13 +00:00
|
|
|
|
|
2000-06-08 23:16:16 +00:00
|
|
|
|
extern BufferView * current_view;
|
|
|
|
|
|
2000-04-19 01:42:55 +00:00
|
|
|
|
// J<>rgen, note that this means that you cannot currently have a list
|
|
|
|
|
// of selections cut/copied. So IMHO later we should have a
|
|
|
|
|
// list/vector/deque that we could store
|
|
|
|
|
// struct selection_item {
|
2001-06-25 00:06:33 +00:00
|
|
|
|
// Paragraph * buf;
|
2000-04-19 01:42:55 +00:00
|
|
|
|
// LyXTextClassList::size_type textclass;
|
|
|
|
|
// };
|
|
|
|
|
// in and some method of choosing beween them (based on the first few chars
|
|
|
|
|
// in the selection probably.) This would be a nice feature and quite
|
|
|
|
|
// easy to implement. (Lgb)
|
2000-04-20 13:48:34 +00:00
|
|
|
|
//
|
|
|
|
|
// Sure but I just cleaned up this code for now with the same functionality
|
|
|
|
|
// as before. I also want to add a XClipboard function so that we can copy
|
|
|
|
|
// text from LyX to some other X-application in the form of ASCII or in the
|
|
|
|
|
// form of LaTeX (or Docbook depending on the document-class!). Think how nice
|
|
|
|
|
// it could be to select a math-inset do a "Copy to X-Clipboard as LaTeX" and
|
|
|
|
|
// then do a middle mouse button click in the application you want and have
|
|
|
|
|
// the whole formula there in LaTeX-Code. (Jug)
|
2000-04-19 01:42:55 +00:00
|
|
|
|
|
2001-03-20 01:22:46 +00:00
|
|
|
|
namespace {
|
|
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
|
Paragraph * buf = 0;
|
2001-11-29 17:12:21 +00:00
|
|
|
|
textclass_type textclass = 0;
|
2000-04-10 14:29:05 +00:00
|
|
|
|
|
|
|
|
|
// for now here this should be in another Cut&Paste Class!
|
2000-04-19 01:42:55 +00:00
|
|
|
|
// J<>rgen, I moved this out of CutAndPaste since it does not operate on any
|
|
|
|
|
// member of the CutAndPaste class and in addition it was private.
|
|
|
|
|
// Perhaps it even should take a parameter? (Lgb)
|
|
|
|
|
void DeleteBuffer()
|
2000-04-10 14:29:05 +00:00
|
|
|
|
{
|
2001-06-25 00:06:33 +00:00
|
|
|
|
if (!buf)
|
2001-04-03 08:34:52 +00:00
|
|
|
|
return;
|
2000-04-11 22:55:29 +00:00
|
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
|
Paragraph * tmppar;
|
2000-04-11 22:55:29 +00:00
|
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
|
while (buf) {
|
2001-04-03 08:34:52 +00:00
|
|
|
|
tmppar = buf;
|
|
|
|
|
buf = buf->next();
|
|
|
|
|
delete tmppar;
|
2001-06-25 00:06:33 +00:00
|
|
|
|
}
|
|
|
|
|
buf = 0;
|
2000-04-10 14:29:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-03-20 01:22:46 +00:00
|
|
|
|
} // namespace anon
|
2000-04-11 22:55:29 +00:00
|
|
|
|
|
2001-04-17 13:48:09 +00:00
|
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
|
bool CutAndPaste::cutSelection(Paragraph * startpar, Paragraph ** endpar,
|
2001-08-08 14:36:56 +00:00
|
|
|
|
int start, int & end, char tc, bool doclear,
|
|
|
|
|
bool realcut)
|
2001-04-17 13:48:09 +00:00
|
|
|
|
{
|
|
|
|
|
if (!startpar || (start > startpar->size()))
|
|
|
|
|
return false;
|
|
|
|
|
|
2001-08-08 14:36:56 +00:00
|
|
|
|
if (realcut)
|
|
|
|
|
DeleteBuffer();
|
2001-04-17 13:48:09 +00:00
|
|
|
|
|
|
|
|
|
textclass = tc;
|
|
|
|
|
|
2001-08-08 14:36:56 +00:00
|
|
|
|
if (!(*endpar) || startpar == (*endpar)) {
|
2001-04-17 13:48:09 +00:00
|
|
|
|
// only within one paragraph
|
2001-08-08 14:36:56 +00:00
|
|
|
|
if (realcut)
|
|
|
|
|
buf = new Paragraph;
|
2001-11-27 10:34:16 +00:00
|
|
|
|
pos_type i = start;
|
2001-04-17 13:48:09 +00:00
|
|
|
|
if (end > startpar->size())
|
|
|
|
|
end = startpar->size();
|
|
|
|
|
for (; i < end; ++i) {
|
2001-08-08 14:36:56 +00:00
|
|
|
|
if (realcut)
|
|
|
|
|
startpar->copyIntoMinibuffer(*current_view->buffer(),
|
|
|
|
|
start);
|
2001-06-25 00:06:33 +00:00
|
|
|
|
startpar->erase(start);
|
2001-08-08 14:36:56 +00:00
|
|
|
|
if (realcut)
|
|
|
|
|
buf->insertFromMinibuffer(buf->size());
|
2001-04-17 13:48:09 +00:00
|
|
|
|
}
|
|
|
|
|
end = start - 1;
|
|
|
|
|
} else {
|
|
|
|
|
// more than one paragraph
|
2001-06-25 00:06:33 +00:00
|
|
|
|
(*endpar)->breakParagraphConservative(current_view->buffer()->params,
|
2001-08-08 14:36:56 +00:00
|
|
|
|
end);
|
2001-04-17 13:48:09 +00:00
|
|
|
|
*endpar = (*endpar)->next();
|
|
|
|
|
end = 0;
|
2001-06-25 00:06:33 +00:00
|
|
|
|
|
|
|
|
|
startpar->breakParagraphConservative(current_view->buffer()->params,
|
2001-08-08 14:36:56 +00:00
|
|
|
|
start);
|
2001-04-17 13:48:09 +00:00
|
|
|
|
|
|
|
|
|
// store the selection
|
2001-08-08 14:36:56 +00:00
|
|
|
|
if (realcut) {
|
|
|
|
|
buf = startpar->next();
|
|
|
|
|
buf->previous(0);
|
|
|
|
|
} else {
|
|
|
|
|
startpar->next()->previous(0);
|
|
|
|
|
}
|
2001-04-17 13:48:09 +00:00
|
|
|
|
(*endpar)->previous()->next(0);
|
|
|
|
|
|
|
|
|
|
// cut the selection
|
|
|
|
|
startpar->next(*endpar);
|
|
|
|
|
|
|
|
|
|
(*endpar)->previous(startpar);
|
|
|
|
|
|
|
|
|
|
// the cut selection should begin with standard layout
|
2001-08-08 14:36:56 +00:00
|
|
|
|
if (realcut)
|
|
|
|
|
buf->clear();
|
2001-04-17 13:48:09 +00:00
|
|
|
|
|
|
|
|
|
// paste the paragraphs again, if possible
|
|
|
|
|
if (doclear)
|
2001-06-25 00:06:33 +00:00
|
|
|
|
startpar->next()->stripLeadingSpaces(textclass);
|
|
|
|
|
if (startpar->hasSameLayout(startpar->next()) ||
|
2001-04-17 13:48:09 +00:00
|
|
|
|
!startpar->next()->size()) {
|
2001-06-25 00:06:33 +00:00
|
|
|
|
startpar->pasteParagraph(current_view->buffer()->params);
|
2001-04-03 08:34:52 +00:00
|
|
|
|
(*endpar) = startpar; // this because endpar gets deleted here!
|
|
|
|
|
}
|
2001-11-29 16:29:30 +00:00
|
|
|
|
// this paragraph's are of noone's owner!
|
|
|
|
|
Paragraph * p = buf;
|
2001-12-05 08:04:20 +00:00
|
|
|
|
while (p) {
|
2001-11-29 16:29:30 +00:00
|
|
|
|
p->setInsetOwner(0);
|
|
|
|
|
p = p->next();
|
|
|
|
|
}
|
2000-05-22 11:08:25 +00:00
|
|
|
|
}
|
2001-04-03 08:34:52 +00:00
|
|
|
|
return true;
|
2000-04-10 14:29:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-04-11 22:55:29 +00:00
|
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
|
bool CutAndPaste::copySelection(Paragraph * startpar, Paragraph * endpar,
|
2001-04-17 13:48:09 +00:00
|
|
|
|
int start, int end, char tc)
|
|
|
|
|
{
|
|
|
|
|
if (!startpar || (start > startpar->size()))
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
DeleteBuffer();
|
|
|
|
|
|
|
|
|
|
textclass = tc;
|
|
|
|
|
|
2001-11-27 10:34:16 +00:00
|
|
|
|
if (!endpar || startpar == endpar) {
|
2001-04-17 13:48:09 +00:00
|
|
|
|
// only within one paragraph
|
2001-06-25 00:06:33 +00:00
|
|
|
|
buf = new Paragraph;
|
2001-11-27 10:34:16 +00:00
|
|
|
|
pos_type i = start;
|
2001-04-17 13:48:09 +00:00
|
|
|
|
if (end > startpar->size())
|
|
|
|
|
end = startpar->size();
|
|
|
|
|
for (; i < end; ++i) {
|
2001-06-25 00:06:33 +00:00
|
|
|
|
startpar->copyIntoMinibuffer(*current_view->buffer(), i);
|
|
|
|
|
buf->insertFromMinibuffer(buf->size());
|
2001-04-17 13:48:09 +00:00
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
// copy more than one paragraph
|
|
|
|
|
// clone the paragraphs within the selection
|
2001-06-25 00:06:33 +00:00
|
|
|
|
Paragraph * tmppar = startpar;
|
2001-09-09 22:02:19 +00:00
|
|
|
|
buf = new Paragraph(*tmppar, false);
|
2001-06-25 00:06:33 +00:00
|
|
|
|
Paragraph * tmppar2 = buf;
|
2001-04-17 13:48:09 +00:00
|
|
|
|
|
|
|
|
|
while (tmppar != endpar
|
|
|
|
|
&& tmppar->next()) {
|
|
|
|
|
tmppar = tmppar->next();
|
2001-09-09 22:02:19 +00:00
|
|
|
|
tmppar2->next(new Paragraph(*tmppar, false));
|
2001-04-17 13:48:09 +00:00
|
|
|
|
tmppar2->next()->previous(tmppar2);
|
|
|
|
|
tmppar2 = tmppar2->next();
|
|
|
|
|
}
|
|
|
|
|
tmppar2->next(0);
|
|
|
|
|
|
|
|
|
|
// the buf paragraph is too big
|
2001-11-27 10:34:16 +00:00
|
|
|
|
pos_type tmpi2 = start;
|
2001-04-17 13:48:09 +00:00
|
|
|
|
for (; tmpi2; --tmpi2)
|
2001-06-25 00:06:33 +00:00
|
|
|
|
buf->erase(0);
|
2001-04-17 13:48:09 +00:00
|
|
|
|
|
|
|
|
|
// now tmppar 2 is too big, delete all after end
|
2001-04-03 08:34:52 +00:00
|
|
|
|
tmpi2 = end;
|
|
|
|
|
while (tmppar2->size() > tmpi2) {
|
2001-06-25 00:06:33 +00:00
|
|
|
|
tmppar2->erase(tmppar2->size() - 1);
|
2001-04-03 08:34:52 +00:00
|
|
|
|
}
|
2001-11-29 16:29:30 +00:00
|
|
|
|
// this paragraph's are of noone's owner!
|
|
|
|
|
tmppar = buf;
|
2001-12-05 08:04:20 +00:00
|
|
|
|
while (tmppar) {
|
2001-11-29 16:29:30 +00:00
|
|
|
|
tmppar->setInsetOwner(0);
|
|
|
|
|
tmppar = tmppar->next();
|
|
|
|
|
}
|
2001-04-17 13:48:09 +00:00
|
|
|
|
}
|
|
|
|
|
return true;
|
2000-04-10 14:29:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-04-11 22:55:29 +00:00
|
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
|
bool CutAndPaste::pasteSelection(Paragraph ** par, Paragraph ** endpar,
|
2001-07-27 12:03:36 +00:00
|
|
|
|
int & pos, char tc)
|
2001-04-17 13:48:09 +00:00
|
|
|
|
{
|
|
|
|
|
if (!checkPastePossible(*par))
|
|
|
|
|
return false;
|
2000-04-10 14:29:05 +00:00
|
|
|
|
|
2001-04-17 13:48:09 +00:00
|
|
|
|
if (pos > (*par)->size())
|
|
|
|
|
pos = (*par)->size();
|
2000-04-10 14:29:05 +00:00
|
|
|
|
|
2002-02-20 14:55:17 +00:00
|
|
|
|
#if 0
|
2001-06-25 00:06:33 +00:00
|
|
|
|
// Paragraph * tmpbuf;
|
|
|
|
|
Paragraph * tmppar = *par;
|
2001-04-17 13:48:09 +00:00
|
|
|
|
int tmppos = pos;
|
2002-02-20 11:00:00 +00:00
|
|
|
|
|
2001-04-17 13:48:09 +00:00
|
|
|
|
// There are two cases: cutbuffer only one paragraph or many
|
|
|
|
|
if (!buf->next()) {
|
|
|
|
|
// only within a paragraph
|
2001-09-09 22:02:19 +00:00
|
|
|
|
Paragraph * tmpbuf = new Paragraph(*buf, false);
|
2001-06-25 00:06:33 +00:00
|
|
|
|
|
2001-04-17 13:48:09 +00:00
|
|
|
|
// Some provisions should be done here for checking
|
|
|
|
|
// if we are inserting at the beginning of a
|
|
|
|
|
// paragraph. If there are a space at the beginning
|
|
|
|
|
// of the text to insert and we are inserting at
|
|
|
|
|
// the beginning of the paragraph the space should
|
|
|
|
|
// be removed.
|
|
|
|
|
while (buf->size()) {
|
|
|
|
|
// This is an attempt to fix the
|
|
|
|
|
// "never insert a space at the
|
|
|
|
|
// beginning of a paragraph" problem.
|
2001-06-25 00:06:33 +00:00
|
|
|
|
if (!tmppos && buf->isLineSeparator(0)) {
|
|
|
|
|
buf->erase(0);
|
2001-04-17 13:48:09 +00:00
|
|
|
|
} else {
|
2001-06-25 00:06:33 +00:00
|
|
|
|
buf->cutIntoMinibuffer(current_view->buffer()->params, 0);
|
|
|
|
|
buf->erase(0);
|
|
|
|
|
if (tmppar->insertFromMinibuffer(tmppos))
|
2001-04-17 13:48:09 +00:00
|
|
|
|
++tmppos;
|
2001-04-03 08:34:52 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2001-04-17 13:48:09 +00:00
|
|
|
|
delete buf;
|
|
|
|
|
buf = tmpbuf;
|
|
|
|
|
*endpar = tmppar->next();
|
|
|
|
|
pos = tmppos;
|
2002-02-20 11:00:00 +00:00
|
|
|
|
} else
|
|
|
|
|
#endif
|
|
|
|
|
{
|
2001-04-17 13:48:09 +00:00
|
|
|
|
// many paragraphs
|
|
|
|
|
|
|
|
|
|
// make a copy of the simple cut_buffer
|
2001-06-25 00:06:33 +00:00
|
|
|
|
Paragraph * tmpbuf = buf;
|
2001-09-09 22:02:19 +00:00
|
|
|
|
Paragraph * simple_cut_clone = new Paragraph(*tmpbuf, false);
|
2001-06-25 00:06:33 +00:00
|
|
|
|
Paragraph * tmpbuf2 = simple_cut_clone;
|
|
|
|
|
|
2001-04-17 13:48:09 +00:00
|
|
|
|
while (tmpbuf->next()) {
|
|
|
|
|
tmpbuf = tmpbuf->next();
|
2001-09-09 22:02:19 +00:00
|
|
|
|
tmpbuf2->next(new Paragraph(*tmpbuf, false));
|
2001-04-17 13:48:09 +00:00
|
|
|
|
tmpbuf2->next()->previous(tmpbuf2);
|
|
|
|
|
tmpbuf2 = tmpbuf2->next();
|
|
|
|
|
}
|
2001-12-05 15:34:41 +00:00
|
|
|
|
|
|
|
|
|
// now remove all out of the buffer which is NOT allowed in the
|
|
|
|
|
// new environment and set also another font if that is required
|
|
|
|
|
tmpbuf = buf;
|
|
|
|
|
while(tmpbuf) {
|
2002-01-17 10:54:30 +00:00
|
|
|
|
// set the inset owner of this paragraph
|
|
|
|
|
tmpbuf->setInsetOwner((*par)->inInset());
|
2001-12-05 15:34:41 +00:00
|
|
|
|
for(pos_type i = 0; i < tmpbuf->size(); ++i) {
|
|
|
|
|
if (tmpbuf->getChar(i) == Paragraph::META_INSET) {
|
|
|
|
|
if (!(*par)->insetAllowed(tmpbuf->getInset(i)->lyxCode()))
|
|
|
|
|
{
|
|
|
|
|
tmpbuf->erase(i--);
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
LyXFont f1 = tmpbuf->getFont(current_view->buffer()->params,i);
|
|
|
|
|
LyXFont f2 = f1;
|
|
|
|
|
if (!(*par)->checkInsertChar(f1)) {
|
|
|
|
|
tmpbuf->erase(i--);
|
|
|
|
|
} else if (f1 != f2) {
|
|
|
|
|
tmpbuf->setFont(i, f1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
tmpbuf = tmpbuf->next();
|
|
|
|
|
}
|
2001-04-17 13:48:09 +00:00
|
|
|
|
|
|
|
|
|
// make sure there is no class difference
|
2001-12-15 14:34:17 +00:00
|
|
|
|
SwitchLayoutsBetweenClasses(textclass, tc, buf,
|
|
|
|
|
current_view->buffer()->params);
|
2001-04-17 13:48:09 +00:00
|
|
|
|
|
|
|
|
|
// make the buf exactly the same layout than
|
|
|
|
|
// the cursor paragraph
|
2001-06-25 00:06:33 +00:00
|
|
|
|
buf->makeSameLayout(*par);
|
2001-04-17 13:48:09 +00:00
|
|
|
|
|
|
|
|
|
// find the end of the buffer
|
2001-06-25 00:06:33 +00:00
|
|
|
|
Paragraph * lastbuffer = buf;
|
2001-04-17 13:48:09 +00:00
|
|
|
|
while (lastbuffer->next())
|
|
|
|
|
lastbuffer = lastbuffer->next();
|
|
|
|
|
|
|
|
|
|
bool paste_the_end = false;
|
|
|
|
|
|
2001-04-03 08:34:52 +00:00
|
|
|
|
// open the paragraph for inserting the buf
|
|
|
|
|
// if necessary
|
|
|
|
|
if (((*par)->size() > pos) || !(*par)->next()) {
|
2001-06-25 00:06:33 +00:00
|
|
|
|
(*par)->breakParagraphConservative(current_view->buffer()->params,
|
2001-04-17 13:48:09 +00:00
|
|
|
|
pos);
|
2001-04-03 08:34:52 +00:00
|
|
|
|
paste_the_end = true;
|
|
|
|
|
}
|
|
|
|
|
// set the end for redoing later
|
|
|
|
|
*endpar = (*par)->next()->next();
|
2001-04-17 13:48:09 +00:00
|
|
|
|
|
2001-04-03 08:34:52 +00:00
|
|
|
|
// paste it!
|
|
|
|
|
lastbuffer->next((*par)->next());
|
|
|
|
|
(*par)->next()->previous(lastbuffer);
|
2001-04-17 13:48:09 +00:00
|
|
|
|
|
2001-04-03 08:34:52 +00:00
|
|
|
|
(*par)->next(buf);
|
|
|
|
|
buf->previous(*par);
|
2001-04-17 13:48:09 +00:00
|
|
|
|
|
2001-04-03 08:34:52 +00:00
|
|
|
|
if ((*par)->next() == lastbuffer)
|
|
|
|
|
lastbuffer = *par;
|
2001-04-17 13:48:09 +00:00
|
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
|
(*par)->pasteParagraph(current_view->buffer()->params);
|
2001-04-03 08:34:52 +00:00
|
|
|
|
// store the new cursor position
|
|
|
|
|
*par = lastbuffer;
|
|
|
|
|
pos = lastbuffer->size();
|
|
|
|
|
// maybe some pasting
|
|
|
|
|
if (lastbuffer->next() && paste_the_end) {
|
2001-06-25 00:06:33 +00:00
|
|
|
|
if (lastbuffer->next()->hasSameLayout(lastbuffer)) {
|
|
|
|
|
lastbuffer->pasteParagraph(current_view->buffer()->params);
|
2001-04-03 08:34:52 +00:00
|
|
|
|
} else if (!lastbuffer->next()->size()) {
|
2001-06-25 00:06:33 +00:00
|
|
|
|
lastbuffer->next()->makeSameLayout(lastbuffer);
|
|
|
|
|
lastbuffer->pasteParagraph(current_view->buffer()->params);
|
2001-04-03 08:34:52 +00:00
|
|
|
|
} else if (!lastbuffer->size()) {
|
2001-06-25 00:06:33 +00:00
|
|
|
|
lastbuffer->makeSameLayout(lastbuffer->next());
|
|
|
|
|
lastbuffer->pasteParagraph(current_view->buffer()->params);
|
2001-04-03 08:34:52 +00:00
|
|
|
|
} else
|
2001-06-25 00:06:33 +00:00
|
|
|
|
lastbuffer->next()->stripLeadingSpaces(tc);
|
2001-04-03 08:34:52 +00:00
|
|
|
|
}
|
|
|
|
|
// restore the simple cut buffer
|
|
|
|
|
buf = simple_cut_clone;
|
2001-04-17 13:48:09 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
2000-04-10 14:29:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-04-11 22:55:29 +00:00
|
|
|
|
|
2000-08-07 20:58:24 +00:00
|
|
|
|
int CutAndPaste::nrOfParagraphs()
|
2000-04-10 14:29:05 +00:00
|
|
|
|
{
|
2001-04-03 08:34:52 +00:00
|
|
|
|
if (!buf)
|
|
|
|
|
return 0;
|
2001-06-25 00:06:33 +00:00
|
|
|
|
|
2000-04-11 22:55:29 +00:00
|
|
|
|
int n = 1;
|
2001-06-25 00:06:33 +00:00
|
|
|
|
Paragraph * tmppar = buf;
|
2001-12-05 08:04:20 +00:00
|
|
|
|
while (tmppar->next()) {
|
2000-04-11 22:55:29 +00:00
|
|
|
|
++n;
|
2001-03-09 00:56:42 +00:00
|
|
|
|
tmppar = tmppar->next();
|
2000-04-11 22:55:29 +00:00
|
|
|
|
}
|
|
|
|
|
return n;
|
2000-04-10 14:29:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-04-11 22:55:29 +00:00
|
|
|
|
|
2001-11-29 17:12:21 +00:00
|
|
|
|
int CutAndPaste::SwitchLayoutsBetweenClasses(textclass_type c1,
|
2001-12-15 14:34:17 +00:00
|
|
|
|
textclass_type c2,
|
|
|
|
|
Paragraph * par,
|
|
|
|
|
BufferParams const & bparams)
|
2000-04-10 14:29:05 +00:00
|
|
|
|
{
|
2001-06-25 00:06:33 +00:00
|
|
|
|
int ret = 0;
|
|
|
|
|
if (!par || c1 == c2)
|
2001-04-03 08:34:52 +00:00
|
|
|
|
return ret;
|
2001-12-07 18:40:24 +00:00
|
|
|
|
|
|
|
|
|
ParIterator end = ParIterator();
|
|
|
|
|
for (ParIterator it = ParIterator(par); it != end; ++it) {
|
|
|
|
|
par = *it;
|
2002-03-02 16:39:54 +00:00
|
|
|
|
string const name = par->layout();
|
|
|
|
|
LyXTextClass const & tclass = textclasslist[c2];
|
|
|
|
|
|
|
|
|
|
bool hasLayout = tclass.hasLayout(name);
|
|
|
|
|
|
|
|
|
|
string lay = tclass.defaultLayoutName();
|
|
|
|
|
if (hasLayout) {
|
|
|
|
|
lay = name;
|
2001-12-07 18:40:24 +00:00
|
|
|
|
} else {
|
2002-03-02 16:39:54 +00:00
|
|
|
|
// not found: use default layout
|
|
|
|
|
lay = tclass.defaultLayoutName();
|
2001-04-03 08:34:52 +00:00
|
|
|
|
}
|
2002-03-02 16:39:54 +00:00
|
|
|
|
par->layout(lay);
|
2001-04-03 08:34:52 +00:00
|
|
|
|
|
2002-03-02 16:39:54 +00:00
|
|
|
|
if (name != par->layout()) {
|
2001-04-03 08:34:52 +00:00
|
|
|
|
++ret;
|
2001-05-08 13:28:44 +00:00
|
|
|
|
string const s = _("Layout had to be changed from\n")
|
2001-04-03 08:34:52 +00:00
|
|
|
|
+ name + _(" to ")
|
2002-03-02 16:39:54 +00:00
|
|
|
|
+ par->layout()
|
2001-04-03 08:34:52 +00:00
|
|
|
|
+ _("\nbecause of class conversion from\n")
|
2002-03-02 16:39:54 +00:00
|
|
|
|
+ textclasslist[c1].name() + _(" to ")
|
|
|
|
|
+ textclasslist[c2].name();
|
2001-04-03 08:34:52 +00:00
|
|
|
|
InsetError * new_inset = new InsetError(s);
|
2001-12-15 14:34:17 +00:00
|
|
|
|
par->insertInset(0, new_inset,
|
|
|
|
|
LyXFont(LyXFont::ALL_INHERIT,
|
|
|
|
|
bparams.language));
|
2001-04-03 08:34:52 +00:00
|
|
|
|
}
|
2001-06-25 00:06:33 +00:00
|
|
|
|
}
|
|
|
|
|
return ret;
|
2000-04-10 14:29:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-04-11 22:55:29 +00:00
|
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
|
bool CutAndPaste::checkPastePossible(Paragraph *)
|
2000-04-10 14:29:05 +00:00
|
|
|
|
{
|
2001-06-25 00:06:33 +00:00
|
|
|
|
if (!buf) return false;
|
|
|
|
|
|
|
|
|
|
return true;
|
2000-04-10 14:29:05 +00:00
|
|
|
|
}
|