1999-09-27 18:44:28 +00:00
|
|
|
/* This file is part of
|
2002-03-21 17:27:08 +00:00
|
|
|
* ======================================================
|
|
|
|
*
|
1999-10-02 16:21:10 +00:00
|
|
|
* LyX, The Document Processor
|
2002-03-21 17:27:08 +00:00
|
|
|
*
|
1999-11-04 01:40:20 +00:00
|
|
|
* Copyright 1995 Matthias Ettrich
|
2002-03-21 17:27:08 +00:00
|
|
|
* Copyright 1995-2001 The LyX Team.
|
1999-10-02 16:21:10 +00:00
|
|
|
*
|
1999-11-15 12:01:38 +00:00
|
|
|
* ====================================================== */
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
#include "paragraph.h"
|
|
|
|
#include "paragraph_pimpl.h"
|
1999-09-27 18:44:28 +00:00
|
|
|
#include "lyxrc.h"
|
|
|
|
#include "layout.h"
|
2001-04-05 12:26:41 +00:00
|
|
|
#include "language.h"
|
2000-07-27 08:55:59 +00:00
|
|
|
#include "buffer.h"
|
1999-09-27 18:44:28 +00:00
|
|
|
#include "bufferparams.h"
|
1999-10-07 18:44:17 +00:00
|
|
|
#include "debug.h"
|
1999-09-27 18:44:28 +00:00
|
|
|
#include "texrow.h"
|
2000-06-23 15:02:46 +00:00
|
|
|
#include "BufferView.h"
|
2000-07-04 20:32:37 +00:00
|
|
|
#include "encoding.h"
|
2001-03-06 14:07:14 +00:00
|
|
|
#include "ParameterStruct.h"
|
2001-04-05 12:26:41 +00:00
|
|
|
#include "gettext.h"
|
2003-02-08 19:18:01 +00:00
|
|
|
#include "changes.h"
|
2003-04-14 18:35:29 +00:00
|
|
|
#include "paragraph_funcs.h"
|
2003-05-13 09:48:57 +00:00
|
|
|
#include "Lsstream.h"
|
2001-12-28 13:26:54 +00:00
|
|
|
|
2003-02-21 09:20:18 +00:00
|
|
|
#include "insets/insetbibitem.h"
|
2002-08-23 09:05:32 +00:00
|
|
|
#include "insets/insetoptarg.h"
|
2001-12-28 13:26:54 +00:00
|
|
|
|
|
|
|
#include "support/filetools.h"
|
|
|
|
#include "support/lstrings.h"
|
|
|
|
#include "support/lyxmanip.h"
|
|
|
|
#include "support/FileInfo.h"
|
|
|
|
#include "support/LAssert.h"
|
|
|
|
#include "support/textutils.h"
|
|
|
|
|
|
|
|
#include <algorithm>
|
|
|
|
#include <fstream>
|
|
|
|
#include <csignal>
|
2003-02-08 19:18:01 +00:00
|
|
|
#include <ctime>
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2000-04-04 00:19:15 +00:00
|
|
|
using std::ostream;
|
2000-03-28 02:18:55 +00:00
|
|
|
using std::endl;
|
|
|
|
using std::fstream;
|
|
|
|
using std::ios;
|
2000-05-04 10:57:00 +00:00
|
|
|
using std::lower_bound;
|
|
|
|
using std::upper_bound;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2001-11-27 10:34:16 +00:00
|
|
|
using lyx::pos_type;
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2000-01-11 01:59:00 +00:00
|
|
|
// this is a minibuffer
|
2001-03-20 01:22:46 +00:00
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
char minibuffer_char;
|
|
|
|
LyXFont minibuffer_font;
|
|
|
|
Inset * minibuffer_inset;
|
|
|
|
|
|
|
|
} // namespace anon
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
2000-10-11 21:06:43 +00:00
|
|
|
extern BufferView * current_view;
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
Paragraph::Paragraph()
|
2002-03-02 16:39:54 +00:00
|
|
|
: pimpl_(new Paragraph::Pimpl(this))
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2002-08-15 07:53:46 +00:00
|
|
|
#ifndef NO_NEXT
|
2001-03-09 00:56:42 +00:00
|
|
|
next_ = 0;
|
|
|
|
previous_ = 0;
|
2002-08-15 07:53:46 +00:00
|
|
|
#endif
|
2001-06-25 00:06:33 +00:00
|
|
|
enumdepth = 0;
|
|
|
|
itemdepth = 0;
|
2002-03-07 10:51:45 +00:00
|
|
|
params().clear();
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-08-15 07:53:46 +00:00
|
|
|
#ifndef NO_NEXT
|
2001-12-12 09:56:03 +00:00
|
|
|
// This constructor inserts the new paragraph in a list.
|
2003-03-04 21:40:36 +00:00
|
|
|
// It is placed after par.
|
2001-06-25 00:06:33 +00:00
|
|
|
Paragraph::Paragraph(Paragraph * par)
|
2002-03-02 16:39:54 +00:00
|
|
|
: pimpl_(new Paragraph::Pimpl(this))
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
|
|
|
enumdepth = 0;
|
|
|
|
itemdepth = 0;
|
2001-04-27 07:19:08 +00:00
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
// double linked list begin
|
2001-03-09 00:56:42 +00:00
|
|
|
next_ = par->next_;
|
|
|
|
if (next_)
|
|
|
|
next_->previous_ = this;
|
|
|
|
previous_ = par;
|
|
|
|
previous_->next_ = this;
|
2000-01-13 16:28:54 +00:00
|
|
|
// end
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2002-03-07 10:51:45 +00:00
|
|
|
params().clear();
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
2002-08-15 07:53:46 +00:00
|
|
|
#endif
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
2001-07-06 15:57:54 +00:00
|
|
|
Paragraph::Paragraph(Paragraph const & lp, bool same_ids)
|
2002-03-02 16:39:54 +00:00
|
|
|
: pimpl_(new Paragraph::Pimpl(*lp.pimpl_, this, same_ids))
|
2001-05-08 10:50:09 +00:00
|
|
|
{
|
|
|
|
enumdepth = 0;
|
|
|
|
itemdepth = 0;
|
2002-08-15 07:53:46 +00:00
|
|
|
#ifndef NO_NEXT
|
2001-11-27 10:34:16 +00:00
|
|
|
next_ = 0;
|
2001-05-08 10:50:09 +00:00
|
|
|
previous_ = 0;
|
2002-08-15 07:53:46 +00:00
|
|
|
#endif
|
2001-05-08 10:50:09 +00:00
|
|
|
// this is because of the dummy layout of the paragraphs that
|
|
|
|
// follow footnotes
|
2002-03-02 16:39:54 +00:00
|
|
|
layout_ = lp.layout();
|
2001-05-08 10:50:09 +00:00
|
|
|
|
|
|
|
// copy everything behind the break-position to the new paragraph
|
|
|
|
insetlist = lp.insetlist;
|
2002-08-14 22:15:18 +00:00
|
|
|
InsetList::iterator it = insetlist.begin();
|
|
|
|
InsetList::iterator end = insetlist.end();
|
|
|
|
for (; it != end; ++it) {
|
|
|
|
it.setInset(it.getInset()->clone(*current_view->buffer(),
|
|
|
|
same_ids));
|
2001-12-12 09:56:03 +00:00
|
|
|
// tell the new inset who is the boss now
|
2002-08-11 15:03:52 +00:00
|
|
|
it.getInset()->parOwner(this);
|
2001-06-29 09:58:56 +00:00
|
|
|
}
|
2001-05-08 10:50:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// the destructor removes the new paragraph from the list
|
2001-06-25 00:06:33 +00:00
|
|
|
Paragraph::~Paragraph()
|
2001-05-08 10:50:09 +00:00
|
|
|
{
|
2002-08-15 07:53:46 +00:00
|
|
|
#ifndef NO_NEXT
|
2001-05-08 10:50:09 +00:00
|
|
|
if (previous_)
|
|
|
|
previous_->next_ = next_;
|
|
|
|
if (next_)
|
|
|
|
next_->previous_ = previous_;
|
2002-08-15 07:53:46 +00:00
|
|
|
#endif
|
2001-05-08 10:50:09 +00:00
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
delete pimpl_;
|
2001-05-08 10:50:09 +00:00
|
|
|
//
|
2001-06-25 00:06:33 +00:00
|
|
|
//lyxerr << "Paragraph::paragraph_id = "
|
|
|
|
// << Paragraph::paragraph_id << endl;
|
2001-05-08 10:50:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-08-20 17:29:37 +00:00
|
|
|
void Paragraph::write(Buffer const * buf, ostream & os,
|
2002-03-21 17:27:08 +00:00
|
|
|
BufferParams const & bparams,
|
2002-08-26 09:31:09 +00:00
|
|
|
depth_type & dth) const
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2001-05-08 13:28:44 +00:00
|
|
|
// The beginning or end of a deeper (i.e. nested) area?
|
2001-06-25 00:06:33 +00:00
|
|
|
if (dth != params().depth()) {
|
|
|
|
if (params().depth() > dth) {
|
|
|
|
while (params().depth() > dth) {
|
2001-05-08 13:28:44 +00:00
|
|
|
os << "\n\\begin_deeper ";
|
|
|
|
++dth;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
2001-05-08 13:28:44 +00:00
|
|
|
} else {
|
2001-06-25 00:06:33 +00:00
|
|
|
while (params().depth() < dth) {
|
2001-05-08 13:28:44 +00:00
|
|
|
os << "\n\\end_deeper ";
|
|
|
|
--dth;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
}
|
2001-05-08 13:28:44 +00:00
|
|
|
}
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2001-05-08 13:28:44 +00:00
|
|
|
// First write the layout
|
2002-11-27 10:30:28 +00:00
|
|
|
os << "\n\\layout " << layout()->name() << '\n';
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2003-03-12 06:53:49 +00:00
|
|
|
params().write(os);
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2001-03-06 14:07:14 +00:00
|
|
|
LyXFont font1(LyXFont::ALL_INHERIT, bparams.language);
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2003-02-08 19:18:01 +00:00
|
|
|
Change running_change = Change(Change::UNCHANGED);
|
|
|
|
lyx::time_type const curtime(lyx::current_time());
|
2003-03-03 21:15:49 +00:00
|
|
|
|
2000-07-15 23:51:46 +00:00
|
|
|
int column = 0;
|
2001-11-26 16:42:04 +00:00
|
|
|
for (pos_type i = 0; i < size(); ++i) {
|
2000-01-24 18:34:46 +00:00
|
|
|
if (!i) {
|
2002-11-27 10:30:28 +00:00
|
|
|
os << '\n';
|
1999-11-04 01:40:20 +00:00
|
|
|
column = 0;
|
|
|
|
}
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2003-02-08 19:18:01 +00:00
|
|
|
Change change = pimpl_->lookupChangeFull(i);
|
|
|
|
Changes::lyxMarkChange(os, column, curtime, running_change, change);
|
|
|
|
running_change = change;
|
2003-03-03 21:15:49 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
// Write font changes
|
2001-06-25 00:06:33 +00:00
|
|
|
LyXFont font2 = getFontSettings(bparams, i);
|
1999-09-27 18:44:28 +00:00
|
|
|
if (font2 != font1) {
|
2001-08-11 18:31:14 +00:00
|
|
|
font2.lyxWriteChanges(font1, os);
|
1999-09-27 18:44:28 +00:00
|
|
|
column = 0;
|
|
|
|
font1 = font2;
|
|
|
|
}
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
value_type const c = getChar(i);
|
1999-09-27 18:44:28 +00:00
|
|
|
switch (c) {
|
1999-11-15 12:01:38 +00:00
|
|
|
case META_INSET:
|
2000-02-22 00:36:17 +00:00
|
|
|
{
|
2001-06-25 00:06:33 +00:00
|
|
|
Inset const * inset = getInset(i);
|
1999-09-27 18:44:28 +00:00
|
|
|
if (inset)
|
2001-06-28 10:25:20 +00:00
|
|
|
if (inset->directWrite()) {
|
1999-09-27 18:44:28 +00:00
|
|
|
// international char, let it write
|
|
|
|
// code directly so it's shorter in
|
|
|
|
// the file
|
2001-06-28 10:25:20 +00:00
|
|
|
inset->write(buf, os);
|
1999-09-27 18:44:28 +00:00
|
|
|
} else {
|
1999-12-07 00:44:53 +00:00
|
|
|
os << "\n\\begin_inset ";
|
2001-06-28 10:25:20 +00:00
|
|
|
inset->write(buf, os);
|
1999-12-07 00:44:53 +00:00
|
|
|
os << "\n\\end_inset \n\n";
|
1999-09-27 18:44:28 +00:00
|
|
|
column = 0;
|
|
|
|
}
|
2000-02-22 00:36:17 +00:00
|
|
|
}
|
|
|
|
break;
|
1999-12-07 00:44:53 +00:00
|
|
|
case '\\':
|
|
|
|
os << "\n\\backslash \n";
|
1999-09-27 18:44:28 +00:00
|
|
|
column = 0;
|
|
|
|
break;
|
|
|
|
case '.':
|
2001-06-25 00:06:33 +00:00
|
|
|
if (i + 1 < size() && getChar(i + 1) == ' ') {
|
1999-12-07 00:44:53 +00:00
|
|
|
os << ".\n";
|
1999-11-04 01:40:20 +00:00
|
|
|
column = 0;
|
|
|
|
} else
|
2002-11-27 10:30:28 +00:00
|
|
|
os << '.';
|
1999-09-27 18:44:28 +00:00
|
|
|
break;
|
|
|
|
default:
|
1999-11-15 12:01:38 +00:00
|
|
|
if ((column > 70 && c == ' ')
|
2000-02-29 02:19:17 +00:00
|
|
|
|| column > 79) {
|
2002-11-27 10:30:28 +00:00
|
|
|
os << '\n';
|
1999-09-27 18:44:28 +00:00
|
|
|
column = 0;
|
|
|
|
}
|
|
|
|
// this check is to amend a bug. LyX sometimes
|
|
|
|
// inserts '\0' this could cause problems.
|
|
|
|
if (c != '\0')
|
1999-12-07 00:44:53 +00:00
|
|
|
os << c;
|
1999-09-27 18:44:28 +00:00
|
|
|
else
|
2001-06-25 00:06:33 +00:00
|
|
|
lyxerr << "ERROR (Paragraph::writeFile):"
|
1999-10-07 18:44:17 +00:00
|
|
|
" NULL char in structure." << endl;
|
2000-01-24 18:34:46 +00:00
|
|
|
++column;
|
1999-09-27 18:44:28 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2003-02-08 19:18:01 +00:00
|
|
|
|
|
|
|
// to make reading work properly
|
|
|
|
if (!size()) {
|
|
|
|
running_change = pimpl_->lookupChange(0);
|
|
|
|
Changes::lyxMarkChange(os, column, curtime,
|
|
|
|
Change(Change::UNCHANGED), running_change);
|
|
|
|
}
|
|
|
|
Changes::lyxMarkChange(os, column, curtime,
|
2003-03-03 21:15:49 +00:00
|
|
|
running_change, Change(Change::UNCHANGED));
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
void Paragraph::validate(LaTeXFeatures & features) const
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2002-07-20 16:42:15 +00:00
|
|
|
pimpl_->validate(features, *layout());
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-01-11 01:59:00 +00:00
|
|
|
// First few functions needed for cut and paste and paragraph breaking.
|
2001-11-26 16:42:04 +00:00
|
|
|
void Paragraph::copyIntoMinibuffer(Buffer const & buffer, pos_type pos) const
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2000-12-07 15:30:53 +00:00
|
|
|
BufferParams bparams = buffer.params;
|
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
minibuffer_char = getChar(pos);
|
|
|
|
minibuffer_font = getFontSettings(bparams, pos);
|
1999-09-27 18:44:28 +00:00
|
|
|
minibuffer_inset = 0;
|
2001-06-25 00:06:33 +00:00
|
|
|
if (minibuffer_char == Paragraph::META_INSET) {
|
|
|
|
if (getInset(pos)) {
|
2001-06-28 10:25:20 +00:00
|
|
|
minibuffer_inset = getInset(pos)->clone(buffer);
|
1999-09-27 18:44:28 +00:00
|
|
|
} else {
|
1999-10-02 16:21:10 +00:00
|
|
|
minibuffer_inset = 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
minibuffer_char = ' ';
|
|
|
|
// This reflects what GetInset() does (ARRae)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-01-20 01:41:55 +00:00
|
|
|
|
2001-11-26 16:42:04 +00:00
|
|
|
void Paragraph::cutIntoMinibuffer(BufferParams const & bparams, pos_type pos)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2001-06-25 00:06:33 +00:00
|
|
|
minibuffer_char = getChar(pos);
|
|
|
|
minibuffer_font = getFontSettings(bparams, pos);
|
1999-09-27 18:44:28 +00:00
|
|
|
minibuffer_inset = 0;
|
2001-06-25 00:06:33 +00:00
|
|
|
if (minibuffer_char == Paragraph::META_INSET) {
|
|
|
|
if (getInset(pos)) {
|
2001-12-12 09:56:03 +00:00
|
|
|
// the inset is not in a paragraph anymore
|
2002-08-14 22:15:18 +00:00
|
|
|
minibuffer_inset = insetlist.release(pos);
|
2001-12-12 09:56:03 +00:00
|
|
|
minibuffer_inset->parOwner(0);
|
1999-09-27 18:44:28 +00:00
|
|
|
} else {
|
1999-10-02 16:21:10 +00:00
|
|
|
minibuffer_inset = 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
minibuffer_char = ' ';
|
|
|
|
// This reflects what GetInset() does (ARRae)
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2000-01-11 01:59:00 +00:00
|
|
|
// Erase(pos); now the caller is responsible for that.
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-26 16:42:04 +00:00
|
|
|
bool Paragraph::insertFromMinibuffer(pos_type pos)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2001-11-20 08:54:10 +00:00
|
|
|
if (minibuffer_char == Paragraph::META_INSET) {
|
|
|
|
if (!insetAllowed(minibuffer_inset->lyxCode())) {
|
|
|
|
return false;
|
|
|
|
}
|
2001-06-25 00:06:33 +00:00
|
|
|
insertInset(pos, minibuffer_inset, minibuffer_font);
|
2001-11-20 08:54:10 +00:00
|
|
|
} else {
|
2001-07-27 12:03:36 +00:00
|
|
|
LyXFont f = minibuffer_font;
|
2001-11-20 08:54:10 +00:00
|
|
|
if (!checkInsertChar(f)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
insertChar(pos, minibuffer_char, f);
|
2001-07-27 12:03:36 +00:00
|
|
|
}
|
2000-04-10 14:29:05 +00:00
|
|
|
return true;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
2000-01-11 01:59:00 +00:00
|
|
|
// end of minibuffer
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
2003-03-04 19:52:35 +00:00
|
|
|
void Paragraph::eraseIntern(lyx::pos_type pos)
|
|
|
|
{
|
|
|
|
pimpl_->eraseIntern(pos);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-05-01 09:15:15 +00:00
|
|
|
bool Paragraph::erase(pos_type pos)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2003-05-01 09:15:15 +00:00
|
|
|
return pimpl_->erase(pos);
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-04-29 09:40:49 +00:00
|
|
|
int Paragraph::erase(pos_type start, pos_type end)
|
2003-02-08 19:18:01 +00:00
|
|
|
{
|
|
|
|
return pimpl_->erase(start, end);
|
|
|
|
}
|
|
|
|
|
2003-03-03 21:15:49 +00:00
|
|
|
|
2001-07-27 12:03:36 +00:00
|
|
|
bool Paragraph::checkInsertChar(LyXFont & font)
|
|
|
|
{
|
|
|
|
if (pimpl_->inset_owner)
|
|
|
|
return pimpl_->inset_owner->checkInsertChar(font);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-26 16:42:04 +00:00
|
|
|
void Paragraph::insertChar(pos_type pos, Paragraph::value_type c)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2000-11-21 15:46:13 +00:00
|
|
|
LyXFont const f(LyXFont::ALL_INHERIT);
|
2001-06-25 00:06:33 +00:00
|
|
|
insertChar(pos, c, f);
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
1999-11-15 12:01:38 +00:00
|
|
|
|
2001-11-26 16:42:04 +00:00
|
|
|
void Paragraph::insertChar(pos_type pos, Paragraph::value_type c,
|
2003-02-08 19:18:01 +00:00
|
|
|
LyXFont const & font, Change change)
|
2000-06-28 13:35:52 +00:00
|
|
|
{
|
2003-02-08 19:18:01 +00:00
|
|
|
pimpl_->insertChar(pos, c, font, change);
|
2000-06-28 13:35:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-26 16:42:04 +00:00
|
|
|
void Paragraph::insertInset(pos_type pos, Inset * inset)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2000-11-21 15:46:13 +00:00
|
|
|
LyXFont const f(LyXFont::ALL_INHERIT);
|
2001-06-25 00:06:33 +00:00
|
|
|
insertInset(pos, inset, f);
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
1999-11-15 12:01:38 +00:00
|
|
|
|
2003-02-08 19:18:01 +00:00
|
|
|
void Paragraph::insertInset(pos_type pos, Inset * inset, LyXFont const & font, Change change)
|
2000-06-28 13:35:52 +00:00
|
|
|
{
|
2003-02-08 19:18:01 +00:00
|
|
|
pimpl_->insertInset(pos, inset, font, change);
|
2000-06-28 13:35:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-07-19 08:52:59 +00:00
|
|
|
bool Paragraph::insetAllowed(Inset::Code code)
|
2000-04-10 14:29:05 +00:00
|
|
|
{
|
2001-06-25 00:06:33 +00:00
|
|
|
//lyxerr << "Paragraph::InsertInsetAllowed" << endl;
|
|
|
|
if (pimpl_->inset_owner)
|
2001-07-19 08:52:59 +00:00
|
|
|
return pimpl_->inset_owner->insetAllowed(code);
|
2000-04-10 14:29:05 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2000-05-18 13:26:04 +00:00
|
|
|
|
2001-11-26 16:42:04 +00:00
|
|
|
Inset * Paragraph::getInset(pos_type pos)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2001-04-24 15:25:26 +00:00
|
|
|
lyx::Assert(pos < size());
|
2002-08-14 22:15:18 +00:00
|
|
|
return insetlist.get(pos);
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-26 16:42:04 +00:00
|
|
|
Inset const * Paragraph::getInset(pos_type pos) const
|
1999-11-22 16:19:48 +00:00
|
|
|
{
|
2001-04-24 15:25:26 +00:00
|
|
|
lyx::Assert(pos < size());
|
2002-08-11 15:03:52 +00:00
|
|
|
return insetlist.get(pos);
|
1999-11-22 16:19:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
// Gets uninstantiated font setting at position.
|
2001-06-25 00:06:33 +00:00
|
|
|
LyXFont const Paragraph::getFontSettings(BufferParams const & bparams,
|
2002-03-21 17:27:08 +00:00
|
|
|
pos_type pos) const
|
2001-04-04 21:47:26 +00:00
|
|
|
{
|
2001-04-24 15:25:26 +00:00
|
|
|
lyx::Assert(pos <= size());
|
2002-03-13 18:23:38 +00:00
|
|
|
|
|
|
|
Pimpl::FontList::const_iterator cit = pimpl_->fontlist.begin();
|
|
|
|
Pimpl::FontList::const_iterator end = pimpl_->fontlist.end();
|
|
|
|
for (; cit != end; ++cit) {
|
2002-03-13 23:13:35 +00:00
|
|
|
if (cit->pos() >= pos)
|
2002-03-13 18:23:38 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2001-07-27 12:03:36 +00:00
|
|
|
LyXFont retfont;
|
2003-03-11 15:01:29 +00:00
|
|
|
if (cit != end)
|
2001-07-27 12:03:36 +00:00
|
|
|
retfont = cit->font();
|
2003-03-11 15:01:29 +00:00
|
|
|
else if (pos == size() && !empty())
|
2001-07-27 12:03:36 +00:00
|
|
|
retfont = getFontSettings(bparams, pos - 1);
|
2003-03-11 15:01:29 +00:00
|
|
|
else
|
2001-07-27 12:03:36 +00:00
|
|
|
retfont = LyXFont(LyXFont::ALL_INHERIT, getParLanguage(bparams));
|
|
|
|
|
|
|
|
return retfont;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
2000-12-29 12:48:02 +00:00
|
|
|
|
2000-03-17 10:14:46 +00:00
|
|
|
// Gets uninstantiated font setting at position 0
|
2001-06-25 00:06:33 +00:00
|
|
|
LyXFont const Paragraph::getFirstFontSettings() const
|
2000-03-17 10:14:46 +00:00
|
|
|
{
|
2002-08-10 15:21:07 +00:00
|
|
|
if (!empty() && !pimpl_->fontlist.empty())
|
2001-11-27 10:34:16 +00:00
|
|
|
return pimpl_->fontlist[0].font();
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2000-03-17 10:14:46 +00:00
|
|
|
return LyXFont(LyXFont::ALL_INHERIT);
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2000-06-08 23:16:16 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
// Gets the fully instantiated font at a given position in a paragraph
|
|
|
|
// This is basically the same function as LyXText::GetFont() in text2.C.
|
|
|
|
// The difference is that this one is used for generating the LaTeX file,
|
|
|
|
// and thus cosmetic "improvements" are disallowed: This has to deliver
|
|
|
|
// the true picture of the buffer. (Asger)
|
2003-04-15 00:11:03 +00:00
|
|
|
LyXFont const Paragraph::getFont(BufferParams const & bparams, pos_type pos,
|
|
|
|
LyXFont const & outerfont) const
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2001-08-03 18:28:11 +00:00
|
|
|
lyx::Assert(pos >= 0);
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2002-06-24 20:28:12 +00:00
|
|
|
LyXLayout_ptr const & lout = layout();
|
|
|
|
|
2003-03-09 12:37:22 +00:00
|
|
|
pos_type const body_pos = beginningOfBody();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2001-08-03 18:28:11 +00:00
|
|
|
LyXFont layoutfont;
|
2003-03-09 12:37:22 +00:00
|
|
|
if (pos < body_pos)
|
2002-06-24 20:28:12 +00:00
|
|
|
layoutfont = lout->labelfont;
|
2001-08-03 18:28:11 +00:00
|
|
|
else
|
2002-06-24 20:28:12 +00:00
|
|
|
layoutfont = lout->font;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2001-08-03 18:28:11 +00:00
|
|
|
LyXFont tmpfont = getFontSettings(bparams, pos);
|
2001-08-11 18:31:14 +00:00
|
|
|
tmpfont.realize(layoutfont);
|
2003-04-15 00:11:03 +00:00
|
|
|
tmpfont.realize(outerfont);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2003-04-15 18:34:43 +00:00
|
|
|
return realizeFont(tmpfont, bparams);
|
2001-08-03 18:28:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-04-15 00:49:11 +00:00
|
|
|
LyXFont const Paragraph::getLabelFont(BufferParams const & bparams,
|
|
|
|
LyXFont const & outerfont) const
|
2001-08-03 18:28:11 +00:00
|
|
|
{
|
2002-06-24 20:28:12 +00:00
|
|
|
LyXLayout_ptr const & lout = layout();
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2002-06-24 20:28:12 +00:00
|
|
|
LyXFont tmpfont = lout->labelfont;
|
2001-08-03 18:28:11 +00:00
|
|
|
tmpfont.setLanguage(getParLanguage(bparams));
|
2003-04-15 00:49:11 +00:00
|
|
|
tmpfont.realize(outerfont);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2003-04-15 18:34:43 +00:00
|
|
|
return realizeFont(tmpfont, bparams);
|
2001-08-03 18:28:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-04-15 00:49:11 +00:00
|
|
|
LyXFont const Paragraph::getLayoutFont(BufferParams const & bparams,
|
|
|
|
LyXFont const & outerfont) const
|
2001-08-03 18:28:11 +00:00
|
|
|
{
|
2002-06-24 20:28:12 +00:00
|
|
|
LyXLayout_ptr const & lout = layout();
|
2001-08-03 18:28:11 +00:00
|
|
|
|
2002-06-24 20:28:12 +00:00
|
|
|
LyXFont tmpfont = lout->font;
|
2001-08-03 18:28:11 +00:00
|
|
|
tmpfont.setLanguage(getParLanguage(bparams));
|
2003-04-15 00:49:11 +00:00
|
|
|
tmpfont.realize(outerfont);
|
2001-08-03 18:28:11 +00:00
|
|
|
|
2003-04-15 18:34:43 +00:00
|
|
|
return realizeFont(tmpfont, bparams);
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// Returns the height of the highest font in range
|
2000-01-11 01:59:00 +00:00
|
|
|
LyXFont::FONT_SIZE
|
2001-11-26 16:42:04 +00:00
|
|
|
Paragraph::highestFontInRange(pos_type startpos, pos_type endpos,
|
2001-08-03 18:28:11 +00:00
|
|
|
LyXFont::FONT_SIZE const def_size) const
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2001-06-25 00:06:33 +00:00
|
|
|
if (pimpl_->fontlist.empty())
|
2001-07-31 12:57:06 +00:00
|
|
|
return def_size;
|
2000-07-15 23:51:46 +00:00
|
|
|
|
2002-03-13 18:23:38 +00:00
|
|
|
Pimpl::FontList::const_iterator end_it = pimpl_->fontlist.begin();
|
|
|
|
Pimpl::FontList::const_iterator end = pimpl_->fontlist.end();
|
|
|
|
for (; end_it != end; ++end_it) {
|
2002-03-13 23:13:35 +00:00
|
|
|
if (end_it->pos() >= endpos)
|
2002-03-13 18:23:38 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (end_it != end)
|
2000-06-20 12:49:14 +00:00
|
|
|
++end_it;
|
|
|
|
|
2002-03-13 18:23:38 +00:00
|
|
|
Pimpl::FontList::const_iterator cit = pimpl_->fontlist.begin();
|
|
|
|
for (; cit != end; ++cit) {
|
2002-03-13 23:13:35 +00:00
|
|
|
if (cit->pos() >= startpos)
|
2002-03-13 18:23:38 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
LyXFont::FONT_SIZE maxsize = LyXFont::SIZE_TINY;
|
2001-08-03 18:28:11 +00:00
|
|
|
for (; cit != end_it; ++cit) {
|
2001-07-12 11:11:10 +00:00
|
|
|
LyXFont::FONT_SIZE size = cit->font().size();
|
2001-07-31 12:57:06 +00:00
|
|
|
if (size == LyXFont::INHERIT_SIZE)
|
|
|
|
size = def_size;
|
2000-06-20 12:49:14 +00:00
|
|
|
if (size > maxsize && size <= LyXFont::SIZE_HUGER)
|
|
|
|
maxsize = size;
|
1999-11-04 01:40:20 +00:00
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
return maxsize;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
Paragraph::value_type
|
2001-12-18 15:29:54 +00:00
|
|
|
Paragraph::getUChar(BufferParams const & bparams, pos_type pos) const
|
2001-02-11 09:58:20 +00:00
|
|
|
{
|
2001-06-25 00:06:33 +00:00
|
|
|
value_type c = getChar(pos);
|
2001-02-11 09:58:20 +00:00
|
|
|
if (!lyxrc.rtl_support)
|
|
|
|
return c;
|
|
|
|
|
|
|
|
value_type uc = c;
|
|
|
|
switch (c) {
|
|
|
|
case '(':
|
|
|
|
uc = ')';
|
|
|
|
break;
|
|
|
|
case ')':
|
|
|
|
uc = '(';
|
|
|
|
break;
|
|
|
|
case '[':
|
|
|
|
uc = ']';
|
|
|
|
break;
|
|
|
|
case ']':
|
|
|
|
uc = '[';
|
|
|
|
break;
|
|
|
|
case '{':
|
|
|
|
uc = '}';
|
|
|
|
break;
|
|
|
|
case '}':
|
|
|
|
uc = '{';
|
|
|
|
break;
|
|
|
|
case '<':
|
|
|
|
uc = '>';
|
|
|
|
break;
|
|
|
|
case '>':
|
|
|
|
uc = '<';
|
|
|
|
break;
|
|
|
|
}
|
2001-06-25 00:06:33 +00:00
|
|
|
if (uc != c && getFontSettings(bparams, pos).isRightToLeft())
|
2001-02-11 09:58:20 +00:00
|
|
|
return uc;
|
|
|
|
else
|
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
2001-04-04 21:47:26 +00:00
|
|
|
|
2001-12-18 15:29:54 +00:00
|
|
|
void Paragraph::setFont(pos_type pos, LyXFont const & font)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2001-04-24 15:25:26 +00:00
|
|
|
lyx::Assert(pos <= size());
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2000-01-11 01:59:00 +00:00
|
|
|
// First, reduce font against layout/label font
|
|
|
|
// Update: The SetCharFont() routine in text2.C already
|
|
|
|
// reduces font, so we don't need to do that here. (Asger)
|
|
|
|
// No need to simplify this because it will disappear
|
|
|
|
// in a new kernel. (Asger)
|
1999-09-27 18:44:28 +00:00
|
|
|
// Next search font table
|
2000-01-11 01:59:00 +00:00
|
|
|
|
2002-03-13 18:23:38 +00:00
|
|
|
Pimpl::FontList::iterator beg = pimpl_->fontlist.begin();
|
|
|
|
Pimpl::FontList::iterator it = beg;
|
|
|
|
Pimpl::FontList::iterator endit = pimpl_->fontlist.end();
|
|
|
|
for (; it != endit; ++it) {
|
2002-03-13 23:13:35 +00:00
|
|
|
if (it->pos() >= pos)
|
2002-03-13 18:23:38 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
unsigned int i = std::distance(beg, it);
|
|
|
|
bool notfound = (it == endit);
|
2000-06-20 12:49:14 +00:00
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
if (!notfound && pimpl_->fontlist[i].font() == font)
|
2000-06-20 12:49:14 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
bool begin = pos == 0 || notfound ||
|
2002-03-13 18:23:38 +00:00
|
|
|
(i > 0 && pimpl_->fontlist[i - 1].pos() == pos - 1);
|
2000-06-20 12:49:14 +00:00
|
|
|
// Is position pos is a beginning of a font block?
|
2001-06-25 00:06:33 +00:00
|
|
|
bool end = !notfound && pimpl_->fontlist[i].pos() == pos;
|
2000-06-20 12:49:14 +00:00
|
|
|
// Is position pos is the end of a font block?
|
|
|
|
if (begin && end) { // A single char block
|
2001-06-25 00:06:33 +00:00
|
|
|
if (i + 1 < pimpl_->fontlist.size() &&
|
|
|
|
pimpl_->fontlist[i + 1].font() == font) {
|
2000-06-20 12:49:14 +00:00
|
|
|
// Merge the singleton block with the next block
|
2001-06-25 00:06:33 +00:00
|
|
|
pimpl_->fontlist.erase(pimpl_->fontlist.begin() + i);
|
|
|
|
if (i > 0 && pimpl_->fontlist[i - 1].font() == font)
|
2002-08-11 16:27:10 +00:00
|
|
|
pimpl_->fontlist.erase(pimpl_->fontlist.begin() + i - 1);
|
2001-06-25 00:06:33 +00:00
|
|
|
} else if (i > 0 && pimpl_->fontlist[i - 1].font() == font) {
|
2000-06-20 12:49:14 +00:00
|
|
|
// Merge the singleton block with the previous block
|
2001-06-25 00:06:33 +00:00
|
|
|
pimpl_->fontlist[i - 1].pos(pos);
|
|
|
|
pimpl_->fontlist.erase(pimpl_->fontlist.begin() + i);
|
2000-06-20 12:49:14 +00:00
|
|
|
} else
|
2001-06-25 00:06:33 +00:00
|
|
|
pimpl_->fontlist[i].font(font);
|
2000-06-20 12:49:14 +00:00
|
|
|
} else if (begin) {
|
2001-06-25 00:06:33 +00:00
|
|
|
if (i > 0 && pimpl_->fontlist[i - 1].font() == font)
|
|
|
|
pimpl_->fontlist[i - 1].pos(pos);
|
2000-06-20 12:49:14 +00:00
|
|
|
else
|
2001-06-25 00:06:33 +00:00
|
|
|
pimpl_->fontlist.insert(pimpl_->fontlist.begin() + i,
|
|
|
|
Pimpl::FontTable(pos, font));
|
2000-06-20 12:49:14 +00:00
|
|
|
} else if (end) {
|
2001-06-25 00:06:33 +00:00
|
|
|
pimpl_->fontlist[i].pos(pos - 1);
|
|
|
|
if (!(i + 1 < pimpl_->fontlist.size() &&
|
|
|
|
pimpl_->fontlist[i + 1].font() == font))
|
|
|
|
pimpl_->fontlist.insert(pimpl_->fontlist.begin() + i + 1,
|
|
|
|
Pimpl::FontTable(pos, font));
|
2000-06-20 12:49:14 +00:00
|
|
|
} else { // The general case. The block is splitted into 3 blocks
|
2002-03-21 17:27:08 +00:00
|
|
|
pimpl_->fontlist.insert(pimpl_->fontlist.begin() + i,
|
2001-06-25 00:06:33 +00:00
|
|
|
Pimpl::FontTable(pos - 1, pimpl_->fontlist[i].font()));
|
|
|
|
pimpl_->fontlist.insert(pimpl_->fontlist.begin() + i + 1,
|
|
|
|
Pimpl::FontTable(pos, font));
|
1999-11-04 01:40:20 +00:00
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
2001-03-09 00:56:42 +00:00
|
|
|
|
2002-08-15 07:53:46 +00:00
|
|
|
#ifndef NO_NEXT
|
2001-06-25 00:06:33 +00:00
|
|
|
void Paragraph::next(Paragraph * p)
|
2001-03-09 00:56:42 +00:00
|
|
|
{
|
|
|
|
next_ = p;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-01-11 01:59:00 +00:00
|
|
|
// This function is able to hide closed footnotes.
|
2001-06-25 00:06:33 +00:00
|
|
|
Paragraph * Paragraph::next()
|
2001-03-09 00:56:42 +00:00
|
|
|
{
|
2001-04-27 07:19:08 +00:00
|
|
|
return next_;
|
2001-03-09 00:56:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
Paragraph const * Paragraph::next() const
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2001-04-27 07:19:08 +00:00
|
|
|
return next_;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
1999-11-22 16:19:48 +00:00
|
|
|
|
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
void Paragraph::previous(Paragraph * p)
|
2001-03-09 00:56:42 +00:00
|
|
|
{
|
|
|
|
previous_ = p;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-01-11 01:59:00 +00:00
|
|
|
// This function is able to hide closed footnotes.
|
2001-06-25 00:06:33 +00:00
|
|
|
Paragraph * Paragraph::previous()
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2001-04-27 07:19:08 +00:00
|
|
|
return previous_;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
1999-11-15 12:01:38 +00:00
|
|
|
|
2000-01-11 01:59:00 +00:00
|
|
|
// This function is able to hide closed footnotes.
|
2001-06-25 00:06:33 +00:00
|
|
|
Paragraph const * Paragraph::previous() const
|
1999-11-22 16:19:48 +00:00
|
|
|
{
|
2001-04-27 07:19:08 +00:00
|
|
|
return previous_;
|
1999-11-22 16:19:48 +00:00
|
|
|
}
|
2002-08-15 07:53:46 +00:00
|
|
|
#endif
|
1999-11-22 16:19:48 +00:00
|
|
|
|
|
|
|
|
2003-04-29 10:56:15 +00:00
|
|
|
void Paragraph::makeSameLayout(Paragraph const & par)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2003-04-29 10:56:15 +00:00
|
|
|
layout(par.layout());
|
2001-06-29 09:58:56 +00:00
|
|
|
// move to pimpl?
|
2003-04-29 10:56:15 +00:00
|
|
|
params() = par.params();
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-06-24 20:28:12 +00:00
|
|
|
int Paragraph::stripLeadingSpaces()
|
2000-05-26 16:13:01 +00:00
|
|
|
{
|
2003-03-11 16:38:37 +00:00
|
|
|
if (layout()->free_spacing || isFreeSpacing())
|
2000-05-26 16:13:01 +00:00
|
|
|
return 0;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2000-05-26 16:13:01 +00:00
|
|
|
int i = 0;
|
2002-08-10 15:21:07 +00:00
|
|
|
while (!empty() && (isNewline(0) || isLineSeparator(0))) {
|
2003-02-08 19:18:01 +00:00
|
|
|
pimpl_->eraseIntern(0);
|
2001-04-27 07:19:08 +00:00
|
|
|
++i;
|
2000-05-26 16:13:01 +00:00
|
|
|
}
|
2001-04-27 07:19:08 +00:00
|
|
|
|
2000-05-26 16:13:01 +00:00
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2003-04-29 10:56:15 +00:00
|
|
|
bool Paragraph::hasSameLayout(Paragraph const & par) const
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2002-03-21 17:27:08 +00:00
|
|
|
return
|
2003-04-29 10:56:15 +00:00
|
|
|
par.layout() == layout() &&
|
|
|
|
params().sameLayout(par.params());
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
1999-11-15 12:01:38 +00:00
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
Paragraph::depth_type Paragraph::getDepth() const
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2001-06-25 00:06:33 +00:00
|
|
|
return params().depth();
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-06-24 20:28:12 +00:00
|
|
|
Paragraph::depth_type Paragraph::getMaxDepthAfter() const
|
2002-02-28 15:07:11 +00:00
|
|
|
{
|
2003-03-11 16:38:37 +00:00
|
|
|
if (layout()->isEnvironment())
|
2002-02-28 15:07:11 +00:00
|
|
|
return params().depth() + 1;
|
|
|
|
else
|
|
|
|
return params().depth();
|
|
|
|
}
|
|
|
|
|
2003-03-11 16:38:37 +00:00
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
char Paragraph::getAlign() const
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2001-06-25 00:06:33 +00:00
|
|
|
return params().align();
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
string const & Paragraph::getLabelstring() const
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2001-06-25 00:06:33 +00:00
|
|
|
return params().labelString();
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-01-11 01:59:00 +00:00
|
|
|
// the next two functions are for the manual labels
|
2001-06-25 00:06:33 +00:00
|
|
|
string const Paragraph::getLabelWidthString() const
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2001-06-25 00:06:33 +00:00
|
|
|
if (!params().labelWidthString().empty())
|
|
|
|
return params().labelWidthString();
|
1999-09-27 18:44:28 +00:00
|
|
|
else
|
|
|
|
return _("Senseless with this layout!");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
void Paragraph::setLabelWidthString(string const & s)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2001-06-25 00:06:33 +00:00
|
|
|
params().labelWidthString(s);
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-06-24 20:28:12 +00:00
|
|
|
void Paragraph::applyLayout(LyXLayout_ptr const & new_layout)
|
2001-04-04 21:47:26 +00:00
|
|
|
{
|
2002-03-02 16:39:54 +00:00
|
|
|
layout(new_layout);
|
2001-06-25 00:06:33 +00:00
|
|
|
params().labelWidthString(string());
|
|
|
|
params().align(LYX_ALIGN_LAYOUT);
|
|
|
|
params().spaceTop(VSpace(VSpace::NONE));
|
|
|
|
params().spaceBottom(VSpace(VSpace::NONE));
|
|
|
|
params().spacing(Spacing(Spacing::Default));
|
2001-04-04 21:47:26 +00:00
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
2003-03-09 12:37:22 +00:00
|
|
|
int Paragraph::beginningOfBody() const
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2003-02-14 00:41:44 +00:00
|
|
|
if (layout()->labeltype != LABEL_MANUAL)
|
|
|
|
return 0;
|
|
|
|
|
1999-11-15 12:01:38 +00:00
|
|
|
// Unroll the first two cycles of the loop
|
|
|
|
// and remember the previous character to
|
|
|
|
// remove unnecessary GetChar() calls
|
2001-11-26 16:42:04 +00:00
|
|
|
pos_type i = 0;
|
2003-03-12 19:16:42 +00:00
|
|
|
if (i < size() && !isNewline(i)) {
|
1999-11-04 01:40:20 +00:00
|
|
|
++i;
|
2000-11-21 15:46:13 +00:00
|
|
|
char previous_char = 0;
|
2002-03-21 17:27:08 +00:00
|
|
|
char temp = 0;
|
2003-03-12 19:16:42 +00:00
|
|
|
if (i < size()) {
|
2003-03-13 10:30:28 +00:00
|
|
|
previous_char = getChar(i);
|
2003-03-12 19:16:42 +00:00
|
|
|
if (!isNewline(i)) {
|
1999-11-04 01:40:20 +00:00
|
|
|
++i;
|
2003-03-12 19:16:42 +00:00
|
|
|
while (i < size() && previous_char != ' ') {
|
|
|
|
temp = getChar(i);
|
|
|
|
if (isNewline(i))
|
|
|
|
break;
|
|
|
|
|
|
|
|
++i;
|
|
|
|
previous_char = temp;
|
|
|
|
}
|
1999-11-04 01:40:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-01-11 01:59:00 +00:00
|
|
|
// returns -1 if inset not found
|
2001-12-13 11:35:25 +00:00
|
|
|
int Paragraph::getPositionOfInset(Inset const * inset) const
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2000-01-11 01:59:00 +00:00
|
|
|
// Find the entry.
|
2002-08-11 15:03:52 +00:00
|
|
|
InsetList::iterator it = insetlist.begin();
|
|
|
|
InsetList::iterator end = insetlist.end();
|
2003-02-17 15:16:14 +00:00
|
|
|
for (; it != end; ++it)
|
2003-03-03 21:15:49 +00:00
|
|
|
if (it.getInset() == inset)
|
2002-08-11 15:03:52 +00:00
|
|
|
return it.getPos();
|
2000-01-11 01:59:00 +00:00
|
|
|
return -1;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
2003-02-17 15:16:14 +00:00
|
|
|
|
2003-02-21 09:20:18 +00:00
|
|
|
InsetBibitem * Paragraph::bibitem()
|
2003-02-17 15:16:14 +00:00
|
|
|
{
|
|
|
|
InsetList::iterator it = insetlist.begin();
|
|
|
|
if (it != insetlist.end() && it.getInset()->lyxCode() == Inset::BIBTEX_CODE)
|
2003-03-03 21:15:49 +00:00
|
|
|
return static_cast<InsetBibitem *>(it.getInset());
|
2002-08-23 09:05:32 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2002-08-15 07:53:46 +00:00
|
|
|
|
2002-01-19 20:24:04 +00:00
|
|
|
// This could go to ParagraphParameters if we want to
|
|
|
|
int Paragraph::startTeXParParams(BufferParams const & bparams,
|
2002-07-01 14:31:57 +00:00
|
|
|
ostream & os, bool moving_arg) const
|
2002-01-19 20:24:04 +00:00
|
|
|
{
|
|
|
|
int column = 0;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2002-01-19 20:24:04 +00:00
|
|
|
if (params().noindent()) {
|
|
|
|
os << "\\noindent ";
|
|
|
|
column += 10;
|
|
|
|
}
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2002-07-01 14:31:57 +00:00
|
|
|
switch (params().align()) {
|
|
|
|
case LYX_ALIGN_NONE:
|
|
|
|
case LYX_ALIGN_BLOCK:
|
|
|
|
case LYX_ALIGN_LAYOUT:
|
|
|
|
case LYX_ALIGN_SPECIAL:
|
|
|
|
break;
|
|
|
|
case LYX_ALIGN_LEFT:
|
|
|
|
case LYX_ALIGN_RIGHT:
|
|
|
|
case LYX_ALIGN_CENTER:
|
|
|
|
if (moving_arg) {
|
|
|
|
os << "\\protect";
|
|
|
|
column = 8;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2002-08-10 15:21:07 +00:00
|
|
|
|
2002-01-19 20:24:04 +00:00
|
|
|
switch (params().align()) {
|
|
|
|
case LYX_ALIGN_NONE:
|
|
|
|
case LYX_ALIGN_BLOCK:
|
|
|
|
case LYX_ALIGN_LAYOUT:
|
|
|
|
case LYX_ALIGN_SPECIAL:
|
|
|
|
break;
|
|
|
|
case LYX_ALIGN_LEFT:
|
|
|
|
if (getParLanguage(bparams)->babel() != "hebrew") {
|
|
|
|
os << "\\begin{flushleft}";
|
|
|
|
column += 17;
|
|
|
|
} else {
|
|
|
|
os << "\\begin{flushright}";
|
|
|
|
column += 18;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case LYX_ALIGN_RIGHT:
|
|
|
|
if (getParLanguage(bparams)->babel() != "hebrew") {
|
|
|
|
os << "\\begin{flushright}";
|
|
|
|
column += 18;
|
|
|
|
} else {
|
|
|
|
os << "\\begin{flushleft}";
|
|
|
|
column += 17;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case LYX_ALIGN_CENTER:
|
|
|
|
os << "\\begin{center}";
|
|
|
|
column += 14;
|
|
|
|
break;
|
|
|
|
}
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2002-01-19 20:24:04 +00:00
|
|
|
return column;
|
|
|
|
}
|
|
|
|
|
2002-08-15 07:53:46 +00:00
|
|
|
|
2002-01-19 20:24:04 +00:00
|
|
|
// This could go to ParagraphParameters if we want to
|
|
|
|
int Paragraph::endTeXParParams(BufferParams const & bparams,
|
2002-07-01 14:31:57 +00:00
|
|
|
ostream & os, bool moving_arg) const
|
2002-01-19 20:24:04 +00:00
|
|
|
{
|
|
|
|
int column = 0;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2002-07-01 14:31:57 +00:00
|
|
|
switch (params().align()) {
|
|
|
|
case LYX_ALIGN_NONE:
|
|
|
|
case LYX_ALIGN_BLOCK:
|
|
|
|
case LYX_ALIGN_LAYOUT:
|
|
|
|
case LYX_ALIGN_SPECIAL:
|
|
|
|
break;
|
|
|
|
case LYX_ALIGN_LEFT:
|
|
|
|
case LYX_ALIGN_RIGHT:
|
|
|
|
case LYX_ALIGN_CENTER:
|
|
|
|
if (moving_arg) {
|
|
|
|
os << "\\protect";
|
|
|
|
column = 8;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2002-08-10 15:21:07 +00:00
|
|
|
|
2002-01-19 20:24:04 +00:00
|
|
|
switch (params().align()) {
|
|
|
|
case LYX_ALIGN_NONE:
|
|
|
|
case LYX_ALIGN_BLOCK:
|
|
|
|
case LYX_ALIGN_LAYOUT:
|
|
|
|
case LYX_ALIGN_SPECIAL:
|
|
|
|
break;
|
|
|
|
case LYX_ALIGN_LEFT:
|
|
|
|
if (getParLanguage(bparams)->babel() != "hebrew") {
|
|
|
|
os << "\\end{flushleft}";
|
|
|
|
column = 15;
|
|
|
|
} else {
|
|
|
|
os << "\\end{flushright}";
|
|
|
|
column = 16;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case LYX_ALIGN_RIGHT:
|
|
|
|
if (getParLanguage(bparams)->babel() != "hebrew") {
|
|
|
|
os << "\\end{flushright}";
|
|
|
|
column+= 16;
|
|
|
|
} else {
|
|
|
|
os << "\\end{flushleft}";
|
|
|
|
column = 15;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case LYX_ALIGN_CENTER:
|
|
|
|
os << "\\end{center}";
|
|
|
|
column = 12;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return column;
|
|
|
|
}
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
// This one spits out the text of the paragraph
|
2001-06-25 00:06:33 +00:00
|
|
|
bool Paragraph::simpleTeXOnePar(Buffer const * buf,
|
2002-03-21 17:27:08 +00:00
|
|
|
BufferParams const & bparams,
|
2003-04-15 00:11:03 +00:00
|
|
|
LyXFont const & outerfont,
|
2002-03-21 17:27:08 +00:00
|
|
|
ostream & os, TexRow & texrow,
|
|
|
|
bool moving_arg)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
1999-10-07 18:44:17 +00:00
|
|
|
lyxerr[Debug::LATEX] << "SimpleTeXOnePar... " << this << endl;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
bool return_value = false;
|
|
|
|
|
2002-06-24 20:28:12 +00:00
|
|
|
LyXLayout_ptr style;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2002-01-08 14:24:49 +00:00
|
|
|
// well we have to check if we are in an inset with unlimited
|
|
|
|
// lenght (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!
|
|
|
|
bool asdefault =
|
|
|
|
(inInset() && inInset()->forceDefaultParagraphs(inInset()));
|
|
|
|
|
|
|
|
if (asdefault) {
|
2002-07-21 21:21:06 +00:00
|
|
|
style = bparams.getLyXTextClass().defaultLayout();
|
2002-01-08 14:24:49 +00:00
|
|
|
} else {
|
2002-06-24 20:28:12 +00:00
|
|
|
style = layout();
|
2002-01-08 14:24:49 +00:00
|
|
|
}
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2001-05-09 09:14:50 +00:00
|
|
|
LyXFont basefont;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2000-01-11 01:59:00 +00:00
|
|
|
// Maybe we have to create a optional argument.
|
2003-03-09 12:37:22 +00:00
|
|
|
pos_type body_pos;
|
2003-02-14 00:41:44 +00:00
|
|
|
|
|
|
|
// FIXME: can we actually skip this check and just call
|
2003-03-09 12:37:22 +00:00
|
|
|
// beginningOfBody() ??
|
2003-02-14 00:41:44 +00:00
|
|
|
if (style->labeltype != LABEL_MANUAL) {
|
2003-03-09 12:37:22 +00:00
|
|
|
body_pos = 0;
|
2003-02-14 00:41:44 +00:00
|
|
|
} else {
|
2003-03-09 12:37:22 +00:00
|
|
|
body_pos = beginningOfBody();
|
2003-02-14 00:41:44 +00:00
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2003-01-08 09:03:32 +00:00
|
|
|
unsigned int column = 0;
|
2001-06-27 14:10:35 +00:00
|
|
|
|
2003-03-09 12:37:22 +00:00
|
|
|
if (body_pos > 0) {
|
2000-03-06 02:42:40 +00:00
|
|
|
os << '[';
|
2001-06-27 14:10:35 +00:00
|
|
|
++column;
|
2003-04-15 00:49:11 +00:00
|
|
|
basefont = getLabelFont(bparams, outerfont);
|
1999-09-27 18:44:28 +00:00
|
|
|
} else {
|
2003-04-15 00:49:11 +00:00
|
|
|
basefont = getLayoutFont(bparams, outerfont);
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
2002-06-24 20:28:12 +00:00
|
|
|
moving_arg |= style->needprotect;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
// Which font is currently active?
|
2000-03-06 02:42:40 +00:00
|
|
|
LyXFont running_font(basefont);
|
1999-09-27 18:44:28 +00:00
|
|
|
// Do we have an open font change?
|
|
|
|
bool open_font = false;
|
|
|
|
|
2003-02-08 19:18:01 +00:00
|
|
|
Change::Type running_change = Change::UNCHANGED;
|
2003-03-03 21:15:49 +00:00
|
|
|
|
2003-05-07 21:27:29 +00:00
|
|
|
texrow.start(id(), 0);
|
1999-11-04 01:40:20 +00:00
|
|
|
|
2002-01-19 20:24:04 +00:00
|
|
|
// if the paragraph is empty, the loop will not be entered at all
|
2002-08-10 15:21:07 +00:00
|
|
|
if (empty()) {
|
2002-06-24 20:28:12 +00:00
|
|
|
if (style->isCommand()) {
|
2002-01-19 20:24:04 +00:00
|
|
|
os << '{';
|
|
|
|
++column;
|
|
|
|
}
|
|
|
|
if (!asdefault)
|
2002-07-01 14:31:57 +00:00
|
|
|
column += startTeXParParams(bparams, os, moving_arg);
|
2002-01-19 20:24:04 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2001-11-26 16:42:04 +00:00
|
|
|
for (pos_type i = 0; i < size(); ++i) {
|
2000-01-20 01:41:55 +00:00
|
|
|
++column;
|
1999-09-27 18:44:28 +00:00
|
|
|
// First char in paragraph or after label?
|
2003-03-09 12:37:22 +00:00
|
|
|
if (i == body_pos) {
|
|
|
|
if (body_pos > 0) {
|
1999-09-27 18:44:28 +00:00
|
|
|
if (open_font) {
|
2000-03-06 02:42:40 +00:00
|
|
|
column += running_font.latexWriteEndChanges(os, basefont, basefont);
|
1999-09-27 18:44:28 +00:00
|
|
|
open_font = false;
|
|
|
|
}
|
2003-04-15 00:49:11 +00:00
|
|
|
basefont = getLayoutFont(bparams, outerfont);
|
1999-09-27 18:44:28 +00:00
|
|
|
running_font = basefont;
|
2000-03-06 02:42:40 +00:00
|
|
|
os << ']';
|
2000-01-20 01:41:55 +00:00
|
|
|
++column;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
2002-06-24 20:28:12 +00:00
|
|
|
if (style->isCommand()) {
|
2000-03-06 02:42:40 +00:00
|
|
|
os << '{';
|
2000-01-20 01:41:55 +00:00
|
|
|
++column;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2002-01-19 20:24:04 +00:00
|
|
|
if (!asdefault)
|
2002-07-01 14:31:57 +00:00
|
|
|
column += startTeXParParams(bparams, os,
|
|
|
|
moving_arg);
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
value_type c = getChar(i);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
// Fully instantiated font
|
2003-04-15 00:11:03 +00:00
|
|
|
LyXFont font = getFont(bparams, i, outerfont);
|
2001-04-27 07:19:08 +00:00
|
|
|
|
2002-04-11 13:35:03 +00:00
|
|
|
LyXFont const last_font = running_font;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
// Spaces at end of font change are simulated to be
|
|
|
|
// outside font change, i.e. we write "\textXX{text} "
|
1999-11-04 01:40:20 +00:00
|
|
|
// rather than "\textXX{text }". (Asger)
|
2001-08-03 18:28:11 +00:00
|
|
|
if (open_font && c == ' ' && i <= size() - 2) {
|
2003-04-15 00:11:03 +00:00
|
|
|
LyXFont const & next_font = getFont(bparams, i + 1, outerfont);
|
2001-08-03 18:28:11 +00:00
|
|
|
if (next_font != running_font
|
|
|
|
&& next_font != font) {
|
|
|
|
font = next_font;
|
|
|
|
}
|
1999-11-04 01:40:20 +00:00
|
|
|
}
|
2002-03-21 17:27:08 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
// We end font definition before blanks
|
2002-04-11 13:35:03 +00:00
|
|
|
if (open_font &&
|
|
|
|
(font != running_font ||
|
|
|
|
font.language() != running_font.language()))
|
|
|
|
{
|
2000-03-06 02:42:40 +00:00
|
|
|
column += running_font.latexWriteEndChanges(os,
|
2000-02-03 19:51:27 +00:00
|
|
|
basefont,
|
2003-03-09 12:37:22 +00:00
|
|
|
(i == body_pos-1) ? basefont : font);
|
1999-09-27 18:44:28 +00:00
|
|
|
running_font = basefont;
|
|
|
|
open_font = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Blanks are printed before start of fontswitch
|
2000-06-08 23:16:16 +00:00
|
|
|
if (c == ' ') {
|
1999-09-27 18:44:28 +00:00
|
|
|
// Do not print the separation of the optional argument
|
2003-03-09 12:37:22 +00:00
|
|
|
if (i != body_pos - 1) {
|
2001-06-25 00:06:33 +00:00
|
|
|
pimpl_->simpleTeXBlanks(os, texrow, i,
|
2002-06-24 20:28:12 +00:00
|
|
|
column, font, *style);
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Do we need to change font?
|
2002-04-11 13:35:03 +00:00
|
|
|
if ((font != running_font ||
|
|
|
|
font.language() != running_font.language()) &&
|
2003-03-09 12:37:22 +00:00
|
|
|
i != body_pos - 1)
|
2002-04-11 13:35:03 +00:00
|
|
|
{
|
2000-03-06 02:42:40 +00:00
|
|
|
column += font.latexWriteStartChanges(os, basefont,
|
|
|
|
last_font);
|
1999-09-27 18:44:28 +00:00
|
|
|
running_font = font;
|
|
|
|
open_font = true;
|
|
|
|
}
|
2003-03-03 21:15:49 +00:00
|
|
|
|
2003-02-08 19:18:01 +00:00
|
|
|
Change::Type change = pimpl_->lookupChange(i);
|
2003-03-03 21:15:49 +00:00
|
|
|
|
2003-02-08 19:18:01 +00:00
|
|
|
column += Changes::latexMarkChange(os, running_change, change);
|
|
|
|
running_change = change;
|
2003-03-03 21:15:49 +00:00
|
|
|
|
2003-03-12 19:16:42 +00:00
|
|
|
pimpl_->simpleTeXSpecialChars(buf, bparams,
|
|
|
|
os, texrow, moving_arg,
|
|
|
|
font, running_font,
|
2003-04-15 00:49:11 +00:00
|
|
|
basefont, outerfont, open_font,
|
2003-03-12 19:16:42 +00:00
|
|
|
running_change,
|
|
|
|
*style, i, column, c);
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
2003-02-08 19:18:01 +00:00
|
|
|
column += Changes::latexMarkChange(os,
|
|
|
|
running_change, Change::UNCHANGED);
|
2003-03-03 21:15:49 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
// If we have an open font definition, we have to close it
|
|
|
|
if (open_font) {
|
2001-07-27 12:03:36 +00:00
|
|
|
#ifdef FIXED_LANGUAGE_END_DETECTION
|
2001-04-27 07:19:08 +00:00
|
|
|
if (next_) {
|
|
|
|
running_font
|
|
|
|
.latexWriteEndChanges(os, basefont,
|
2002-03-21 17:27:08 +00:00
|
|
|
next_->getFont(bparams,
|
2003-04-15 00:11:03 +00:00
|
|
|
0, outerfont));
|
2001-04-27 07:19:08 +00:00
|
|
|
} else {
|
2000-03-17 10:14:46 +00:00
|
|
|
running_font.latexWriteEndChanges(os, basefont,
|
2002-03-21 17:27:08 +00:00
|
|
|
basefont);
|
2001-04-27 07:19:08 +00:00
|
|
|
}
|
2001-07-27 12:03:36 +00:00
|
|
|
#else
|
|
|
|
#ifdef WITH_WARNINGS
|
2001-09-09 22:02:19 +00:00
|
|
|
//#warning For now we ALWAYS have to close the foreign font settings if they are
|
|
|
|
//#warning there as we start another \selectlanguage with the next paragraph if
|
|
|
|
//#warning we are in need of this. This should be fixed sometime (Jug)
|
2001-07-27 12:03:36 +00:00
|
|
|
#endif
|
|
|
|
running_font.latexWriteEndChanges(os, basefont, basefont);
|
|
|
|
#endif
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
2000-01-11 01:59:00 +00:00
|
|
|
// Needed if there is an optional argument but no contents.
|
2003-03-09 12:37:22 +00:00
|
|
|
if (body_pos > 0 && body_pos == size()) {
|
2000-03-06 02:42:40 +00:00
|
|
|
os << "]~";
|
1999-11-04 01:40:20 +00:00
|
|
|
return_value = false;
|
|
|
|
}
|
1999-11-15 12:01:38 +00:00
|
|
|
|
2002-01-08 14:24:49 +00:00
|
|
|
if (!asdefault) {
|
2002-07-01 14:31:57 +00:00
|
|
|
column += endTeXParParams(bparams, os, moving_arg);
|
2002-01-08 14:24:49 +00:00
|
|
|
}
|
2001-06-27 14:10:35 +00:00
|
|
|
|
1999-10-07 18:44:17 +00:00
|
|
|
lyxerr[Debug::LATEX] << "SimpleTeXOnePar...done " << this << endl;
|
1999-09-27 18:44:28 +00:00
|
|
|
return return_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-03-06 02:42:40 +00:00
|
|
|
|
|
|
|
|
2001-11-26 16:42:04 +00:00
|
|
|
bool Paragraph::isHfill(pos_type pos) const
|
1999-11-15 12:01:38 +00:00
|
|
|
{
|
2003-03-11 15:01:29 +00:00
|
|
|
return IsInsetChar(getChar(pos))
|
2003-03-12 19:16:42 +00:00
|
|
|
&& getInset(pos)->lyxCode() == Inset::HFILL_CODE;
|
1999-11-15 12:01:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-26 16:42:04 +00:00
|
|
|
bool Paragraph::isInset(pos_type pos) const
|
1999-11-15 12:01:38 +00:00
|
|
|
{
|
2001-06-25 00:06:33 +00:00
|
|
|
return IsInsetChar(getChar(pos));
|
1999-11-15 12:01:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-26 16:42:04 +00:00
|
|
|
bool Paragraph::isNewline(pos_type pos) const
|
1999-11-15 12:01:38 +00:00
|
|
|
{
|
2003-03-12 19:16:42 +00:00
|
|
|
return IsInsetChar(getChar(pos))
|
|
|
|
&& getInset(pos)->lyxCode() == Inset::NEWLINE_CODE;
|
1999-11-15 12:01:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-26 16:42:04 +00:00
|
|
|
bool Paragraph::isSeparator(pos_type pos) const
|
1999-11-15 12:01:38 +00:00
|
|
|
{
|
2001-06-25 00:06:33 +00:00
|
|
|
return IsSeparatorChar(getChar(pos));
|
1999-11-15 12:01:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-26 16:42:04 +00:00
|
|
|
bool Paragraph::isLineSeparator(pos_type pos) const
|
1999-11-15 12:01:38 +00:00
|
|
|
{
|
2002-02-13 10:37:28 +00:00
|
|
|
value_type const c = getChar(pos);
|
|
|
|
return IsLineSeparatorChar(c)
|
2002-03-15 15:28:25 +00:00
|
|
|
|| (IsInsetChar(c) && getInset(pos) &&
|
2002-03-21 17:27:08 +00:00
|
|
|
getInset(pos)->isLineSeparator());
|
1999-11-15 12:01:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-26 16:42:04 +00:00
|
|
|
bool Paragraph::isKomma(pos_type pos) const
|
1999-11-15 12:01:38 +00:00
|
|
|
{
|
2001-06-25 00:06:33 +00:00
|
|
|
return IsKommaChar(getChar(pos));
|
1999-11-15 12:01:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// Used by the spellchecker
|
2001-11-26 16:42:04 +00:00
|
|
|
bool Paragraph::isLetter(pos_type pos) const
|
1999-11-15 12:01:38 +00:00
|
|
|
{
|
2001-06-25 00:06:33 +00:00
|
|
|
value_type const c = getChar(pos);
|
1999-11-15 12:01:38 +00:00
|
|
|
if (IsLetterChar(c))
|
|
|
|
return true;
|
2002-03-21 17:27:08 +00:00
|
|
|
if (isInset(pos))
|
2001-11-13 14:47:35 +00:00
|
|
|
return getInset(pos)->isLetter();
|
1999-11-15 12:01:38 +00:00
|
|
|
// We want to pass the ' and escape chars to ispell
|
2000-11-21 15:46:13 +00:00
|
|
|
string const extra = lyxrc.isp_esc_chars + '\'';
|
2001-11-13 14:47:35 +00:00
|
|
|
return contains(extra, c);
|
1999-11-15 12:01:38 +00:00
|
|
|
}
|
2002-03-21 17:27:08 +00:00
|
|
|
|
|
|
|
|
2002-02-16 15:59:55 +00:00
|
|
|
bool Paragraph::isWord(pos_type pos) const
|
1999-11-15 12:01:38 +00:00
|
|
|
{
|
2001-06-25 00:06:33 +00:00
|
|
|
return IsWordChar(getChar(pos)) ;
|
1999-11-15 12:01:38 +00:00
|
|
|
}
|
2000-02-22 00:36:17 +00:00
|
|
|
|
2000-04-10 21:40:13 +00:00
|
|
|
|
2000-06-08 23:16:16 +00:00
|
|
|
Language const *
|
2002-03-21 17:27:08 +00:00
|
|
|
Paragraph::getParLanguage(BufferParams const & bparams) const
|
2000-03-17 10:14:46 +00:00
|
|
|
{
|
2002-08-10 15:21:07 +00:00
|
|
|
if (!empty()) {
|
2001-08-11 18:31:14 +00:00
|
|
|
return getFirstFontSettings().language();
|
2003-04-16 08:12:22 +00:00
|
|
|
#warning FIXME we should check the prev par as well (Lgb)
|
|
|
|
#if 0
|
|
|
|
} else if (previous_) {
|
2001-03-09 00:56:42 +00:00
|
|
|
return previous_->getParLanguage(bparams);
|
2003-04-16 08:12:22 +00:00
|
|
|
#endif
|
|
|
|
}else
|
2000-10-10 12:36:36 +00:00
|
|
|
return bparams.language;
|
2000-03-17 10:14:46 +00:00
|
|
|
}
|
|
|
|
|
2000-04-10 21:40:13 +00:00
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
bool Paragraph::isRightToLeftPar(BufferParams const & bparams) const
|
2000-03-17 10:14:46 +00:00
|
|
|
{
|
2000-07-21 18:47:54 +00:00
|
|
|
return lyxrc.rtl_support
|
2002-05-05 16:33:19 +00:00
|
|
|
&& getParLanguage(bparams)->RightToLeft()
|
|
|
|
&& !(inInset() && inInset()->owner() &&
|
|
|
|
inInset()->owner()->lyxCode() == Inset::ERT_CODE);
|
2000-03-17 10:14:46 +00:00
|
|
|
}
|
2000-02-22 00:36:17 +00:00
|
|
|
|
2000-04-10 21:40:13 +00:00
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
void Paragraph::changeLanguage(BufferParams const & bparams,
|
2003-04-15 00:11:03 +00:00
|
|
|
Language const * from, Language const * to)
|
2000-02-22 00:36:17 +00:00
|
|
|
{
|
2001-11-26 16:42:04 +00:00
|
|
|
for (pos_type i = 0; i < size(); ++i) {
|
2001-06-25 00:06:33 +00:00
|
|
|
LyXFont font = getFontSettings(bparams, i);
|
2000-04-10 21:40:13 +00:00
|
|
|
if (font.language() == from) {
|
|
|
|
font.setLanguage(to);
|
2001-06-25 00:06:33 +00:00
|
|
|
setFont(i, font);
|
2000-04-10 21:40:13 +00:00
|
|
|
}
|
|
|
|
}
|
2000-02-22 00:36:17 +00:00
|
|
|
}
|
|
|
|
|
2000-04-10 21:40:13 +00:00
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
bool Paragraph::isMultiLingual(BufferParams const & bparams)
|
2000-02-22 00:36:17 +00:00
|
|
|
{
|
2000-10-10 12:36:36 +00:00
|
|
|
Language const * doc_language = bparams.language;
|
2002-03-13 18:23:38 +00:00
|
|
|
Pimpl::FontList::const_iterator cit = pimpl_->fontlist.begin();
|
|
|
|
Pimpl::FontList::const_iterator end = pimpl_->fontlist.end();
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2002-03-13 18:23:38 +00:00
|
|
|
for (; cit != end; ++cit)
|
2001-08-11 18:31:14 +00:00
|
|
|
if (cit->font().language() != ignore_language &&
|
|
|
|
cit->font().language() != latex_language &&
|
2001-07-27 12:03:36 +00:00
|
|
|
cit->font().language() != doc_language)
|
2000-04-10 21:40:13 +00:00
|
|
|
return true;
|
|
|
|
return false;
|
2000-02-22 00:36:17 +00:00
|
|
|
}
|
2000-05-19 16:46:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
// Convert the paragraph to a string.
|
|
|
|
// Used for building the table of contents
|
2002-11-08 01:08:27 +00:00
|
|
|
string const Paragraph::asString(Buffer const * buffer, bool label) const
|
2000-05-19 16:46:01 +00:00
|
|
|
{
|
|
|
|
string s;
|
2001-06-25 00:06:33 +00:00
|
|
|
if (label && !params().labelString().empty())
|
|
|
|
s += params().labelString() + ' ';
|
2000-05-19 16:46:01 +00:00
|
|
|
|
2001-11-26 16:42:04 +00:00
|
|
|
for (pos_type i = 0; i < size(); ++i) {
|
2001-06-25 00:06:33 +00:00
|
|
|
value_type c = getChar(i);
|
2000-05-19 16:46:01 +00:00
|
|
|
if (IsPrintable(c))
|
|
|
|
s += c;
|
|
|
|
else if (c == META_INSET &&
|
2001-06-28 10:25:20 +00:00
|
|
|
getInset(i)->lyxCode() == Inset::MATH_CODE) {
|
2001-07-13 14:03:48 +00:00
|
|
|
ostringstream ost;
|
2001-06-28 10:25:20 +00:00
|
|
|
getInset(i)->ascii(buffer, ost);
|
2002-11-04 02:12:42 +00:00
|
|
|
s += subst(STRCONV(ost.str()),'\n',' ');
|
2000-05-19 16:46:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return s;
|
|
|
|
}
|
2000-05-20 21:37:05 +00:00
|
|
|
|
|
|
|
|
2002-03-21 17:27:08 +00:00
|
|
|
string const Paragraph::asString(Buffer const * buffer,
|
2002-11-08 01:08:27 +00:00
|
|
|
pos_type beg, pos_type end, bool label) const
|
2000-05-20 21:37:05 +00:00
|
|
|
{
|
2003-03-11 15:01:29 +00:00
|
|
|
ostringstream os;
|
2000-07-19 17:16:27 +00:00
|
|
|
|
2001-09-12 10:41:25 +00:00
|
|
|
if (beg == 0 && label && !params().labelString().empty())
|
2003-03-11 15:01:29 +00:00
|
|
|
os << params().labelString() << ' ';
|
2000-05-20 21:37:05 +00:00
|
|
|
|
2001-11-26 16:42:04 +00:00
|
|
|
for (pos_type i = beg; i < end; ++i) {
|
2001-06-25 00:06:33 +00:00
|
|
|
value_type const c = getUChar(buffer->params, i);
|
2000-05-20 21:37:05 +00:00
|
|
|
if (IsPrintable(c))
|
2003-03-11 15:01:29 +00:00
|
|
|
os << c;
|
2003-03-13 10:30:28 +00:00
|
|
|
else if (c == META_INSET)
|
2003-03-11 15:01:29 +00:00
|
|
|
getInset(i)->ascii(buffer, os);
|
2000-05-20 21:37:05 +00:00
|
|
|
}
|
|
|
|
|
2003-03-11 15:01:29 +00:00
|
|
|
return STRCONV(os.str());
|
2000-05-20 21:37:05 +00:00
|
|
|
}
|
2000-06-23 15:02:46 +00:00
|
|
|
|
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
void Paragraph::setInsetOwner(Inset * i)
|
2000-06-23 15:02:46 +00:00
|
|
|
{
|
2001-06-25 00:06:33 +00:00
|
|
|
pimpl_->inset_owner = i;
|
2002-08-11 15:03:52 +00:00
|
|
|
InsetList::iterator it = insetlist.begin();
|
|
|
|
InsetList::iterator end = insetlist.end();
|
2003-03-13 10:30:28 +00:00
|
|
|
for (; it != end; ++it)
|
2002-08-11 15:03:52 +00:00
|
|
|
if (it.getInset())
|
|
|
|
it.getInset()->setOwner(i);
|
2000-06-23 15:02:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
void Paragraph::deleteInsetsLyXText(BufferView * bv)
|
2000-06-23 15:02:46 +00:00
|
|
|
{
|
|
|
|
// then the insets
|
2002-08-11 15:03:52 +00:00
|
|
|
insetlist.deleteInsetsLyXText(bv);
|
2000-06-23 15:02:46 +00:00
|
|
|
}
|
2000-07-14 14:57:20 +00:00
|
|
|
|
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
void Paragraph::resizeInsetsLyXText(BufferView * bv)
|
2000-07-14 14:57:20 +00:00
|
|
|
{
|
|
|
|
// then the insets
|
2002-08-11 15:03:52 +00:00
|
|
|
insetlist.resizeInsetsLyXText(bv);
|
2000-07-14 14:57:20 +00:00
|
|
|
}
|
2001-02-16 09:25:43 +00:00
|
|
|
|
|
|
|
|
2003-04-29 10:39:08 +00:00
|
|
|
void Paragraph::setContentsFromPar(Paragraph const & par)
|
2001-06-25 00:06:33 +00:00
|
|
|
{
|
|
|
|
pimpl_->setContentsFromPar(par);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-02-08 19:18:01 +00:00
|
|
|
void Paragraph::trackChanges(Change::Type type)
|
|
|
|
{
|
|
|
|
pimpl_->trackChanges(type);
|
|
|
|
}
|
|
|
|
|
2003-03-03 21:15:49 +00:00
|
|
|
|
2003-02-08 19:18:01 +00:00
|
|
|
void Paragraph::untrackChanges()
|
|
|
|
{
|
|
|
|
pimpl_->untrackChanges();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Paragraph::cleanChanges()
|
|
|
|
{
|
|
|
|
pimpl_->cleanChanges();
|
|
|
|
}
|
|
|
|
|
2003-03-03 21:15:49 +00:00
|
|
|
|
2003-02-08 19:18:01 +00:00
|
|
|
Change::Type Paragraph::lookupChange(lyx::pos_type pos) const
|
|
|
|
{
|
|
|
|
lyx::Assert(!size() || pos < size());
|
|
|
|
return pimpl_->lookupChange(pos);
|
|
|
|
}
|
|
|
|
|
2003-03-03 21:15:49 +00:00
|
|
|
|
2003-02-08 19:18:01 +00:00
|
|
|
Change const Paragraph::lookupChangeFull(lyx::pos_type pos) const
|
|
|
|
{
|
|
|
|
lyx::Assert(!size() || pos < size());
|
|
|
|
return pimpl_->lookupChangeFull(pos);
|
|
|
|
}
|
|
|
|
|
2003-03-03 21:15:49 +00:00
|
|
|
|
2003-02-08 19:18:01 +00:00
|
|
|
bool Paragraph::isChanged(pos_type start, pos_type end) const
|
|
|
|
{
|
|
|
|
return pimpl_->isChanged(start, end);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool Paragraph::isChangeEdited(pos_type start, pos_type end) const
|
|
|
|
{
|
|
|
|
return pimpl_->isChangeEdited(start, end);
|
|
|
|
}
|
|
|
|
|
2003-03-03 21:15:49 +00:00
|
|
|
|
2003-03-04 19:52:35 +00:00
|
|
|
void Paragraph::setChange(lyx::pos_type pos, Change::Type type)
|
|
|
|
{
|
|
|
|
pimpl_->setChange(pos, type);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-02-08 19:18:01 +00:00
|
|
|
void Paragraph::markErased()
|
|
|
|
{
|
|
|
|
pimpl_->markErased();
|
|
|
|
}
|
|
|
|
|
2003-03-03 21:15:49 +00:00
|
|
|
|
2003-02-08 19:18:01 +00:00
|
|
|
void Paragraph::acceptChange(pos_type start, pos_type end)
|
|
|
|
{
|
|
|
|
return pimpl_->acceptChange(start, end);
|
|
|
|
}
|
|
|
|
|
2003-03-03 21:15:49 +00:00
|
|
|
|
2003-02-08 19:18:01 +00:00
|
|
|
void Paragraph::rejectChange(pos_type start, pos_type end)
|
|
|
|
{
|
|
|
|
return pimpl_->rejectChange(start, end);
|
|
|
|
}
|
|
|
|
|
2003-03-03 21:15:49 +00:00
|
|
|
|
2001-11-27 10:34:16 +00:00
|
|
|
lyx::pos_type Paragraph::size() const
|
2001-06-25 00:06:33 +00:00
|
|
|
{
|
|
|
|
return pimpl_->size();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-08-10 15:21:07 +00:00
|
|
|
bool Paragraph::empty() const
|
|
|
|
{
|
|
|
|
return pimpl_->empty();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-26 16:42:04 +00:00
|
|
|
Paragraph::value_type Paragraph::getChar(pos_type pos) const
|
2001-06-25 00:06:33 +00:00
|
|
|
{
|
|
|
|
return pimpl_->getChar(pos);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int Paragraph::id() const
|
|
|
|
{
|
|
|
|
return pimpl_->id_;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-06-24 20:28:12 +00:00
|
|
|
LyXLayout_ptr const & Paragraph::layout() const
|
2002-03-02 16:39:54 +00:00
|
|
|
{
|
|
|
|
return layout_;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-06-24 20:28:12 +00:00
|
|
|
void Paragraph::layout(LyXLayout_ptr const & new_layout)
|
2001-06-25 00:06:33 +00:00
|
|
|
{
|
2002-03-02 16:39:54 +00:00
|
|
|
layout_ = new_layout;
|
2001-06-25 00:06:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-07-11 12:10:46 +00:00
|
|
|
Inset * Paragraph::inInset() const
|
2001-02-16 09:25:43 +00:00
|
|
|
{
|
2001-06-25 00:06:33 +00:00
|
|
|
return pimpl_->inset_owner;
|
2001-02-16 09:25:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
void Paragraph::clearContents()
|
|
|
|
{
|
|
|
|
pimpl_->clear();
|
|
|
|
}
|
|
|
|
|
2001-11-26 16:42:04 +00:00
|
|
|
void Paragraph::setChar(pos_type pos, value_type c)
|
2001-06-25 00:06:33 +00:00
|
|
|
{
|
|
|
|
pimpl_->setChar(pos, c);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ParagraphParameters & Paragraph::params()
|
|
|
|
{
|
|
|
|
return pimpl_->params;
|
|
|
|
}
|
|
|
|
|
2001-07-17 13:01:41 +00:00
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
ParagraphParameters const & Paragraph::params() const
|
2001-02-16 09:25:43 +00:00
|
|
|
{
|
2001-06-25 00:06:33 +00:00
|
|
|
return pimpl_->params;
|
2001-02-16 09:25:43 +00:00
|
|
|
}
|
2001-06-27 14:10:35 +00:00
|
|
|
|
2001-07-17 13:01:41 +00:00
|
|
|
|
2001-11-29 16:29:30 +00:00
|
|
|
bool Paragraph::isFreeSpacing() const
|
|
|
|
{
|
|
|
|
// for now we just need this, later should we need this in some
|
|
|
|
// other way we can always add a function to Inset::() too.
|
|
|
|
if (pimpl_->inset_owner && pimpl_->inset_owner->owner())
|
|
|
|
return (pimpl_->inset_owner->owner()->lyxCode() == Inset::ERT_CODE);
|
|
|
|
return false;
|
|
|
|
}
|