2002-09-12 14:58:06 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file paragraph_funcs.C
|
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
2002-08-21 17:35:24 +00:00
|
|
|
|
*
|
2002-09-12 14:58:06 +00:00
|
|
|
|
* \author Lars Gullik Bj<EFBFBD>nnes
|
2002-08-21 17:35:24 +00:00
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
|
* Full author contact details are available in file CREDITS.
|
2002-09-12 14:58:06 +00:00
|
|
|
|
*/
|
2002-08-20 19:41:13 +00:00
|
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
|
|
#include "paragraph_funcs.h"
|
2003-09-06 23:36:02 +00:00
|
|
|
|
|
2002-08-20 19:41:13 +00:00
|
|
|
|
#include "buffer.h"
|
2003-09-09 11:24:33 +00:00
|
|
|
|
#include "bufferparams.h"
|
|
|
|
|
|
2002-08-20 19:41:13 +00:00
|
|
|
|
#include "debug.h"
|
2003-09-06 23:36:02 +00:00
|
|
|
|
#include "encoding.h"
|
2003-09-06 18:38:02 +00:00
|
|
|
|
#include "errorlist.h"
|
2003-09-06 23:36:02 +00:00
|
|
|
|
#include "factory.h"
|
2003-03-12 11:52:23 +00:00
|
|
|
|
#include "gettext.h"
|
2003-09-04 03:54:04 +00:00
|
|
|
|
#include "iterators.h"
|
2003-03-03 21:15:49 +00:00
|
|
|
|
#include "language.h"
|
2003-03-12 11:52:23 +00:00
|
|
|
|
#include "lyxlex.h"
|
2003-09-06 23:36:02 +00:00
|
|
|
|
#include "lyxrc.h"
|
2003-11-05 12:06:20 +00:00
|
|
|
|
#include "outputparams.h"
|
2003-09-06 23:36:02 +00:00
|
|
|
|
#include "paragraph_pimpl.h"
|
2003-10-30 08:47:16 +00:00
|
|
|
|
#include "sgml.h"
|
2003-09-09 11:24:33 +00:00
|
|
|
|
#include "texrow.h"
|
2003-09-09 17:00:19 +00:00
|
|
|
|
#include "vspace.h"
|
2003-07-27 15:09:13 +00:00
|
|
|
|
|
2003-03-12 11:52:23 +00:00
|
|
|
|
#include "insets/insetbibitem.h"
|
2003-09-06 23:36:02 +00:00
|
|
|
|
#include "insets/insethfill.h"
|
|
|
|
|
#include "insets/insetlatexaccent.h"
|
2003-10-27 12:41:26 +00:00
|
|
|
|
#include "insets/insetline.h"
|
2003-09-06 23:36:02 +00:00
|
|
|
|
#include "insets/insetnewline.h"
|
2003-10-27 12:41:26 +00:00
|
|
|
|
#include "insets/insetpagebreak.h"
|
2003-09-06 23:36:02 +00:00
|
|
|
|
#include "insets/insetoptarg.h"
|
2003-05-22 10:40:57 +00:00
|
|
|
|
#include "insets/insetspace.h"
|
2003-03-12 11:52:23 +00:00
|
|
|
|
#include "insets/insetspecialchar.h"
|
|
|
|
|
#include "insets/insettabular.h"
|
2003-03-03 21:15:49 +00:00
|
|
|
|
|
2003-10-30 08:47:16 +00:00
|
|
|
|
#include "support/filetools.h"
|
2003-09-06 23:36:02 +00:00
|
|
|
|
#include "support/lstrings.h"
|
2003-10-30 08:47:16 +00:00
|
|
|
|
#include "support/lyxlib.h"
|
2003-09-06 23:36:02 +00:00
|
|
|
|
#include "support/std_sstream.h"
|
2002-08-20 19:41:13 +00:00
|
|
|
|
|
2003-10-30 08:47:16 +00:00
|
|
|
|
#include <vector>
|
|
|
|
|
|
2002-08-20 19:41:13 +00:00
|
|
|
|
using lyx::pos_type;
|
2003-09-09 22:13:45 +00:00
|
|
|
|
|
2003-10-31 18:45:43 +00:00
|
|
|
|
using lyx::support::ascii_lowercase;
|
2003-10-30 08:47:16 +00:00
|
|
|
|
using lyx::support::atoi;
|
2003-09-09 22:13:45 +00:00
|
|
|
|
using lyx::support::bformat;
|
2003-10-31 18:45:43 +00:00
|
|
|
|
using lyx::support::compare_ascii_no_case;
|
|
|
|
|
using lyx::support::compare_no_case;
|
|
|
|
|
using lyx::support::contains;
|
2003-10-30 08:47:16 +00:00
|
|
|
|
using lyx::support::split;
|
2003-09-09 22:13:45 +00:00
|
|
|
|
using lyx::support::subst;
|
|
|
|
|
|
2003-11-03 17:47:28 +00:00
|
|
|
|
using std::auto_ptr;
|
2002-08-20 19:41:13 +00:00
|
|
|
|
using std::endl;
|
2003-10-06 15:43:21 +00:00
|
|
|
|
using std::string;
|
2003-10-30 08:47:16 +00:00
|
|
|
|
using std::vector;
|
2003-09-05 18:02:24 +00:00
|
|
|
|
using std::istringstream;
|
2003-03-03 21:15:49 +00:00
|
|
|
|
using std::ostream;
|
2003-10-31 18:45:43 +00:00
|
|
|
|
using std::pair;
|
2002-08-20 19:41:13 +00:00
|
|
|
|
|
2003-05-19 17:03:12 +00:00
|
|
|
|
|
2003-07-31 13:12:21 +00:00
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
|
|
bool moveItem(Paragraph & from, Paragraph & to,
|
|
|
|
|
BufferParams const & params, pos_type i, pos_type j)
|
|
|
|
|
{
|
|
|
|
|
char const tmpchar = from.getChar(i);
|
|
|
|
|
LyXFont tmpfont = from.getFontSettings(params, i);
|
|
|
|
|
|
|
|
|
|
if (tmpchar == Paragraph::META_INSET) {
|
|
|
|
|
InsetOld * tmpinset = 0;
|
|
|
|
|
if (from.getInset(i)) {
|
|
|
|
|
// the inset is not in a paragraph anymore
|
|
|
|
|
tmpinset = from.insetlist.release(i);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!to.insetAllowed(tmpinset->lyxCode()))
|
|
|
|
|
return false;
|
|
|
|
|
to.insertInset(j, tmpinset, tmpfont);
|
|
|
|
|
} else {
|
|
|
|
|
if (!to.checkInsertChar(tmpfont))
|
|
|
|
|
return false;
|
|
|
|
|
to.insertChar(j, tmpchar, tmpfont);
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-03-06 10:02:40 +00:00
|
|
|
|
void breakParagraph(BufferParams const & bparams,
|
|
|
|
|
ParagraphList & paragraphs,
|
2003-03-04 19:52:35 +00:00
|
|
|
|
ParagraphList::iterator par,
|
2002-08-20 19:41:13 +00:00
|
|
|
|
pos_type pos,
|
|
|
|
|
int flag)
|
|
|
|
|
{
|
2003-03-04 19:52:35 +00:00
|
|
|
|
// create a new paragraph, and insert into the list
|
2003-03-06 10:02:40 +00:00
|
|
|
|
ParagraphList::iterator tmp = paragraphs.insert(boost::next(par),
|
2003-05-24 12:13:30 +00:00
|
|
|
|
Paragraph());
|
2003-03-04 21:40:36 +00:00
|
|
|
|
|
2002-08-21 15:39:54 +00:00
|
|
|
|
// without doing that we get a crash when typing <Return> at the
|
|
|
|
|
// end of a paragraph
|
|
|
|
|
tmp->layout(bparams.getLyXTextClass().defaultLayout());
|
2002-08-20 19:41:13 +00:00
|
|
|
|
// remember to set the inset_owner
|
|
|
|
|
tmp->setInsetOwner(par->inInset());
|
2002-08-21 17:35:24 +00:00
|
|
|
|
|
2003-02-08 19:18:01 +00:00
|
|
|
|
if (bparams.tracking_changes)
|
|
|
|
|
tmp->trackChanges();
|
2003-03-03 21:15:49 +00:00
|
|
|
|
|
2002-08-20 19:41:13 +00:00
|
|
|
|
// this is an idea for a more userfriendly layout handling, I will
|
|
|
|
|
// see what the users say
|
2002-08-21 17:35:24 +00:00
|
|
|
|
|
2002-08-20 19:41:13 +00:00
|
|
|
|
// layout stays the same with latex-environments
|
|
|
|
|
if (flag) {
|
|
|
|
|
tmp->layout(par->layout());
|
|
|
|
|
tmp->setLabelWidthString(par->params().labelWidthString());
|
|
|
|
|
}
|
|
|
|
|
|
2003-06-07 17:45:43 +00:00
|
|
|
|
bool const isempty = (par->allowEmpty() && par->empty());
|
2002-08-21 17:35:24 +00:00
|
|
|
|
|
2002-08-20 19:41:13 +00:00
|
|
|
|
if (!isempty && (par->size() > pos || par->empty() || flag == 2)) {
|
|
|
|
|
tmp->layout(par->layout());
|
|
|
|
|
tmp->params().align(par->params().align());
|
|
|
|
|
tmp->setLabelWidthString(par->params().labelWidthString());
|
2002-08-21 17:35:24 +00:00
|
|
|
|
|
2002-08-20 19:41:13 +00:00
|
|
|
|
tmp->params().spaceBottom(par->params().spaceBottom());
|
|
|
|
|
par->params().spaceBottom(VSpace(VSpace::NONE));
|
2002-08-21 17:35:24 +00:00
|
|
|
|
|
2002-08-20 19:41:13 +00:00
|
|
|
|
tmp->params().depth(par->params().depth());
|
|
|
|
|
tmp->params().noindent(par->params().noindent());
|
2002-08-21 17:35:24 +00:00
|
|
|
|
|
2002-08-20 19:41:13 +00:00
|
|
|
|
// copy everything behind the break-position
|
|
|
|
|
// to the new paragraph
|
2002-11-07 00:37:09 +00:00
|
|
|
|
|
|
|
|
|
#ifdef WITH_WARNINGS
|
|
|
|
|
#warning this seems wrong
|
|
|
|
|
#endif
|
|
|
|
|
/* FIXME: if !keepempty, empty() == true, then we reach
|
|
|
|
|
* here with size() == 0. So pos_end becomes - 1. Why
|
|
|
|
|
* doesn't this cause problems ???
|
|
|
|
|
*/
|
2002-08-20 19:41:13 +00:00
|
|
|
|
pos_type pos_end = par->size() - 1;
|
|
|
|
|
pos_type i = pos;
|
|
|
|
|
pos_type j = pos;
|
2003-02-08 19:18:01 +00:00
|
|
|
|
|
2002-08-20 19:41:13 +00:00
|
|
|
|
for (; i <= pos_end; ++i) {
|
2003-07-31 13:12:21 +00:00
|
|
|
|
Change::Type change = par->lookupChange(i);
|
|
|
|
|
if (moveItem(*par, *tmp, bparams, i, j - pos)) {
|
2003-03-04 19:52:35 +00:00
|
|
|
|
tmp->setChange(j - pos, change);
|
2002-08-20 19:41:13 +00:00
|
|
|
|
++j;
|
2003-02-08 19:18:01 +00:00
|
|
|
|
}
|
2002-08-20 19:41:13 +00:00
|
|
|
|
}
|
2003-07-31 13:12:21 +00:00
|
|
|
|
|
|
|
|
|
for (i = pos_end; i >= pos; --i)
|
2003-03-04 19:52:35 +00:00
|
|
|
|
par->eraseIntern(i);
|
2002-08-20 19:41:13 +00:00
|
|
|
|
}
|
2002-08-21 17:35:24 +00:00
|
|
|
|
|
2002-09-12 14:58:06 +00:00
|
|
|
|
if (pos)
|
|
|
|
|
return;
|
2002-12-01 22:59:25 +00:00
|
|
|
|
|
2002-09-12 14:58:06 +00:00
|
|
|
|
tmp->params().spaceTop(par->params().spaceTop());
|
|
|
|
|
par->params().clear();
|
2002-08-20 19:41:13 +00:00
|
|
|
|
|
2002-09-12 14:58:06 +00:00
|
|
|
|
par->layout(bparams.getLyXTextClass().defaultLayout());
|
2002-08-21 17:35:24 +00:00
|
|
|
|
|
2002-09-12 14:58:06 +00:00
|
|
|
|
// layout stays the same with latex-environments
|
|
|
|
|
if (flag) {
|
|
|
|
|
par->layout(tmp->layout());
|
|
|
|
|
par->setLabelWidthString(tmp->params().labelWidthString());
|
|
|
|
|
par->params().depth(tmp->params().depth());
|
2002-08-20 19:41:13 +00:00
|
|
|
|
}
|
2003-02-08 19:18:01 +00:00
|
|
|
|
|
|
|
|
|
// subtle, but needed to get empty pars working right
|
|
|
|
|
if (bparams.tracking_changes) {
|
|
|
|
|
if (!par->size()) {
|
|
|
|
|
par->cleanChanges();
|
|
|
|
|
} else if (!tmp->size()) {
|
|
|
|
|
tmp->cleanChanges();
|
|
|
|
|
}
|
|
|
|
|
}
|
2002-08-20 19:41:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-03-06 10:02:40 +00:00
|
|
|
|
void breakParagraphConservative(BufferParams const & bparams,
|
|
|
|
|
ParagraphList & paragraphs,
|
2003-03-04 19:52:35 +00:00
|
|
|
|
ParagraphList::iterator par,
|
2002-08-20 19:41:13 +00:00
|
|
|
|
pos_type pos)
|
|
|
|
|
{
|
|
|
|
|
// create a new paragraph
|
2003-03-06 10:02:40 +00:00
|
|
|
|
ParagraphList::iterator tmp = paragraphs.insert(boost::next(par),
|
2003-05-24 12:13:30 +00:00
|
|
|
|
Paragraph());
|
2003-04-29 10:56:15 +00:00
|
|
|
|
tmp->makeSameLayout(*par);
|
2002-08-20 19:41:13 +00:00
|
|
|
|
|
2003-04-29 14:05:54 +00:00
|
|
|
|
// When can pos > size()?
|
|
|
|
|
// I guess pos == size() is possible.
|
2002-08-20 19:41:13 +00:00
|
|
|
|
if (par->size() > pos) {
|
|
|
|
|
// copy everything behind the break-position to the new
|
|
|
|
|
// paragraph
|
|
|
|
|
pos_type pos_end = par->size() - 1;
|
|
|
|
|
|
2003-07-31 13:12:21 +00:00
|
|
|
|
for (pos_type i = pos, j = pos; i <= pos_end; ++i)
|
|
|
|
|
if (moveItem(*par, *tmp, bparams, i, j - pos))
|
2002-08-20 19:41:13 +00:00
|
|
|
|
++j;
|
2002-08-21 17:35:24 +00:00
|
|
|
|
|
2003-07-31 13:12:21 +00:00
|
|
|
|
for (pos_type k = pos_end; k >= pos; --k)
|
2002-08-20 19:41:13 +00:00
|
|
|
|
par->erase(k);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-03-06 10:02:40 +00:00
|
|
|
|
void mergeParagraph(BufferParams const & bparams,
|
|
|
|
|
ParagraphList & paragraphs,
|
|
|
|
|
ParagraphList::iterator par)
|
2002-08-20 19:41:13 +00:00
|
|
|
|
{
|
2003-03-04 18:50:31 +00:00
|
|
|
|
ParagraphList::iterator the_next = boost::next(par);
|
2002-08-20 19:41:13 +00:00
|
|
|
|
|
|
|
|
|
// first the DTP-stuff
|
|
|
|
|
par->params().spaceBottom(the_next->params().spaceBottom());
|
|
|
|
|
|
|
|
|
|
pos_type pos_end = the_next->size() - 1;
|
|
|
|
|
pos_type pos_insert = par->size();
|
|
|
|
|
|
|
|
|
|
// ok, now copy the paragraph
|
2003-07-31 13:12:21 +00:00
|
|
|
|
for (pos_type i = 0, j = 0; i <= pos_end; ++i)
|
|
|
|
|
if (moveItem(*the_next, *par, bparams, i, pos_insert + j))
|
2002-08-20 19:41:13 +00:00
|
|
|
|
++j;
|
|
|
|
|
|
2003-03-06 10:02:40 +00:00
|
|
|
|
paragraphs.erase(the_next);
|
2002-08-20 19:41:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-04-16 08:12:22 +00:00
|
|
|
|
ParagraphList::iterator depthHook(ParagraphList::iterator pit,
|
|
|
|
|
ParagraphList const & plist,
|
|
|
|
|
Paragraph::depth_type depth)
|
2002-08-20 19:41:13 +00:00
|
|
|
|
{
|
2003-04-16 08:12:22 +00:00
|
|
|
|
ParagraphList::iterator newpit = pit;
|
2003-05-27 22:41:04 +00:00
|
|
|
|
ParagraphList::iterator beg = const_cast<ParagraphList&>(plist).begin();
|
2002-08-20 19:41:13 +00:00
|
|
|
|
|
2003-04-16 08:12:22 +00:00
|
|
|
|
if (newpit != beg)
|
|
|
|
|
--newpit;
|
|
|
|
|
|
2003-08-15 08:03:54 +00:00
|
|
|
|
while (newpit != beg && newpit->getDepth() > depth) {
|
2003-04-16 08:12:22 +00:00
|
|
|
|
--newpit;
|
2002-08-20 19:41:13 +00:00
|
|
|
|
}
|
2003-04-14 18:35:29 +00:00
|
|
|
|
|
2003-04-16 08:12:22 +00:00
|
|
|
|
if (newpit->getDepth() > depth)
|
|
|
|
|
return pit;
|
|
|
|
|
|
|
|
|
|
return newpit;
|
2002-08-20 19:41:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-04-16 08:12:22 +00:00
|
|
|
|
ParagraphList::iterator outerHook(ParagraphList::iterator pit,
|
|
|
|
|
ParagraphList const & plist)
|
2002-08-20 19:41:13 +00:00
|
|
|
|
{
|
2003-04-16 08:12:22 +00:00
|
|
|
|
if (!pit->getDepth())
|
2003-05-27 22:41:04 +00:00
|
|
|
|
return const_cast<ParagraphList&>(plist).end();
|
2003-04-16 08:12:22 +00:00
|
|
|
|
return depthHook(pit, plist,
|
|
|
|
|
Paragraph::depth_type(pit->getDepth() - 1));
|
2002-08-20 19:41:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-04-16 08:12:22 +00:00
|
|
|
|
bool isFirstInSequence(ParagraphList::iterator pit,
|
|
|
|
|
ParagraphList const & plist)
|
2002-08-20 19:41:13 +00:00
|
|
|
|
{
|
2003-04-16 08:12:22 +00:00
|
|
|
|
ParagraphList::iterator dhook = depthHook(pit, plist, pit->getDepth());
|
|
|
|
|
return (dhook == pit
|
|
|
|
|
|| dhook->layout() != pit->layout()
|
|
|
|
|
|| dhook->getDepth() != pit->getDepth());
|
2002-08-20 19:41:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-05-19 07:12:09 +00:00
|
|
|
|
int getEndLabel(ParagraphList::iterator p, ParagraphList const & plist)
|
2002-08-20 19:41:13 +00:00
|
|
|
|
{
|
2003-04-16 08:12:22 +00:00
|
|
|
|
ParagraphList::iterator pit = p;
|
2003-04-14 18:35:29 +00:00
|
|
|
|
Paragraph::depth_type par_depth = p->getDepth();
|
2003-05-27 22:41:04 +00:00
|
|
|
|
while (pit != const_cast<ParagraphList&>(plist).end()) {
|
2003-04-16 08:12:22 +00:00
|
|
|
|
LyXLayout_ptr const & layout = pit->layout();
|
2003-04-14 18:35:29 +00:00
|
|
|
|
int const endlabeltype = layout->endlabeltype;
|
|
|
|
|
|
2002-08-20 19:41:13 +00:00
|
|
|
|
if (endlabeltype != END_LABEL_NO_LABEL) {
|
2003-05-27 22:41:04 +00:00
|
|
|
|
if (boost::next(p) == const_cast<ParagraphList&>(plist).end())
|
2002-08-20 19:41:13 +00:00
|
|
|
|
return endlabeltype;
|
|
|
|
|
|
2003-04-16 08:12:22 +00:00
|
|
|
|
Paragraph::depth_type const next_depth = boost::next(p)->getDepth();
|
2002-08-20 19:41:13 +00:00
|
|
|
|
if (par_depth > next_depth ||
|
2003-04-16 08:12:22 +00:00
|
|
|
|
(par_depth == next_depth &&
|
|
|
|
|
layout != boost::next(p)->layout()))
|
2002-08-20 19:41:13 +00:00
|
|
|
|
return endlabeltype;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
if (par_depth == 0)
|
|
|
|
|
break;
|
2003-04-16 08:12:22 +00:00
|
|
|
|
pit = outerHook(pit, plist);
|
2003-05-27 22:41:04 +00:00
|
|
|
|
if (pit != const_cast<ParagraphList&>(plist).end())
|
2003-04-16 08:12:22 +00:00
|
|
|
|
par_depth = pit->getDepth();
|
2002-08-20 19:41:13 +00:00
|
|
|
|
}
|
|
|
|
|
return END_LABEL_NO_LABEL;
|
|
|
|
|
}
|
2003-03-03 21:15:49 +00:00
|
|
|
|
|
|
|
|
|
|
2003-03-12 11:52:23 +00:00
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
|
|
int readParToken(Buffer & buf, Paragraph & par, LyXLex & lex, string const & token)
|
|
|
|
|
{
|
|
|
|
|
static LyXFont font;
|
|
|
|
|
static Change change;
|
|
|
|
|
|
2003-09-09 09:47:59 +00:00
|
|
|
|
BufferParams const & bp = buf.params();
|
2003-03-12 11:52:23 +00:00
|
|
|
|
|
|
|
|
|
if (token[0] != '\\') {
|
|
|
|
|
string::const_iterator cit = token.begin();
|
|
|
|
|
for (; cit != token.end(); ++cit) {
|
|
|
|
|
par.insertChar(par.size(), (*cit), font, change);
|
|
|
|
|
}
|
2003-07-28 15:17:11 +00:00
|
|
|
|
} else if (token == "\\begin_layout") {
|
2003-03-12 11:52:23 +00:00
|
|
|
|
lex.eatLine();
|
|
|
|
|
string layoutname = lex.getString();
|
|
|
|
|
|
|
|
|
|
font = LyXFont(LyXFont::ALL_INHERIT, bp.language);
|
|
|
|
|
change = Change();
|
|
|
|
|
|
|
|
|
|
LyXTextClass const & tclass = bp.getLyXTextClass();
|
|
|
|
|
|
|
|
|
|
if (layoutname.empty()) {
|
|
|
|
|
layoutname = tclass.defaultLayoutName();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool hasLayout = tclass.hasLayout(layoutname);
|
|
|
|
|
|
|
|
|
|
if (!hasLayout) {
|
|
|
|
|
lyxerr << "Layout '" << layoutname << "' does not"
|
|
|
|
|
<< " exist in textclass '" << tclass.name()
|
|
|
|
|
<< "'." << endl;
|
|
|
|
|
lyxerr << "Trying to use default layout instead."
|
|
|
|
|
<< endl;
|
|
|
|
|
layoutname = tclass.defaultLayoutName();
|
|
|
|
|
}
|
|
|
|
|
|
2003-07-27 15:09:13 +00:00
|
|
|
|
par.layout(bp.getLyXTextClass()[layoutname]);
|
2003-03-12 11:52:23 +00:00
|
|
|
|
|
2003-07-27 15:09:13 +00:00
|
|
|
|
// Test whether the layout is obsolete.
|
|
|
|
|
LyXLayout_ptr const & layout = par.layout();
|
|
|
|
|
if (!layout->obsoleted_by().empty())
|
|
|
|
|
par.layout(bp.getLyXTextClass()[layout->obsoleted_by()]);
|
2003-03-12 11:52:23 +00:00
|
|
|
|
|
2003-07-27 15:09:13 +00:00
|
|
|
|
par.params().read(lex);
|
2003-03-12 11:52:23 +00:00
|
|
|
|
|
2003-07-27 21:39:54 +00:00
|
|
|
|
} else if (token == "\\end_layout") {
|
|
|
|
|
lyxerr << "Solitary \\end_layout in line " << lex.getLineNo() << "\n"
|
2003-07-28 15:17:11 +00:00
|
|
|
|
<< "Missing \\begin_layout?.\n";
|
2003-03-12 11:52:23 +00:00
|
|
|
|
} else if (token == "\\end_inset") {
|
|
|
|
|
lyxerr << "Solitary \\end_inset in line " << lex.getLineNo() << "\n"
|
|
|
|
|
<< "Missing \\begin_inset?.\n";
|
|
|
|
|
} else if (token == "\\begin_inset") {
|
2003-07-27 15:09:13 +00:00
|
|
|
|
InsetOld * inset = readInset(lex, buf);
|
2003-10-14 12:49:15 +00:00
|
|
|
|
if (inset)
|
|
|
|
|
par.insertInset(par.size(), inset, font, change);
|
|
|
|
|
else {
|
|
|
|
|
lex.eatLine();
|
|
|
|
|
string line = lex.getString();
|
|
|
|
|
buf.error(ErrorItem(_("Unknown Inset"), line,
|
2003-11-06 10:52:15 +00:00
|
|
|
|
par.id(), 0, par.size()));
|
2003-10-14 12:49:15 +00:00
|
|
|
|
return 1;
|
|
|
|
|
}
|
2003-03-12 11:52:23 +00:00
|
|
|
|
} else if (token == "\\family") {
|
|
|
|
|
lex.next();
|
|
|
|
|
font.setLyXFamily(lex.getString());
|
|
|
|
|
} else if (token == "\\series") {
|
|
|
|
|
lex.next();
|
|
|
|
|
font.setLyXSeries(lex.getString());
|
|
|
|
|
} else if (token == "\\shape") {
|
|
|
|
|
lex.next();
|
|
|
|
|
font.setLyXShape(lex.getString());
|
|
|
|
|
} else if (token == "\\size") {
|
|
|
|
|
lex.next();
|
|
|
|
|
font.setLyXSize(lex.getString());
|
|
|
|
|
} else if (token == "\\lang") {
|
|
|
|
|
lex.next();
|
|
|
|
|
string const tok = lex.getString();
|
|
|
|
|
Language const * lang = languages.getLanguage(tok);
|
|
|
|
|
if (lang) {
|
|
|
|
|
font.setLanguage(lang);
|
|
|
|
|
} else {
|
|
|
|
|
font.setLanguage(bp.language);
|
|
|
|
|
lex.printError("Unknown language `$$Token'");
|
|
|
|
|
}
|
|
|
|
|
} else if (token == "\\numeric") {
|
|
|
|
|
lex.next();
|
|
|
|
|
font.setNumber(font.setLyXMisc(lex.getString()));
|
|
|
|
|
} else if (token == "\\emph") {
|
|
|
|
|
lex.next();
|
|
|
|
|
font.setEmph(font.setLyXMisc(lex.getString()));
|
|
|
|
|
} else if (token == "\\bar") {
|
|
|
|
|
lex.next();
|
|
|
|
|
string const tok = lex.getString();
|
|
|
|
|
|
|
|
|
|
if (tok == "under")
|
|
|
|
|
font.setUnderbar(LyXFont::ON);
|
|
|
|
|
else if (tok == "no")
|
|
|
|
|
font.setUnderbar(LyXFont::OFF);
|
|
|
|
|
else if (tok == "default")
|
|
|
|
|
font.setUnderbar(LyXFont::INHERIT);
|
|
|
|
|
else
|
|
|
|
|
lex.printError("Unknown bar font flag "
|
|
|
|
|
"`$$Token'");
|
|
|
|
|
} else if (token == "\\noun") {
|
|
|
|
|
lex.next();
|
|
|
|
|
font.setNoun(font.setLyXMisc(lex.getString()));
|
|
|
|
|
} else if (token == "\\color") {
|
|
|
|
|
lex.next();
|
|
|
|
|
font.setLyXColor(lex.getString());
|
2003-05-22 10:40:57 +00:00
|
|
|
|
} else if (token == "\\InsetSpace" || token == "\\SpecialChar") {
|
2003-03-12 11:52:23 +00:00
|
|
|
|
|
|
|
|
|
// Insets don't make sense in a free-spacing context! ---Kayvan
|
2003-06-07 17:45:43 +00:00
|
|
|
|
if (par.isFreeSpacing()) {
|
2003-05-22 10:40:57 +00:00
|
|
|
|
if (token == "\\InsetSpace")
|
|
|
|
|
par.insertChar(par.size(), ' ', font, change);
|
|
|
|
|
else if (lex.isOK()) {
|
2003-03-12 11:52:23 +00:00
|
|
|
|
lex.next();
|
|
|
|
|
string const next_token = lex.getString();
|
2003-05-22 10:40:57 +00:00
|
|
|
|
if (next_token == "\\-")
|
2003-03-12 11:52:23 +00:00
|
|
|
|
par.insertChar(par.size(), '-', font, change);
|
2003-05-22 10:40:57 +00:00
|
|
|
|
else {
|
2003-03-12 11:52:23 +00:00
|
|
|
|
lex.printError("Token `$$Token' "
|
|
|
|
|
"is in free space "
|
|
|
|
|
"paragraph layout!");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
2003-11-03 17:47:28 +00:00
|
|
|
|
auto_ptr<InsetOld> inset;
|
2003-05-22 10:40:57 +00:00
|
|
|
|
if (token == "\\SpecialChar" )
|
2003-11-03 17:47:28 +00:00
|
|
|
|
inset.reset(new InsetSpecialChar);
|
2003-05-22 10:40:57 +00:00
|
|
|
|
else
|
2003-11-03 17:47:28 +00:00
|
|
|
|
inset.reset(new InsetSpace);
|
2003-08-28 07:41:31 +00:00
|
|
|
|
inset->read(buf, lex);
|
2003-11-03 17:47:28 +00:00
|
|
|
|
par.insertInset(par.size(), inset.release(),
|
|
|
|
|
font, change);
|
2003-03-12 11:52:23 +00:00
|
|
|
|
}
|
|
|
|
|
} else if (token == "\\i") {
|
2003-11-03 17:47:28 +00:00
|
|
|
|
auto_ptr<InsetOld> inset(new InsetLatexAccent);
|
2003-08-28 07:41:31 +00:00
|
|
|
|
inset->read(buf, lex);
|
2003-11-03 17:47:28 +00:00
|
|
|
|
par.insertInset(par.size(), inset.release(), font, change);
|
2003-03-12 11:52:23 +00:00
|
|
|
|
} else if (token == "\\backslash") {
|
|
|
|
|
par.insertChar(par.size(), '\\', font, change);
|
|
|
|
|
} else if (token == "\\newline") {
|
2003-11-03 17:47:28 +00:00
|
|
|
|
auto_ptr<InsetOld> inset(new InsetNewline);
|
2003-08-28 07:41:31 +00:00
|
|
|
|
inset->read(buf, lex);
|
2003-11-03 17:47:28 +00:00
|
|
|
|
par.insertInset(par.size(), inset.release(), font, change);
|
2003-03-12 11:52:23 +00:00
|
|
|
|
} else if (token == "\\LyXTable") {
|
2003-11-03 17:47:28 +00:00
|
|
|
|
auto_ptr<InsetOld> inset(new InsetTabular(buf));
|
2003-08-28 07:41:31 +00:00
|
|
|
|
inset->read(buf, lex);
|
2003-11-03 17:47:28 +00:00
|
|
|
|
par.insertInset(par.size(), inset.release(), font, change);
|
2003-03-12 11:52:23 +00:00
|
|
|
|
} else if (token == "\\bibitem") {
|
|
|
|
|
InsetCommandParams p("bibitem", "dummy");
|
2003-11-03 17:47:28 +00:00
|
|
|
|
auto_ptr<InsetBibitem> inset(new InsetBibitem(p));
|
2003-08-28 07:41:31 +00:00
|
|
|
|
inset->read(buf, lex);
|
2003-11-03 17:47:28 +00:00
|
|
|
|
par.insertInset(par.size(), inset.release(), font, change);
|
2003-03-12 11:52:23 +00:00
|
|
|
|
} else if (token == "\\hfill") {
|
2003-07-30 23:29:49 +00:00
|
|
|
|
par.insertInset(par.size(), new InsetHFill, font, change);
|
2003-10-27 12:41:26 +00:00
|
|
|
|
} else if (token == "\\lyxline") {
|
|
|
|
|
par.insertInset(par.size(), new InsetLine, font, change);
|
|
|
|
|
} else if (token == "\\newpage") {
|
|
|
|
|
par.insertInset(par.size(), new InsetPagebreak, font, change);
|
2003-03-12 11:52:23 +00:00
|
|
|
|
} else if (token == "\\change_unchanged") {
|
|
|
|
|
// Hack ! Needed for empty paragraphs :/
|
|
|
|
|
// FIXME: is it still ??
|
|
|
|
|
if (!par.size())
|
|
|
|
|
par.cleanChanges();
|
|
|
|
|
change = Change(Change::UNCHANGED);
|
|
|
|
|
} else if (token == "\\change_inserted") {
|
|
|
|
|
lex.nextToken();
|
2003-09-15 11:00:00 +00:00
|
|
|
|
istringstream is(lex.getString());
|
2003-03-12 11:52:23 +00:00
|
|
|
|
int aid;
|
|
|
|
|
lyx::time_type ct;
|
2003-05-13 09:48:57 +00:00
|
|
|
|
is >> aid >> ct;
|
2003-03-12 23:25:59 +00:00
|
|
|
|
change = Change(Change::INSERTED, bp.author_map[aid], ct);
|
2003-03-12 11:52:23 +00:00
|
|
|
|
} else if (token == "\\change_deleted") {
|
|
|
|
|
lex.nextToken();
|
2003-09-15 11:00:00 +00:00
|
|
|
|
istringstream is(lex.getString());
|
2003-03-12 11:52:23 +00:00
|
|
|
|
int aid;
|
|
|
|
|
lyx::time_type ct;
|
2003-05-13 09:48:57 +00:00
|
|
|
|
is >> aid >> ct;
|
2003-03-12 23:25:59 +00:00
|
|
|
|
change = Change(Change::DELETED, bp.author_map[aid], ct);
|
2003-03-12 11:52:23 +00:00
|
|
|
|
} else {
|
|
|
|
|
lex.eatLine();
|
2003-05-13 09:48:57 +00:00
|
|
|
|
string const s = bformat(_("Unknown token: %1$s %2$s\n"),
|
|
|
|
|
token, lex.getString());
|
2003-06-20 23:03:43 +00:00
|
|
|
|
|
2003-07-25 17:11:25 +00:00
|
|
|
|
buf.error(ErrorItem(_("Unknown token"), s,
|
2003-11-06 10:52:15 +00:00
|
|
|
|
par.id(), 0, par.size()));
|
2003-03-12 11:52:23 +00:00
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int readParagraph(Buffer & buf, Paragraph & par, LyXLex & lex)
|
|
|
|
|
{
|
|
|
|
|
int unknown = 0;
|
|
|
|
|
|
|
|
|
|
lex.nextToken();
|
|
|
|
|
string token = lex.getString();
|
|
|
|
|
|
|
|
|
|
while (lex.isOK()) {
|
|
|
|
|
|
|
|
|
|
unknown += readParToken(buf, par, lex, token);
|
|
|
|
|
|
|
|
|
|
lex.nextToken();
|
|
|
|
|
token = lex.getString();
|
|
|
|
|
|
|
|
|
|
if (token.empty())
|
|
|
|
|
continue;
|
|
|
|
|
|
2003-07-27 21:39:54 +00:00
|
|
|
|
if (token == "\\end_layout") {
|
|
|
|
|
//Ok, paragraph finished
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2003-03-12 11:52:23 +00:00
|
|
|
|
lyxerr[Debug::PARSER] << "Handling paragraph token: `"
|
|
|
|
|
<< token << '\'' << endl;
|
2003-07-28 22:30:50 +00:00
|
|
|
|
if (token == "\\begin_layout" || token == "\\end_document"
|
2003-03-12 11:52:23 +00:00
|
|
|
|
|| token == "\\end_inset" || token == "\\begin_deeper"
|
|
|
|
|
|| token == "\\end_deeper") {
|
|
|
|
|
lex.pushToken(token);
|
2003-07-27 21:39:54 +00:00
|
|
|
|
lyxerr << "Paragraph ended in line "
|
|
|
|
|
<< lex.getLineNo() << "\n"
|
|
|
|
|
<< "Missing \\end_layout.\n";
|
2003-03-12 11:52:23 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return unknown;
|
|
|
|
|
}
|
2003-04-14 18:35:29 +00:00
|
|
|
|
|
|
|
|
|
|
2003-04-16 04:35:43 +00:00
|
|
|
|
LyXFont const outerFont(ParagraphList::iterator pit,
|
2003-04-16 08:12:22 +00:00
|
|
|
|
ParagraphList const & plist)
|
2003-04-14 18:35:29 +00:00
|
|
|
|
{
|
|
|
|
|
Paragraph::depth_type par_depth = pit->getDepth();
|
2003-04-15 00:11:03 +00:00
|
|
|
|
LyXFont tmpfont(LyXFont::ALL_INHERIT);
|
2003-04-14 18:35:29 +00:00
|
|
|
|
|
|
|
|
|
// Resolve against environment font information
|
2003-05-27 22:41:04 +00:00
|
|
|
|
while (pit != const_cast<ParagraphList&>(plist).end() &&
|
2003-04-16 08:12:22 +00:00
|
|
|
|
par_depth && !tmpfont.resolved()) {
|
|
|
|
|
pit = outerHook(pit, plist);
|
2003-05-27 22:41:04 +00:00
|
|
|
|
if (pit != const_cast<ParagraphList&>(plist).end()) {
|
2003-04-16 08:12:22 +00:00
|
|
|
|
tmpfont.realize(pit->layout()->font);
|
|
|
|
|
par_depth = pit->getDepth();
|
2003-04-14 18:35:29 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2003-04-15 00:11:03 +00:00
|
|
|
|
return tmpfont;
|
|
|
|
|
}
|
2003-08-26 14:50:16 +00:00
|
|
|
|
|
|
|
|
|
|
2003-08-26 16:36:53 +00:00
|
|
|
|
ParagraphList::iterator outerPar(Buffer const & buf, InsetOld const * inset)
|
2003-08-26 14:50:16 +00:00
|
|
|
|
{
|
2003-08-26 16:36:53 +00:00
|
|
|
|
ParIterator pit = const_cast<Buffer &>(buf).par_iterator_begin();
|
|
|
|
|
ParIterator end = const_cast<Buffer &>(buf).par_iterator_end();
|
2003-08-26 14:50:16 +00:00
|
|
|
|
for ( ; pit != end; ++pit) {
|
2003-08-27 13:32:26 +00:00
|
|
|
|
|
|
|
|
|
ParagraphList * plist;
|
|
|
|
|
// the second '=' below is intentional
|
|
|
|
|
for (int i = 0; (plist = inset->getParagraphs(i)); ++i)
|
|
|
|
|
if (plist == &pit.plist())
|
|
|
|
|
return pit.outerPar();
|
|
|
|
|
|
2003-08-26 14:50:16 +00:00
|
|
|
|
InsetList::iterator ii = pit->insetlist.begin();
|
|
|
|
|
InsetList::iterator iend = pit->insetlist.end();
|
|
|
|
|
for ( ; ii != iend; ++ii)
|
|
|
|
|
if (ii->inset == inset)
|
|
|
|
|
return pit.outerPar();
|
|
|
|
|
}
|
2003-08-27 13:32:26 +00:00
|
|
|
|
lyxerr << "outerPar: should not happen" << endl;
|
2003-09-09 17:25:35 +00:00
|
|
|
|
BOOST_ASSERT(false);
|
2003-09-09 09:47:59 +00:00
|
|
|
|
return const_cast<Buffer &>(buf).paragraphs().end(); // shut up compiler
|
2003-08-26 14:50:16 +00:00
|
|
|
|
}
|
|
|
|
|
|
2003-08-26 16:36:53 +00:00
|
|
|
|
|
|
|
|
|
Paragraph const & ownerPar(Buffer const & buf, InsetOld const * inset)
|
|
|
|
|
{
|
|
|
|
|
ParConstIterator pit = buf.par_iterator_begin();
|
|
|
|
|
ParConstIterator end = buf.par_iterator_end();
|
|
|
|
|
for ( ; pit != end; ++pit) {
|
2003-08-27 15:38:23 +00:00
|
|
|
|
ParagraphList * plist;
|
|
|
|
|
// the second '=' below is intentional
|
|
|
|
|
for (int i = 0; (plist = inset->getParagraphs(i)); ++i)
|
|
|
|
|
if (plist == &pit.plist())
|
|
|
|
|
return *pit.pit();
|
|
|
|
|
|
2003-08-26 16:36:53 +00:00
|
|
|
|
InsetList::const_iterator ii = pit->insetlist.begin();
|
|
|
|
|
InsetList::const_iterator iend = pit->insetlist.end();
|
|
|
|
|
for ( ; ii != iend; ++ii)
|
|
|
|
|
if (ii->inset == inset)
|
|
|
|
|
return *pit.pit();
|
|
|
|
|
}
|
2003-08-27 13:32:26 +00:00
|
|
|
|
lyxerr << "ownerPar: should not happen" << endl;
|
2003-09-09 17:25:35 +00:00
|
|
|
|
BOOST_ASSERT(false);
|
2003-09-09 09:47:59 +00:00
|
|
|
|
return buf.paragraphs().front(); // shut up compiler
|
2003-08-26 16:36:53 +00:00
|
|
|
|
}
|