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-02-08 19:18:01 +00:00
|
|
|
|
#include "paragraph_pimpl.h"
|
2002-08-20 19:41:13 +00:00
|
|
|
|
#include "buffer.h"
|
|
|
|
|
#include "ParagraphParameters.h"
|
|
|
|
|
#include "lyxtextclasslist.h"
|
|
|
|
|
#include "debug.h"
|
2003-03-12 11:52:23 +00:00
|
|
|
|
#include "gettext.h"
|
2003-03-03 21:15:49 +00:00
|
|
|
|
#include "language.h"
|
|
|
|
|
#include "encoding.h"
|
|
|
|
|
#include "lyxrc.h"
|
2003-03-12 11:52:23 +00:00
|
|
|
|
#include "lyxlex.h"
|
|
|
|
|
#include "factory.h"
|
2003-05-13 09:48:57 +00:00
|
|
|
|
#include "Lsstream.h"
|
2003-07-27 15:09:13 +00:00
|
|
|
|
|
2003-03-03 21:15:49 +00:00
|
|
|
|
#include "support/lstrings.h"
|
2003-08-26 14:50:16 +00:00
|
|
|
|
#include "support/LAssert.h"
|
2003-07-27 15:09:13 +00:00
|
|
|
|
|
2003-03-03 21:15:49 +00:00
|
|
|
|
#include "insets/insetoptarg.h"
|
2003-03-12 11:52:23 +00:00
|
|
|
|
#include "insets/insetcommandparams.h"
|
|
|
|
|
#include "insets/insetbibitem.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/insetlatexaccent.h"
|
|
|
|
|
#include "insets/insettabular.h"
|
|
|
|
|
#include "insets/insethfill.h"
|
2003-03-12 19:16:42 +00:00
|
|
|
|
#include "insets/insetnewline.h"
|
2003-03-03 21:15:49 +00:00
|
|
|
|
|
|
|
|
|
extern string bibitemWidest(Buffer const *);
|
2002-08-20 19:41:13 +00:00
|
|
|
|
|
2003-06-30 23:56:22 +00:00
|
|
|
|
using namespace lyx::support;
|
|
|
|
|
|
2002-08-20 19:41:13 +00:00
|
|
|
|
using lyx::pos_type;
|
|
|
|
|
//using lyx::layout_type;
|
|
|
|
|
using std::endl;
|
2003-03-03 21:15:49 +00:00
|
|
|
|
using std::ostream;
|
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);
|
|
|
|
|
tmpinset->parOwner(0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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().lineBottom(par->params().lineBottom());
|
|
|
|
|
par->params().lineBottom(false);
|
|
|
|
|
tmp->params().pagebreakBottom(par->params().pagebreakBottom());
|
|
|
|
|
par->params().pagebreakBottom(false);
|
|
|
|
|
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().lineTop(par->params().lineTop());
|
|
|
|
|
tmp->params().pagebreakTop(par->params().pagebreakTop());
|
|
|
|
|
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().lineBottom(the_next->params().lineBottom());
|
|
|
|
|
par->params().spaceBottom(the_next->params().spaceBottom());
|
|
|
|
|
par->params().pagebreakBottom(the_next->params().pagebreakBottom());
|
|
|
|
|
|
|
|
|
|
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-17 20:51:52 +00:00
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
|
|
ParagraphList::iterator
|
|
|
|
|
TeXEnvironment(Buffer const * buf,
|
|
|
|
|
ParagraphList const & paragraphs,
|
|
|
|
|
ParagraphList::iterator pit,
|
2003-05-22 18:59:10 +00:00
|
|
|
|
ostream & os, TexRow & texrow,
|
|
|
|
|
LatexRunParams const & runparams);
|
2003-03-17 20:51:52 +00:00
|
|
|
|
|
|
|
|
|
ParagraphList::iterator
|
|
|
|
|
TeXOnePar(Buffer const * buf,
|
|
|
|
|
ParagraphList const & paragraphs,
|
|
|
|
|
ParagraphList::iterator pit,
|
|
|
|
|
ostream & os, TexRow & texrow,
|
2003-05-22 18:59:10 +00:00
|
|
|
|
LatexRunParams const & runparams,
|
2003-05-19 07:12:09 +00:00
|
|
|
|
string const & everypar = string());
|
2003-03-17 20:51:52 +00:00
|
|
|
|
|
|
|
|
|
|
2003-03-03 23:19:01 +00:00
|
|
|
|
ParagraphList::iterator
|
|
|
|
|
TeXDeeper(Buffer const * buf,
|
2003-03-06 10:02:40 +00:00
|
|
|
|
ParagraphList const & paragraphs,
|
2003-03-03 23:19:01 +00:00
|
|
|
|
ParagraphList::iterator pit,
|
2003-05-22 18:59:10 +00:00
|
|
|
|
ostream & os, TexRow & texrow,
|
|
|
|
|
LatexRunParams const & runparams)
|
2003-03-03 21:15:49 +00:00
|
|
|
|
{
|
2003-03-03 23:19:01 +00:00
|
|
|
|
lyxerr[Debug::LATEX] << "TeXDeeper... " << &*pit << endl;
|
|
|
|
|
ParagraphList::iterator par = pit;
|
2003-03-03 21:15:49 +00:00
|
|
|
|
|
2003-05-27 22:41:04 +00:00
|
|
|
|
while (par != const_cast<ParagraphList&>(paragraphs).end() &&
|
2003-04-29 14:05:54 +00:00
|
|
|
|
par->params().depth() == pit->params().depth()) {
|
2003-03-03 21:15:49 +00:00
|
|
|
|
if (par->layout()->isEnvironment()) {
|
2003-03-17 20:51:52 +00:00
|
|
|
|
par = TeXEnvironment(buf, paragraphs, par,
|
2003-05-22 18:59:10 +00:00
|
|
|
|
os, texrow, runparams);
|
2003-03-03 21:15:49 +00:00
|
|
|
|
} else {
|
2003-03-17 20:51:52 +00:00
|
|
|
|
par = TeXOnePar(buf, paragraphs, par,
|
2003-05-23 08:59:47 +00:00
|
|
|
|
os, texrow, runparams);
|
2003-03-03 21:15:49 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2003-03-03 23:19:01 +00:00
|
|
|
|
lyxerr[Debug::LATEX] << "TeXDeeper...done " << &*par << endl;
|
2003-03-03 21:15:49 +00:00
|
|
|
|
|
|
|
|
|
return par;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-03-03 23:19:01 +00:00
|
|
|
|
ParagraphList::iterator
|
|
|
|
|
TeXEnvironment(Buffer const * buf,
|
2003-03-06 10:02:40 +00:00
|
|
|
|
ParagraphList const & paragraphs,
|
2003-03-03 23:19:01 +00:00
|
|
|
|
ParagraphList::iterator pit,
|
2003-05-22 18:59:10 +00:00
|
|
|
|
ostream & os, TexRow & texrow,
|
|
|
|
|
LatexRunParams const & runparams)
|
2003-03-03 21:15:49 +00:00
|
|
|
|
{
|
2003-03-03 23:19:01 +00:00
|
|
|
|
lyxerr[Debug::LATEX] << "TeXEnvironment... " << &*pit << endl;
|
2003-03-03 21:15:49 +00:00
|
|
|
|
|
2003-03-17 20:51:52 +00:00
|
|
|
|
BufferParams const & bparams = buf->params;
|
|
|
|
|
|
2003-03-03 21:15:49 +00:00
|
|
|
|
LyXLayout_ptr const & style = pit->layout();
|
|
|
|
|
|
|
|
|
|
Language const * language = pit->getParLanguage(bparams);
|
|
|
|
|
Language const * doc_language = bparams.language;
|
2003-03-04 22:11:45 +00:00
|
|
|
|
Language const * previous_language =
|
2003-05-27 22:41:04 +00:00
|
|
|
|
(pit != const_cast<ParagraphList&>(paragraphs).begin())
|
2003-03-04 22:11:45 +00:00
|
|
|
|
? boost::prior(pit)->getParLanguage(bparams)
|
|
|
|
|
: doc_language;
|
2003-03-03 21:15:49 +00:00
|
|
|
|
if (language->babel() != previous_language->babel()) {
|
|
|
|
|
|
|
|
|
|
if (!lyxrc.language_command_end.empty() &&
|
|
|
|
|
previous_language->babel() != doc_language->babel()) {
|
|
|
|
|
os << subst(lyxrc.language_command_end, "$$lang",
|
|
|
|
|
previous_language->babel())
|
|
|
|
|
<< endl;
|
|
|
|
|
texrow.newline();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (lyxrc.language_command_end.empty() ||
|
|
|
|
|
language->babel() != doc_language->babel()) {
|
|
|
|
|
os << subst(lyxrc.language_command_begin, "$$lang",
|
|
|
|
|
language->babel())
|
|
|
|
|
<< endl;
|
|
|
|
|
texrow.newline();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool leftindent_open = false;
|
|
|
|
|
if (!pit->params().leftIndent().zero()) {
|
|
|
|
|
os << "\\begin{LyXParagraphLeftIndent}{" <<
|
|
|
|
|
pit->params().leftIndent().asLatexString() << "}\n";
|
|
|
|
|
texrow.newline();
|
|
|
|
|
leftindent_open = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (style->isEnvironment()) {
|
|
|
|
|
if (style->latextype == LATEX_LIST_ENVIRONMENT) {
|
|
|
|
|
os << "\\begin{" << style->latexname() << "}{"
|
|
|
|
|
<< pit->params().labelWidthString() << "}\n";
|
|
|
|
|
} else if (style->labeltype == LABEL_BIBLIO) {
|
|
|
|
|
// ale970405
|
|
|
|
|
os << "\\begin{" << style->latexname() << "}{"
|
|
|
|
|
<< bibitemWidest(buf)
|
|
|
|
|
<< "}\n";
|
|
|
|
|
} else if (style->latextype == LATEX_ITEM_ENVIRONMENT) {
|
|
|
|
|
os << "\\begin{" << style->latexname() << '}'
|
|
|
|
|
<< style->latexparam() << '\n';
|
|
|
|
|
} else
|
|
|
|
|
os << "\\begin{" << style->latexname() << '}'
|
|
|
|
|
<< style->latexparam() << '\n';
|
|
|
|
|
texrow.newline();
|
|
|
|
|
}
|
2003-03-03 23:19:01 +00:00
|
|
|
|
ParagraphList::iterator par = pit;
|
2003-03-03 21:15:49 +00:00
|
|
|
|
do {
|
2003-05-23 08:59:47 +00:00
|
|
|
|
par = TeXOnePar(buf, paragraphs, par, os, texrow, runparams);
|
2003-03-03 21:15:49 +00:00
|
|
|
|
|
2003-05-28 06:47:15 +00:00
|
|
|
|
if (par != const_cast<ParagraphList&>(paragraphs).end() && par->params().depth() > pit->params().depth()) {
|
2003-03-03 21:15:49 +00:00
|
|
|
|
if (par->layout()->isParagraph()) {
|
|
|
|
|
|
|
|
|
|
// Thinko!
|
|
|
|
|
// How to handle this? (Lgb)
|
|
|
|
|
//&& !suffixIs(os, "\n\n")
|
|
|
|
|
//) {
|
|
|
|
|
// There should be at least one '\n' already
|
|
|
|
|
// but we need there to be two for Standard
|
|
|
|
|
// paragraphs that are depth-increment'ed to be
|
|
|
|
|
// output correctly. However, tables can
|
|
|
|
|
// also be paragraphs so don't adjust them.
|
|
|
|
|
// ARRae
|
|
|
|
|
// Thinkee:
|
|
|
|
|
// Will it ever harm to have one '\n' too
|
|
|
|
|
// many? i.e. that we sometimes will have
|
|
|
|
|
// three in a row. (Lgb)
|
|
|
|
|
os << '\n';
|
|
|
|
|
texrow.newline();
|
|
|
|
|
}
|
2003-05-22 18:59:10 +00:00
|
|
|
|
par = TeXDeeper(buf, paragraphs, par, os, texrow,
|
|
|
|
|
runparams);
|
2003-03-03 21:15:49 +00:00
|
|
|
|
}
|
2003-05-27 22:41:04 +00:00
|
|
|
|
} while (par != const_cast<ParagraphList&>(paragraphs).end()
|
2003-03-03 21:15:49 +00:00
|
|
|
|
&& par->layout() == pit->layout()
|
|
|
|
|
&& par->params().depth() == pit->params().depth()
|
|
|
|
|
&& par->params().leftIndent() == pit->params().leftIndent());
|
|
|
|
|
|
|
|
|
|
if (style->isEnvironment()) {
|
|
|
|
|
os << "\\end{" << style->latexname() << "}\n";
|
|
|
|
|
texrow.newline();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (leftindent_open) {
|
|
|
|
|
os << "\\end{LyXParagraphLeftIndent}\n";
|
|
|
|
|
texrow.newline();
|
|
|
|
|
}
|
|
|
|
|
|
2003-03-03 23:19:01 +00:00
|
|
|
|
lyxerr[Debug::LATEX] << "TeXEnvironment...done " << &*par << endl;
|
2003-03-03 21:15:49 +00:00
|
|
|
|
return par; // ale970302
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
InsetOptArg * optArgInset(Paragraph const & par)
|
|
|
|
|
{
|
|
|
|
|
// Find the entry.
|
2003-05-29 01:13:18 +00:00
|
|
|
|
InsetList::const_iterator it = par.insetlist.begin();
|
|
|
|
|
InsetList::const_iterator end = par.insetlist.end();
|
2003-03-03 21:15:49 +00:00
|
|
|
|
for (; it != end; ++it) {
|
2003-07-25 21:20:24 +00:00
|
|
|
|
InsetOld * ins = it->inset;
|
|
|
|
|
if (ins->lyxCode() == InsetOld::OPTARG_CODE) {
|
2003-03-03 21:15:49 +00:00
|
|
|
|
return static_cast<InsetOptArg *>(ins);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-03-03 23:19:01 +00:00
|
|
|
|
ParagraphList::iterator
|
|
|
|
|
TeXOnePar(Buffer const * buf,
|
2003-03-06 10:02:40 +00:00
|
|
|
|
ParagraphList const & paragraphs,
|
2003-03-03 23:19:01 +00:00
|
|
|
|
ParagraphList::iterator pit,
|
|
|
|
|
ostream & os, TexRow & texrow,
|
2003-05-22 18:59:10 +00:00
|
|
|
|
LatexRunParams const & runparams,
|
2003-05-19 07:12:09 +00:00
|
|
|
|
string const & everypar)
|
2003-03-03 21:15:49 +00:00
|
|
|
|
{
|
2003-08-18 08:23:03 +00:00
|
|
|
|
lyxerr[Debug::LATEX] << "TeXOnePar... " << &*pit << " '"
|
|
|
|
|
<< everypar << "'" << endl;
|
2003-03-17 20:51:52 +00:00
|
|
|
|
BufferParams const & bparams = buf->params;
|
|
|
|
|
|
2003-07-25 21:20:24 +00:00
|
|
|
|
InsetOld const * in = pit->inInset();
|
2003-03-03 21:15:49 +00:00
|
|
|
|
bool further_blank_line = false;
|
|
|
|
|
LyXLayout_ptr style;
|
|
|
|
|
|
|
|
|
|
// well we have to check if we are in an inset with unlimited
|
2003-08-18 08:23:03 +00:00
|
|
|
|
// length (all in one row) if that is true then we don't allow
|
2003-03-03 21:15:49 +00:00
|
|
|
|
// any special options in the paragraph and also we don't allow
|
|
|
|
|
// any environment other then "Standard" to be valid!
|
2003-08-18 08:23:03 +00:00
|
|
|
|
if (in == 0 || !in->forceDefaultParagraphs(in)) {
|
2003-03-03 21:15:49 +00:00
|
|
|
|
style = pit->layout();
|
|
|
|
|
|
|
|
|
|
if (pit->params().startOfAppendix()) {
|
|
|
|
|
os << "\\appendix\n";
|
|
|
|
|
texrow.newline();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!pit->params().spacing().isDefault()
|
2003-05-27 22:41:04 +00:00
|
|
|
|
&& (pit == const_cast<ParagraphList&>(paragraphs).begin() || !boost::prior(pit)->hasSameLayout(*pit))) {
|
2003-03-03 21:15:49 +00:00
|
|
|
|
os << pit->params().spacing().writeEnvirBegin() << '\n';
|
|
|
|
|
texrow.newline();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (style->isCommand()) {
|
|
|
|
|
os << '\n';
|
|
|
|
|
texrow.newline();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (pit->params().pagebreakTop()) {
|
|
|
|
|
os << "\\newpage";
|
|
|
|
|
further_blank_line = true;
|
|
|
|
|
}
|
|
|
|
|
if (pit->params().spaceTop().kind() != VSpace::NONE) {
|
|
|
|
|
os << pit->params().spaceTop().asLatexCommand(bparams);
|
|
|
|
|
further_blank_line = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (pit->params().lineTop()) {
|
2003-04-29 14:05:54 +00:00
|
|
|
|
os << "\\lyxline{\\"
|
|
|
|
|
<< pit->getFont(bparams, 0, outerFont(pit, paragraphs)).latexSize()
|
|
|
|
|
<< '}'
|
2003-03-03 21:15:49 +00:00
|
|
|
|
<< "\\vspace{-1\\parskip}";
|
|
|
|
|
further_blank_line = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (further_blank_line) {
|
|
|
|
|
os << '\n';
|
|
|
|
|
texrow.newline();
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
style = bparams.getLyXTextClass().defaultLayout();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Language const * language = pit->getParLanguage(bparams);
|
|
|
|
|
Language const * doc_language = bparams.language;
|
2003-03-04 22:11:45 +00:00
|
|
|
|
Language const * previous_language =
|
2003-05-27 22:41:04 +00:00
|
|
|
|
(pit != const_cast<ParagraphList&>(paragraphs).begin())
|
2003-03-04 22:11:45 +00:00
|
|
|
|
? boost::prior(pit)->getParLanguage(bparams)
|
|
|
|
|
: doc_language;
|
2003-03-03 21:15:49 +00:00
|
|
|
|
|
|
|
|
|
if (language->babel() != previous_language->babel()
|
|
|
|
|
// check if we already put language command in TeXEnvironment()
|
|
|
|
|
&& !(style->isEnvironment()
|
2003-05-27 22:41:04 +00:00
|
|
|
|
&& (pit == const_cast<ParagraphList&>(paragraphs).begin() ||
|
2003-03-04 22:11:45 +00:00
|
|
|
|
(boost::prior(pit)->layout() != pit->layout() &&
|
|
|
|
|
boost::prior(pit)->getDepth() <= pit->getDepth())
|
|
|
|
|
|| boost::prior(pit)->getDepth() < pit->getDepth())))
|
2003-03-03 21:15:49 +00:00
|
|
|
|
{
|
|
|
|
|
if (!lyxrc.language_command_end.empty() &&
|
|
|
|
|
previous_language->babel() != doc_language->babel())
|
|
|
|
|
{
|
|
|
|
|
os << subst(lyxrc.language_command_end, "$$lang",
|
|
|
|
|
previous_language->babel())
|
|
|
|
|
<< endl;
|
|
|
|
|
texrow.newline();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (lyxrc.language_command_end.empty() ||
|
|
|
|
|
language->babel() != doc_language->babel())
|
|
|
|
|
{
|
|
|
|
|
os << subst(lyxrc.language_command_begin, "$$lang",
|
|
|
|
|
language->babel())
|
|
|
|
|
<< endl;
|
|
|
|
|
texrow.newline();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (bparams.inputenc == "auto" &&
|
|
|
|
|
language->encoding() != previous_language->encoding()) {
|
|
|
|
|
os << "\\inputencoding{"
|
|
|
|
|
<< language->encoding()->LatexName()
|
|
|
|
|
<< "}\n";
|
|
|
|
|
texrow.newline();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch (style->latextype) {
|
|
|
|
|
case LATEX_COMMAND:
|
|
|
|
|
os << '\\' << style->latexname();
|
|
|
|
|
|
|
|
|
|
// Separate handling of optional argument inset.
|
|
|
|
|
if (style->optionalargs == 1) {
|
|
|
|
|
InsetOptArg * it = optArgInset(*pit);
|
|
|
|
|
if (it)
|
2003-05-23 08:59:47 +00:00
|
|
|
|
it->latexOptional(buf, os, runparams);
|
2003-03-03 21:15:49 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
os << style->latexparam();
|
|
|
|
|
break;
|
|
|
|
|
case LATEX_ITEM_ENVIRONMENT:
|
|
|
|
|
case LATEX_LIST_ENVIRONMENT:
|
|
|
|
|
os << "\\item ";
|
|
|
|
|
break;
|
|
|
|
|
case LATEX_BIB_ENVIRONMENT:
|
|
|
|
|
// ignore this, the inset will write itself
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2003-05-19 07:12:09 +00:00
|
|
|
|
os << everypar;
|
2003-04-16 04:35:43 +00:00
|
|
|
|
bool need_par = pit->simpleTeXOnePar(buf, bparams,
|
|
|
|
|
outerFont(pit, paragraphs),
|
2003-05-23 08:59:47 +00:00
|
|
|
|
os, texrow, runparams);
|
2003-03-03 21:15:49 +00:00
|
|
|
|
|
|
|
|
|
// Make sure that \\par is done with the font of the last
|
|
|
|
|
// character if this has another size as the default.
|
|
|
|
|
// This is necessary because LaTeX (and LyX on the screen)
|
|
|
|
|
// calculates the space between the baselines according
|
|
|
|
|
// to this font. (Matthias)
|
|
|
|
|
//
|
|
|
|
|
// Is this really needed ? (Dekel)
|
|
|
|
|
// We do not need to use to change the font for the last paragraph
|
|
|
|
|
// or for a command.
|
2003-04-16 04:35:43 +00:00
|
|
|
|
LyXFont const outerfont(outerFont(pit, paragraphs));
|
2003-04-15 00:49:11 +00:00
|
|
|
|
|
2003-03-03 21:15:49 +00:00
|
|
|
|
LyXFont const font =
|
|
|
|
|
(pit->empty()
|
2003-04-15 00:49:11 +00:00
|
|
|
|
? pit->getLayoutFont(bparams, outerfont)
|
|
|
|
|
: pit->getFont(bparams, pit->size() - 1, outerfont));
|
2003-03-03 21:15:49 +00:00
|
|
|
|
|
|
|
|
|
bool is_command = style->isCommand();
|
|
|
|
|
|
2003-03-04 22:11:45 +00:00
|
|
|
|
if (style->resfont.size() != font.size()
|
2003-05-27 22:41:04 +00:00
|
|
|
|
&& boost::next(pit) != const_cast<ParagraphList&>(paragraphs).end()
|
2003-03-04 22:11:45 +00:00
|
|
|
|
&& !is_command) {
|
2003-03-03 21:15:49 +00:00
|
|
|
|
if (!need_par)
|
|
|
|
|
os << '{';
|
|
|
|
|
os << "\\" << font.latexSize() << " \\par}";
|
|
|
|
|
} else if (need_par) {
|
|
|
|
|
os << "\\par}";
|
|
|
|
|
} else if (is_command)
|
|
|
|
|
os << '}';
|
|
|
|
|
|
|
|
|
|
switch (style->latextype) {
|
|
|
|
|
case LATEX_ITEM_ENVIRONMENT:
|
|
|
|
|
case LATEX_LIST_ENVIRONMENT:
|
2003-05-27 22:41:04 +00:00
|
|
|
|
if (boost::next(pit) != const_cast<ParagraphList&>(paragraphs).end()
|
2003-03-04 22:11:45 +00:00
|
|
|
|
&& (pit->params().depth() < boost::next(pit)->params().depth())) {
|
2003-03-03 21:15:49 +00:00
|
|
|
|
os << '\n';
|
|
|
|
|
texrow.newline();
|
|
|
|
|
}
|
|
|
|
|
break;
|
2003-05-28 06:47:15 +00:00
|
|
|
|
case LATEX_ENVIRONMENT: {
|
2003-03-03 21:15:49 +00:00
|
|
|
|
// if its the last paragraph of the current environment
|
|
|
|
|
// skip it otherwise fall through
|
2003-05-28 06:47:15 +00:00
|
|
|
|
ParagraphList::iterator next = boost::next(pit);
|
|
|
|
|
|
|
|
|
|
if (next != const_cast<ParagraphList&>(paragraphs).end()
|
|
|
|
|
&& (next->layout() != pit->layout()
|
|
|
|
|
|| next->params().depth() != pit->params().depth()))
|
2003-03-03 21:15:49 +00:00
|
|
|
|
break;
|
2003-05-28 06:47:15 +00:00
|
|
|
|
}
|
|
|
|
|
|
2003-03-03 21:15:49 +00:00
|
|
|
|
// fall through possible
|
|
|
|
|
default:
|
|
|
|
|
// we don't need it for the last paragraph!!!
|
2003-05-27 22:41:04 +00:00
|
|
|
|
if (boost::next(pit) != const_cast<ParagraphList&>(paragraphs).end()) {
|
2003-03-03 21:15:49 +00:00
|
|
|
|
os << '\n';
|
|
|
|
|
texrow.newline();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2003-08-15 08:03:54 +00:00
|
|
|
|
if (in == 0 || !in->forceDefaultParagraphs(in)) {
|
2003-03-03 21:15:49 +00:00
|
|
|
|
further_blank_line = false;
|
|
|
|
|
if (pit->params().lineBottom()) {
|
|
|
|
|
os << "\\lyxline{\\" << font.latexSize() << '}';
|
|
|
|
|
further_blank_line = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (pit->params().spaceBottom().kind() != VSpace::NONE) {
|
|
|
|
|
os << pit->params().spaceBottom().asLatexCommand(bparams);
|
|
|
|
|
further_blank_line = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (pit->params().pagebreakBottom()) {
|
|
|
|
|
os << "\\newpage";
|
|
|
|
|
further_blank_line = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (further_blank_line) {
|
|
|
|
|
os << '\n';
|
|
|
|
|
texrow.newline();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!pit->params().spacing().isDefault()
|
2003-05-27 22:41:04 +00:00
|
|
|
|
&& (boost::next(pit) == const_cast<ParagraphList&>(paragraphs).end()|| !boost::next(pit)->hasSameLayout(*pit))) {
|
2003-03-03 21:15:49 +00:00
|
|
|
|
os << pit->params().spacing().writeEnvirEnd() << '\n';
|
|
|
|
|
texrow.newline();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// we don't need it for the last paragraph!!!
|
2003-05-27 22:41:04 +00:00
|
|
|
|
if (boost::next(pit) != const_cast<ParagraphList&>(paragraphs).end()) {
|
2003-03-03 21:15:49 +00:00
|
|
|
|
os << '\n';
|
|
|
|
|
texrow.newline();
|
|
|
|
|
} else {
|
|
|
|
|
// Since \selectlanguage write the language to the aux file,
|
|
|
|
|
// we need to reset the language at the end of footnote or
|
|
|
|
|
// float.
|
|
|
|
|
|
|
|
|
|
if (language->babel() != doc_language->babel()) {
|
|
|
|
|
if (lyxrc.language_command_end.empty())
|
|
|
|
|
os << subst(lyxrc.language_command_begin,
|
|
|
|
|
"$$lang",
|
|
|
|
|
doc_language->babel())
|
|
|
|
|
<< endl;
|
|
|
|
|
else
|
|
|
|
|
os << subst(lyxrc.language_command_end,
|
|
|
|
|
"$$lang",
|
|
|
|
|
language->babel())
|
|
|
|
|
<< endl;
|
|
|
|
|
texrow.newline();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2003-03-04 22:11:45 +00:00
|
|
|
|
lyxerr[Debug::LATEX] << "TeXOnePar...done " << &*boost::next(pit) << endl;
|
2003-03-03 23:19:01 +00:00
|
|
|
|
return ++pit;
|
2003-03-03 21:15:49 +00:00
|
|
|
|
}
|
2003-03-10 17:49:24 +00:00
|
|
|
|
|
2003-03-17 20:51:52 +00:00
|
|
|
|
} // anon namespace
|
|
|
|
|
|
2003-03-10 17:49:24 +00:00
|
|
|
|
|
|
|
|
|
//
|
|
|
|
|
// LaTeX all paragraphs from par to endpar, if endpar == 0 then to the end
|
|
|
|
|
//
|
|
|
|
|
void latexParagraphs(Buffer const * buf,
|
|
|
|
|
ParagraphList const & paragraphs,
|
2003-05-19 07:12:09 +00:00
|
|
|
|
ostream & os,
|
2003-03-10 17:49:24 +00:00
|
|
|
|
TexRow & texrow,
|
2003-05-22 18:59:10 +00:00
|
|
|
|
LatexRunParams const & runparams,
|
2003-05-22 22:44:30 +00:00
|
|
|
|
string const & everypar)
|
2003-03-10 17:49:24 +00:00
|
|
|
|
{
|
|
|
|
|
bool was_title = false;
|
|
|
|
|
bool already_title = false;
|
|
|
|
|
LyXTextClass const & tclass = buf->params.getLyXTextClass();
|
2003-05-27 22:41:04 +00:00
|
|
|
|
ParagraphList::iterator par = const_cast<ParagraphList&>(paragraphs).begin();
|
|
|
|
|
ParagraphList::iterator endpar = const_cast<ParagraphList&>(paragraphs).end();
|
2003-03-10 17:49:24 +00:00
|
|
|
|
|
|
|
|
|
// if only_body
|
|
|
|
|
while (par != endpar) {
|
2003-07-25 21:20:24 +00:00
|
|
|
|
InsetOld * in = par->inInset();
|
2003-03-10 17:49:24 +00:00
|
|
|
|
// well we have to check if we are in an inset with unlimited
|
|
|
|
|
// length (all in one row) if that is true then we don't allow
|
|
|
|
|
// any special options in the paragraph and also we don't allow
|
|
|
|
|
// any environment other then "Standard" to be valid!
|
2003-08-18 08:23:03 +00:00
|
|
|
|
if (in == 0 || !in->forceDefaultParagraphs(in)) {
|
2003-03-10 17:49:24 +00:00
|
|
|
|
LyXLayout_ptr const & layout = par->layout();
|
|
|
|
|
|
|
|
|
|
if (layout->intitle) {
|
|
|
|
|
if (already_title) {
|
|
|
|
|
lyxerr <<"Error in latexParagraphs: You"
|
|
|
|
|
" should not mix title layouts"
|
|
|
|
|
" with normal ones." << endl;
|
|
|
|
|
} else if (!was_title) {
|
|
|
|
|
was_title = true;
|
|
|
|
|
if (tclass.titletype() == TITLE_ENVIRONMENT) {
|
2003-05-19 07:12:09 +00:00
|
|
|
|
os << "\\begin{"
|
2003-03-10 17:49:24 +00:00
|
|
|
|
<< tclass.titlename()
|
|
|
|
|
<< "}\n";
|
|
|
|
|
texrow.newline();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else if (was_title && !already_title) {
|
|
|
|
|
if (tclass.titletype() == TITLE_ENVIRONMENT) {
|
2003-05-19 07:12:09 +00:00
|
|
|
|
os << "\\end{" << tclass.titlename()
|
2003-03-10 17:49:24 +00:00
|
|
|
|
<< "}\n";
|
|
|
|
|
}
|
|
|
|
|
else {
|
2003-05-19 07:12:09 +00:00
|
|
|
|
os << "\\" << tclass.titlename()
|
2003-03-10 17:49:24 +00:00
|
|
|
|
<< "\n";
|
|
|
|
|
}
|
|
|
|
|
texrow.newline();
|
|
|
|
|
already_title = true;
|
|
|
|
|
was_title = false;
|
|
|
|
|
}
|
|
|
|
|
|
2003-05-19 07:12:09 +00:00
|
|
|
|
if (layout->is_environment) {
|
|
|
|
|
par = TeXOnePar(buf, paragraphs, par, os, texrow,
|
2003-05-22 22:44:30 +00:00
|
|
|
|
runparams, everypar);
|
2003-05-19 07:12:09 +00:00
|
|
|
|
} else if (layout->isEnvironment() ||
|
2003-03-10 17:49:24 +00:00
|
|
|
|
!par->params().leftIndent().zero())
|
|
|
|
|
{
|
2003-05-22 18:59:10 +00:00
|
|
|
|
par = TeXEnvironment(buf, paragraphs, par, os,
|
|
|
|
|
texrow, runparams);
|
2003-03-10 17:49:24 +00:00
|
|
|
|
} else {
|
2003-05-19 07:12:09 +00:00
|
|
|
|
par = TeXOnePar(buf, paragraphs, par, os, texrow,
|
2003-05-22 22:44:30 +00:00
|
|
|
|
runparams, everypar);
|
2003-03-10 17:49:24 +00:00
|
|
|
|
}
|
|
|
|
|
} else {
|
2003-05-19 07:12:09 +00:00
|
|
|
|
par = TeXOnePar(buf, paragraphs, par, os, texrow,
|
2003-05-22 22:44:30 +00:00
|
|
|
|
runparams, everypar);
|
2003-03-10 17:49:24 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
// It might be that we only have a title in this document
|
|
|
|
|
if (was_title && !already_title) {
|
|
|
|
|
if (tclass.titletype() == TITLE_ENVIRONMENT) {
|
2003-05-19 07:12:09 +00:00
|
|
|
|
os << "\\end{" << tclass.titlename()
|
2003-03-10 17:49:24 +00:00
|
|
|
|
<< "}\n";
|
|
|
|
|
}
|
|
|
|
|
else {
|
2003-05-19 07:12:09 +00:00
|
|
|
|
os << "\\" << tclass.titlename()
|
2003-03-10 17:49:24 +00:00
|
|
|
|
<< "\n";
|
|
|
|
|
}
|
|
|
|
|
texrow.newline();
|
|
|
|
|
}
|
|
|
|
|
}
|
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;
|
|
|
|
|
|
|
|
|
|
BufferParams const & bp = buf.params;
|
|
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
par.insertInset(par.size(), inset, font, change);
|
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-07-25 21:20:24 +00:00
|
|
|
|
InsetOld * inset = 0;
|
2003-05-22 10:40:57 +00:00
|
|
|
|
if (token == "\\SpecialChar" )
|
|
|
|
|
inset = new InsetSpecialChar;
|
|
|
|
|
else
|
|
|
|
|
inset = new InsetSpace;
|
2003-03-12 11:52:23 +00:00
|
|
|
|
inset->read(&buf, lex);
|
|
|
|
|
par.insertInset(par.size(), inset, font, change);
|
|
|
|
|
}
|
|
|
|
|
} else if (token == "\\i") {
|
2003-07-25 21:20:24 +00:00
|
|
|
|
InsetOld * inset = new InsetLatexAccent;
|
2003-03-12 11:52:23 +00:00
|
|
|
|
inset->read(&buf, lex);
|
|
|
|
|
par.insertInset(par.size(), inset, font, change);
|
|
|
|
|
} else if (token == "\\backslash") {
|
|
|
|
|
par.insertChar(par.size(), '\\', font, change);
|
|
|
|
|
} else if (token == "\\newline") {
|
2003-07-25 21:20:24 +00:00
|
|
|
|
InsetOld * inset = new InsetNewline;
|
2003-03-12 19:16:42 +00:00
|
|
|
|
inset->read(&buf, lex);
|
|
|
|
|
par.insertInset(par.size(), inset, font, change);
|
2003-03-12 11:52:23 +00:00
|
|
|
|
} else if (token == "\\LyXTable") {
|
2003-07-25 21:20:24 +00:00
|
|
|
|
InsetOld * inset = new InsetTabular(buf);
|
2003-03-12 11:52:23 +00:00
|
|
|
|
inset->read(&buf, lex);
|
|
|
|
|
par.insertInset(par.size(), inset, font, change);
|
|
|
|
|
} else if (token == "\\bibitem") {
|
|
|
|
|
InsetCommandParams p("bibitem", "dummy");
|
|
|
|
|
InsetBibitem * inset = new InsetBibitem(p);
|
|
|
|
|
inset->read(&buf, lex);
|
|
|
|
|
par.insertInset(par.size(), inset, font, change);
|
|
|
|
|
} else if (token == "\\hfill") {
|
2003-07-30 23:29:49 +00:00
|
|
|
|
par.insertInset(par.size(), new InsetHFill, 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-05-13 09:48:57 +00:00
|
|
|
|
istringstream is(STRCONV(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-05-13 09:48:57 +00:00
|
|
|
|
istringstream is(STRCONV(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-07-07 08:37:02 +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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ParagraphList::iterator outerPar(Buffer & buf, InsetOld * inset)
|
|
|
|
|
{
|
|
|
|
|
ParIterator pit = buf.par_iterator_begin();
|
|
|
|
|
ParIterator end = buf.par_iterator_end();
|
|
|
|
|
for ( ; pit != end; ++pit) {
|
|
|
|
|
InsetList::iterator ii = pit->insetlist.begin();
|
|
|
|
|
InsetList::iterator iend = pit->insetlist.end();
|
|
|
|
|
for ( ; ii != iend; ++ii)
|
|
|
|
|
if (ii->inset == inset)
|
|
|
|
|
return pit.outerPar();
|
|
|
|
|
}
|
|
|
|
|
lyxerr << "outerPar: should not happen\n";
|
|
|
|
|
Assert(false);
|
|
|
|
|
return end.pit(); // shut up compiler
|
|
|
|
|
}
|
|
|
|
|
|