2003-08-23 00:17:00 +00:00
|
|
|
/**
|
2007-04-26 04:41:58 +00:00
|
|
|
* \file Paragraph.cpp
|
2003-08-23 00:17:00 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
2002-03-21 17:27:08 +00:00
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
* \author Asger Alstrup
|
2008-11-14 15:58:50 +00:00
|
|
|
* \author Lars Gullik Bjønnes
|
2009-11-19 18:28:36 +00:00
|
|
|
* \author Richard Heck (XHTML output)
|
2003-08-23 00:17:00 +00:00
|
|
|
* \author Jean-Marc Lasgouttes
|
|
|
|
* \author Angus Leeming
|
|
|
|
* \author John Levon
|
2008-11-14 15:58:50 +00:00
|
|
|
* \author André Pönitz
|
2003-08-23 00:17:00 +00:00
|
|
|
* \author Dekel Tsur
|
2008-11-14 15:58:50 +00:00
|
|
|
* \author Jürgen Vigna
|
2002-03-21 17:27:08 +00:00
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
2007-04-26 04:41:58 +00:00
|
|
|
#include "Paragraph.h"
|
2003-05-22 22:44:30 +00:00
|
|
|
|
2008-03-07 03:53:21 +00:00
|
|
|
#include "LayoutFile.h"
|
2007-04-26 04:41:58 +00:00
|
|
|
#include "Buffer.h"
|
|
|
|
#include "BufferParams.h"
|
2007-10-18 15:29:51 +00:00
|
|
|
#include "Changes.h"
|
2007-04-26 04:41:58 +00:00
|
|
|
#include "Counters.h"
|
|
|
|
#include "Encoding.h"
|
2007-10-18 15:29:51 +00:00
|
|
|
#include "InsetList.h"
|
2007-04-26 04:41:58 +00:00
|
|
|
#include "Language.h"
|
2005-01-24 17:12:19 +00:00
|
|
|
#include "LaTeXFeatures.h"
|
2007-09-29 20:02:32 +00:00
|
|
|
#include "Layout.h"
|
2007-04-28 12:58:49 +00:00
|
|
|
#include "Length.h"
|
2007-04-29 18:17:15 +00:00
|
|
|
#include "Font.h"
|
2007-10-19 14:35:05 +00:00
|
|
|
#include "FontList.h"
|
2007-04-26 04:41:58 +00:00
|
|
|
#include "LyXRC.h"
|
|
|
|
#include "OutputParams.h"
|
2007-03-18 10:59:16 +00:00
|
|
|
#include "output_latex.h"
|
2009-06-05 17:44:35 +00:00
|
|
|
#include "output_xhtml.h"
|
2007-04-24 10:01:03 +00:00
|
|
|
#include "ParagraphParameters.h"
|
2009-05-01 09:43:40 +00:00
|
|
|
#include "SpellChecker.h"
|
2003-10-30 08:47:16 +00:00
|
|
|
#include "sgml.h"
|
2007-11-07 23:25:08 +00:00
|
|
|
#include "TextClass.h"
|
2007-04-26 04:41:58 +00:00
|
|
|
#include "TexRow.h"
|
2008-02-26 13:07:59 +00:00
|
|
|
#include "Text.h"
|
2009-05-01 09:43:40 +00:00
|
|
|
#include "WordLangTuple.h"
|
2008-02-26 13:07:59 +00:00
|
|
|
#include "WordList.h"
|
2001-12-28 13:26:54 +00:00
|
|
|
|
2007-07-11 16:39:26 +00:00
|
|
|
#include "frontends/alert.h"
|
2006-12-29 23:54:48 +00:00
|
|
|
|
2007-04-25 01:24:38 +00:00
|
|
|
#include "insets/InsetBibitem.h"
|
2007-10-23 18:51:04 +00:00
|
|
|
#include "insets/InsetLabel.h"
|
2010-11-22 07:50:34 +00:00
|
|
|
#include "insets/InsetSpecialChar.h"
|
2001-12-28 13:26:54 +00:00
|
|
|
|
2007-11-29 07:04:28 +00:00
|
|
|
#include "support/debug.h"
|
2009-06-22 16:38:11 +00:00
|
|
|
#include "support/docstring_list.h"
|
2008-09-13 17:12:01 +00:00
|
|
|
#include "support/ExceptionMessage.h"
|
2007-11-29 07:04:28 +00:00
|
|
|
#include "support/gettext.h"
|
2009-06-22 16:38:11 +00:00
|
|
|
#include "support/lassert.h"
|
2001-12-28 13:26:54 +00:00
|
|
|
#include "support/lstrings.h"
|
2003-11-25 17:23:36 +00:00
|
|
|
#include "support/textutils.h"
|
2003-09-06 12:36:58 +00:00
|
|
|
|
2004-07-24 10:55:30 +00:00
|
|
|
#include <sstream>
|
2007-10-24 07:08:55 +00:00
|
|
|
#include <vector>
|
2003-10-30 08:47:16 +00:00
|
|
|
|
2007-12-12 10:16:00 +00:00
|
|
|
using namespace std;
|
2007-12-12 18:57:56 +00:00
|
|
|
using namespace lyx::support;
|
2001-11-27 10:34:16 +00:00
|
|
|
|
2006-12-29 23:54:48 +00:00
|
|
|
namespace lyx {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2007-10-24 07:08:55 +00:00
|
|
|
namespace {
|
|
|
|
/// Inset identifier (above 0x10ffff, for ucs-4)
|
|
|
|
char_type const META_INSET = 0x200001;
|
2010-12-16 08:06:00 +00:00
|
|
|
}
|
2007-04-24 10:01:03 +00:00
|
|
|
|
2010-09-14 05:24:04 +00:00
|
|
|
|
2010-09-19 16:00:32 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// SpellResultRange
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
class SpellResultRange {
|
|
|
|
public:
|
|
|
|
SpellResultRange(FontSpan range, SpellChecker::Result result)
|
|
|
|
: range_(range), result_(result)
|
|
|
|
{}
|
|
|
|
///
|
2010-09-20 06:54:34 +00:00
|
|
|
FontSpan const & range() const { return range_; }
|
2010-09-19 16:00:32 +00:00
|
|
|
///
|
2010-09-20 06:54:34 +00:00
|
|
|
void range(FontSpan const & r) { range_ = r; }
|
2010-09-19 16:00:32 +00:00
|
|
|
///
|
|
|
|
SpellChecker::Result result() const { return result_; }
|
|
|
|
///
|
|
|
|
void result(SpellChecker::Result r) { result_ = r; }
|
|
|
|
///
|
|
|
|
bool inside(pos_type pos) const { return range_.inside(pos); }
|
|
|
|
///
|
2010-09-20 06:54:34 +00:00
|
|
|
bool covered(FontSpan const & r) const
|
2010-09-19 16:00:32 +00:00
|
|
|
{
|
|
|
|
// 1. first of new range inside current range or
|
|
|
|
// 2. last of new range inside current range or
|
|
|
|
// 3. first of current range inside new range or
|
|
|
|
// 4. last of current range inside new range
|
|
|
|
return range_.inside(r.first) || range_.inside(r.last) ||
|
|
|
|
r.inside(range_.first) || r.inside(range_.last);
|
|
|
|
}
|
|
|
|
///
|
|
|
|
void shift(pos_type pos, int offset)
|
|
|
|
{
|
|
|
|
if (range_.first > pos) {
|
|
|
|
range_.first += offset;
|
|
|
|
range_.last += offset;
|
2011-03-16 13:54:36 +00:00
|
|
|
} else if (range_.last >= pos) {
|
2010-09-19 16:00:32 +00:00
|
|
|
range_.last += offset;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
FontSpan range_ ;
|
|
|
|
SpellChecker::Result result_ ;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2010-09-14 05:24:04 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// SpellCheckerState
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
class SpellCheckerState {
|
|
|
|
public:
|
|
|
|
SpellCheckerState() {
|
|
|
|
needs_refresh_ = true;
|
|
|
|
current_change_number_ = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void setRange(FontSpan const fp, SpellChecker::Result state)
|
|
|
|
{
|
2011-01-07 15:20:58 +00:00
|
|
|
Ranges result;
|
|
|
|
RangesIterator et = ranges_.end();
|
|
|
|
RangesIterator it = ranges_.begin();
|
|
|
|
for (; it != et; ++it) {
|
|
|
|
if (!it->covered(fp))
|
|
|
|
result.push_back(SpellResultRange(it->range(), it->result()));
|
|
|
|
else if (state == SpellChecker::WORD_OK) {
|
|
|
|
// trim or split the current misspelled range
|
|
|
|
// store misspelled ranges only
|
|
|
|
FontSpan range = it->range();
|
|
|
|
if (fp.first > range.first) {
|
|
|
|
// misspelled area in front of WORD_OK
|
|
|
|
range.last = fp.first - 1;
|
|
|
|
result.push_back(SpellResultRange(range, it->result()));
|
|
|
|
range = it->range();
|
|
|
|
}
|
|
|
|
if (fp.last < range.last) {
|
|
|
|
// misspelled area after WORD_OK range
|
|
|
|
range.first = fp.last + 1;
|
|
|
|
result.push_back(SpellResultRange(range, it->result()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ranges_ = result;
|
2010-09-14 05:24:04 +00:00
|
|
|
if (state != SpellChecker::WORD_OK)
|
2010-09-19 16:00:32 +00:00
|
|
|
ranges_.push_back(SpellResultRange(fp, state));
|
2010-09-14 05:24:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void increasePosAfterPos(pos_type pos)
|
|
|
|
{
|
|
|
|
correctRangesAfterPos(pos, 1);
|
|
|
|
needsRefresh(pos);
|
|
|
|
}
|
|
|
|
|
|
|
|
void decreasePosAfterPos(pos_type pos)
|
|
|
|
{
|
|
|
|
correctRangesAfterPos(pos, -1);
|
|
|
|
needsRefresh(pos);
|
|
|
|
}
|
|
|
|
|
2010-10-12 19:05:47 +00:00
|
|
|
void refreshLast(pos_type pos)
|
|
|
|
{
|
|
|
|
if (pos < refresh_.last)
|
|
|
|
refresh_.last = pos;
|
|
|
|
}
|
|
|
|
|
2010-09-14 05:24:04 +00:00
|
|
|
SpellChecker::Result getState(pos_type pos) const
|
|
|
|
{
|
|
|
|
SpellChecker::Result result = SpellChecker::WORD_OK;
|
|
|
|
RangesIterator et = ranges_.end();
|
|
|
|
RangesIterator it = ranges_.begin();
|
|
|
|
for (; it != et; ++it) {
|
2010-09-19 16:00:32 +00:00
|
|
|
if(it->inside(pos)) {
|
|
|
|
return it->result();
|
2010-09-14 05:24:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2010-12-22 07:29:16 +00:00
|
|
|
FontSpan const & getRange(pos_type pos) const
|
|
|
|
{
|
2010-12-22 17:09:51 +00:00
|
|
|
/// empty span to indicate mismatch
|
|
|
|
static FontSpan empty_;
|
2010-12-22 07:29:16 +00:00
|
|
|
RangesIterator et = ranges_.end();
|
|
|
|
RangesIterator it = ranges_.begin();
|
|
|
|
for (; it != et; ++it) {
|
|
|
|
if(it->inside(pos)) {
|
|
|
|
return it->range();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return empty_;
|
|
|
|
}
|
|
|
|
|
2010-09-14 05:24:04 +00:00
|
|
|
bool needsRefresh() const {
|
|
|
|
return needs_refresh_;
|
|
|
|
}
|
|
|
|
|
|
|
|
SpellChecker::ChangeNumber currentChangeNumber() const {
|
|
|
|
return current_change_number_;
|
|
|
|
}
|
2010-09-14 14:00:29 +00:00
|
|
|
|
2010-09-14 05:24:04 +00:00
|
|
|
void refreshRange(pos_type & first, pos_type & last) const {
|
|
|
|
first = refresh_.first;
|
|
|
|
last = refresh_.last;
|
|
|
|
}
|
2010-09-14 14:00:29 +00:00
|
|
|
|
2010-09-14 05:24:04 +00:00
|
|
|
void needsRefresh(pos_type pos) {
|
|
|
|
if (needs_refresh_ && pos != -1) {
|
|
|
|
if (pos < refresh_.first)
|
|
|
|
refresh_.first = pos;
|
|
|
|
if (pos > refresh_.last)
|
|
|
|
refresh_.last = pos;
|
|
|
|
} else if (pos != -1) {
|
2011-01-07 15:20:58 +00:00
|
|
|
// init request check for neighbour positions too
|
|
|
|
refresh_.first = pos > 0 ? pos - 1 : 0;
|
|
|
|
// no need for special end of paragraph check
|
|
|
|
refresh_.last = pos + 1;
|
2010-09-14 05:24:04 +00:00
|
|
|
}
|
|
|
|
needs_refresh_ = pos != -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void needsCompleteRefresh(SpellChecker::ChangeNumber change_number) {
|
|
|
|
needs_refresh_ = true;
|
|
|
|
refresh_.first = 0;
|
|
|
|
refresh_.last = -1;
|
|
|
|
current_change_number_ = change_number;
|
|
|
|
}
|
2010-09-14 14:00:29 +00:00
|
|
|
|
2010-09-14 05:24:04 +00:00
|
|
|
private:
|
2010-09-19 16:00:32 +00:00
|
|
|
typedef vector<SpellResultRange> Ranges;
|
2010-09-14 05:24:04 +00:00
|
|
|
typedef Ranges::const_iterator RangesIterator;
|
|
|
|
Ranges ranges_;
|
2010-09-19 16:00:32 +00:00
|
|
|
/// the area of the paragraph with pending spell check
|
2010-09-14 05:24:04 +00:00
|
|
|
FontSpan refresh_;
|
|
|
|
bool needs_refresh_;
|
2010-09-19 16:00:32 +00:00
|
|
|
/// spell state cache version number
|
2010-09-14 05:24:04 +00:00
|
|
|
SpellChecker::ChangeNumber current_change_number_;
|
2010-09-14 14:00:29 +00:00
|
|
|
|
2010-09-19 16:00:32 +00:00
|
|
|
|
2010-09-14 05:24:04 +00:00
|
|
|
void correctRangesAfterPos(pos_type pos, int offset)
|
2010-09-14 14:00:29 +00:00
|
|
|
{
|
2010-09-14 05:24:04 +00:00
|
|
|
RangesIterator et = ranges_.end();
|
2010-09-19 16:00:32 +00:00
|
|
|
Ranges::iterator it = ranges_.begin();
|
2010-09-14 05:24:04 +00:00
|
|
|
for (; it != et; ++it) {
|
2010-09-19 16:00:32 +00:00
|
|
|
it->shift(pos, offset);
|
2010-09-14 05:24:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2007-04-24 10:01:03 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
2007-10-19 08:57:22 +00:00
|
|
|
// Paragraph::Private
|
2007-04-24 10:01:03 +00:00
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////
|
|
|
|
|
2007-10-19 08:57:22 +00:00
|
|
|
class Paragraph::Private
|
|
|
|
{
|
2007-04-24 10:01:03 +00:00
|
|
|
public:
|
|
|
|
///
|
2008-03-06 21:31:27 +00:00
|
|
|
Private(Paragraph * owner, Layout const & layout);
|
2007-04-24 10:01:03 +00:00
|
|
|
/// "Copy constructor"
|
2007-10-19 08:57:22 +00:00
|
|
|
Private(Private const &, Paragraph * owner);
|
2008-07-30 09:07:32 +00:00
|
|
|
/// Copy constructor from \p beg to \p end
|
|
|
|
Private(Private const &, Paragraph * owner, pos_type beg, pos_type end);
|
2007-04-24 10:01:03 +00:00
|
|
|
|
|
|
|
///
|
2007-10-24 07:08:55 +00:00
|
|
|
void insertChar(pos_type pos, char_type c, Change const & change);
|
2007-04-24 10:01:03 +00:00
|
|
|
|
|
|
|
/// Output the surrogate pair formed by \p c and \p next to \p os.
|
|
|
|
/// \return the number of characters written.
|
Introduce a wrapper class for odocstream to help ensuring that no
blank lines may be inadvertently output. This is achieved by using two
special iomanip-like variables (breakln and safebreakln) in the lyx::
namespace. When they are inserted in the stream, a newline is output
only if not already at the beginning of a line. The difference between
breakln and safebreakln is that, if needed, the former outputs '\n'
and the latter "%\n".
In future, the new class will also be used for counting the number of
newlines issued. Even if the infractrure for doing that is already in
place, the counting is essentially still done the old way.
There are still places in the code where the functionality of the
class could be used, most probably. ATM, it is used for InsetTabular,
InsetListings, InsetFloat, and InsetText.
The Comment and GreyedOut insets required a special treatment and a
new InsetLayout parameter (Display) has been introduced. The default
for Display is "true", meaning that the corresponding latex
environment is of "display" type, i.e., it stands on its own, whereas
"false" means that the contents appear inline with the text. The
latter is the case for both Comment and GreyedOut insets.
Mostly, the only visible effects on latex exports should be the
disappearing of some redundant % chars and the appearing/disappearing
of null {} latex groups after a comment or lyxgreyedout environments
(they are related to the presence or absence of a space immediately
after those environments), as well as the fact that math environments
are now started on their own lines.
As a last thing, only the latex code between \begin{document} and
\end{document} goes through the new class, the preamble being directly
output through odocstream, as usual.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@37360 a592a061-630c-0410-9148-cb99ea01b6c8
2011-01-29 02:41:13 +00:00
|
|
|
int latexSurrogatePair(otexstream & os, char_type c, char_type next,
|
2009-07-16 06:19:25 +00:00
|
|
|
OutputParams const &);
|
2007-10-19 08:57:22 +00:00
|
|
|
|
2007-04-24 10:01:03 +00:00
|
|
|
/// Output a space in appropriate formatting (or a surrogate pair
|
|
|
|
/// if the next character is a combining character).
|
|
|
|
/// \return whether a surrogate pair was output.
|
2007-10-26 10:55:49 +00:00
|
|
|
bool simpleTeXBlanks(OutputParams const &,
|
2011-02-10 20:02:48 +00:00
|
|
|
otexstream &,
|
2007-10-22 13:09:16 +00:00
|
|
|
pos_type i,
|
2007-04-24 10:01:03 +00:00
|
|
|
unsigned int & column,
|
2007-04-29 18:17:15 +00:00
|
|
|
Font const & font,
|
2007-04-29 18:58:28 +00:00
|
|
|
Layout const & style);
|
2007-10-19 08:57:22 +00:00
|
|
|
|
2007-10-24 17:22:57 +00:00
|
|
|
/// Output consecutive unicode chars, belonging to the same script as
|
2007-10-31 07:48:13 +00:00
|
|
|
/// specified by the latex macro \p ltx, to \p os starting from \p i.
|
2007-10-12 18:21:51 +00:00
|
|
|
/// \return the number of characters written.
|
Introduce a wrapper class for odocstream to help ensuring that no
blank lines may be inadvertently output. This is achieved by using two
special iomanip-like variables (breakln and safebreakln) in the lyx::
namespace. When they are inserted in the stream, a newline is output
only if not already at the beginning of a line. The difference between
breakln and safebreakln is that, if needed, the former outputs '\n'
and the latter "%\n".
In future, the new class will also be used for counting the number of
newlines issued. Even if the infractrure for doing that is already in
place, the counting is essentially still done the old way.
There are still places in the code where the functionality of the
class could be used, most probably. ATM, it is used for InsetTabular,
InsetListings, InsetFloat, and InsetText.
The Comment and GreyedOut insets required a special treatment and a
new InsetLayout parameter (Display) has been introduced. The default
for Display is "true", meaning that the corresponding latex
environment is of "display" type, i.e., it stands on its own, whereas
"false" means that the contents appear inline with the text. The
latter is the case for both Comment and GreyedOut insets.
Mostly, the only visible effects on latex exports should be the
disappearing of some redundant % chars and the appearing/disappearing
of null {} latex groups after a comment or lyxgreyedout environments
(they are related to the presence or absence of a space immediately
after those environments), as well as the fact that math environments
are now started on their own lines.
As a last thing, only the latex code between \begin{document} and
\end{document} goes through the new class, the preamble being directly
output through odocstream, as usual.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@37360 a592a061-630c-0410-9148-cb99ea01b6c8
2011-01-29 02:41:13 +00:00
|
|
|
int writeScriptChars(otexstream & os, docstring const & ltx,
|
2008-10-19 07:03:44 +00:00
|
|
|
Change const &, Encoding const &, pos_type & i);
|
2007-10-23 13:25:05 +00:00
|
|
|
|
|
|
|
/// This could go to ParagraphParameters if we want to.
|
2011-02-10 20:02:48 +00:00
|
|
|
int startTeXParParams(BufferParams const &, otexstream &,
|
2008-09-18 14:51:16 +00:00
|
|
|
OutputParams const &) const;
|
2007-10-23 13:25:05 +00:00
|
|
|
|
|
|
|
/// This could go to ParagraphParameters if we want to.
|
2011-06-22 16:21:03 +00:00
|
|
|
bool endTeXParParams(BufferParams const &, otexstream &,
|
|
|
|
OutputParams const &) const;
|
2007-10-23 13:25:05 +00:00
|
|
|
|
2007-04-24 10:01:03 +00:00
|
|
|
///
|
2008-02-27 20:43:16 +00:00
|
|
|
void latexInset(BufferParams const &,
|
Introduce a wrapper class for odocstream to help ensuring that no
blank lines may be inadvertently output. This is achieved by using two
special iomanip-like variables (breakln and safebreakln) in the lyx::
namespace. When they are inserted in the stream, a newline is output
only if not already at the beginning of a line. The difference between
breakln and safebreakln is that, if needed, the former outputs '\n'
and the latter "%\n".
In future, the new class will also be used for counting the number of
newlines issued. Even if the infractrure for doing that is already in
place, the counting is essentially still done the old way.
There are still places in the code where the functionality of the
class could be used, most probably. ATM, it is used for InsetTabular,
InsetListings, InsetFloat, and InsetText.
The Comment and GreyedOut insets required a special treatment and a
new InsetLayout parameter (Display) has been introduced. The default
for Display is "true", meaning that the corresponding latex
environment is of "display" type, i.e., it stands on its own, whereas
"false" means that the contents appear inline with the text. The
latter is the case for both Comment and GreyedOut insets.
Mostly, the only visible effects on latex exports should be the
disappearing of some redundant % chars and the appearing/disappearing
of null {} latex groups after a comment or lyxgreyedout environments
(they are related to the presence or absence of a space immediately
after those environments), as well as the fact that math environments
are now started on their own lines.
As a last thing, only the latex code between \begin{document} and
\end{document} goes through the new class, the preamble being directly
output through odocstream, as usual.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@37360 a592a061-630c-0410-9148-cb99ea01b6c8
2011-01-29 02:41:13 +00:00
|
|
|
otexstream &,
|
2011-02-10 20:02:48 +00:00
|
|
|
OutputParams &,
|
2007-05-28 22:27:45 +00:00
|
|
|
Font & running_font,
|
2007-04-29 18:17:15 +00:00
|
|
|
Font & basefont,
|
|
|
|
Font const & outerfont,
|
2007-04-24 10:01:03 +00:00
|
|
|
bool & open_font,
|
2007-05-08 17:46:03 +00:00
|
|
|
Change & running_change,
|
2007-04-29 18:58:28 +00:00
|
|
|
Layout const & style,
|
2007-04-24 10:01:03 +00:00
|
|
|
pos_type & i,
|
2007-10-22 13:09:16 +00:00
|
|
|
unsigned int & column);
|
2007-04-24 10:01:03 +00:00
|
|
|
|
2007-10-20 08:09:55 +00:00
|
|
|
///
|
2007-10-22 13:09:16 +00:00
|
|
|
void latexSpecialChar(
|
Introduce a wrapper class for odocstream to help ensuring that no
blank lines may be inadvertently output. This is achieved by using two
special iomanip-like variables (breakln and safebreakln) in the lyx::
namespace. When they are inserted in the stream, a newline is output
only if not already at the beginning of a line. The difference between
breakln and safebreakln is that, if needed, the former outputs '\n'
and the latter "%\n".
In future, the new class will also be used for counting the number of
newlines issued. Even if the infractrure for doing that is already in
place, the counting is essentially still done the old way.
There are still places in the code where the functionality of the
class could be used, most probably. ATM, it is used for InsetTabular,
InsetListings, InsetFloat, and InsetText.
The Comment and GreyedOut insets required a special treatment and a
new InsetLayout parameter (Display) has been introduced. The default
for Display is "true", meaning that the corresponding latex
environment is of "display" type, i.e., it stands on its own, whereas
"false" means that the contents appear inline with the text. The
latter is the case for both Comment and GreyedOut insets.
Mostly, the only visible effects on latex exports should be the
disappearing of some redundant % chars and the appearing/disappearing
of null {} latex groups after a comment or lyxgreyedout environments
(they are related to the presence or absence of a space immediately
after those environments), as well as the fact that math environments
are now started on their own lines.
As a last thing, only the latex code between \begin{document} and
\end{document} goes through the new class, the preamble being directly
output through odocstream, as usual.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@37360 a592a061-630c-0410-9148-cb99ea01b6c8
2011-01-29 02:41:13 +00:00
|
|
|
otexstream & os,
|
2008-10-19 07:03:44 +00:00
|
|
|
OutputParams const & runparams,
|
|
|
|
Font const & running_font,
|
|
|
|
Change const & running_change,
|
2007-10-22 13:09:16 +00:00
|
|
|
Layout const & style,
|
2007-10-20 08:09:55 +00:00
|
|
|
pos_type & i,
|
2011-02-12 11:03:24 +00:00
|
|
|
pos_type end_pos,
|
2007-10-22 13:09:16 +00:00
|
|
|
unsigned int & column);
|
2007-10-20 08:09:55 +00:00
|
|
|
|
2007-10-23 09:53:06 +00:00
|
|
|
///
|
|
|
|
bool latexSpecialT1(
|
|
|
|
char_type const c,
|
Introduce a wrapper class for odocstream to help ensuring that no
blank lines may be inadvertently output. This is achieved by using two
special iomanip-like variables (breakln and safebreakln) in the lyx::
namespace. When they are inserted in the stream, a newline is output
only if not already at the beginning of a line. The difference between
breakln and safebreakln is that, if needed, the former outputs '\n'
and the latter "%\n".
In future, the new class will also be used for counting the number of
newlines issued. Even if the infractrure for doing that is already in
place, the counting is essentially still done the old way.
There are still places in the code where the functionality of the
class could be used, most probably. ATM, it is used for InsetTabular,
InsetListings, InsetFloat, and InsetText.
The Comment and GreyedOut insets required a special treatment and a
new InsetLayout parameter (Display) has been introduced. The default
for Display is "true", meaning that the corresponding latex
environment is of "display" type, i.e., it stands on its own, whereas
"false" means that the contents appear inline with the text. The
latter is the case for both Comment and GreyedOut insets.
Mostly, the only visible effects on latex exports should be the
disappearing of some redundant % chars and the appearing/disappearing
of null {} latex groups after a comment or lyxgreyedout environments
(they are related to the presence or absence of a space immediately
after those environments), as well as the fact that math environments
are now started on their own lines.
As a last thing, only the latex code between \begin{document} and
\end{document} goes through the new class, the preamble being directly
output through odocstream, as usual.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@37360 a592a061-630c-0410-9148-cb99ea01b6c8
2011-01-29 02:41:13 +00:00
|
|
|
otexstream & os,
|
2008-10-19 07:03:44 +00:00
|
|
|
pos_type i,
|
2007-10-23 09:53:06 +00:00
|
|
|
unsigned int & column);
|
|
|
|
///
|
|
|
|
bool latexSpecialTypewriter(
|
|
|
|
char_type const c,
|
Introduce a wrapper class for odocstream to help ensuring that no
blank lines may be inadvertently output. This is achieved by using two
special iomanip-like variables (breakln and safebreakln) in the lyx::
namespace. When they are inserted in the stream, a newline is output
only if not already at the beginning of a line. The difference between
breakln and safebreakln is that, if needed, the former outputs '\n'
and the latter "%\n".
In future, the new class will also be used for counting the number of
newlines issued. Even if the infractrure for doing that is already in
place, the counting is essentially still done the old way.
There are still places in the code where the functionality of the
class could be used, most probably. ATM, it is used for InsetTabular,
InsetListings, InsetFloat, and InsetText.
The Comment and GreyedOut insets required a special treatment and a
new InsetLayout parameter (Display) has been introduced. The default
for Display is "true", meaning that the corresponding latex
environment is of "display" type, i.e., it stands on its own, whereas
"false" means that the contents appear inline with the text. The
latter is the case for both Comment and GreyedOut insets.
Mostly, the only visible effects on latex exports should be the
disappearing of some redundant % chars and the appearing/disappearing
of null {} latex groups after a comment or lyxgreyedout environments
(they are related to the presence or absence of a space immediately
after those environments), as well as the fact that math environments
are now started on their own lines.
As a last thing, only the latex code between \begin{document} and
\end{document} goes through the new class, the preamble being directly
output through odocstream, as usual.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@37360 a592a061-630c-0410-9148-cb99ea01b6c8
2011-01-29 02:41:13 +00:00
|
|
|
otexstream & os,
|
2008-10-19 07:03:44 +00:00
|
|
|
pos_type i,
|
2007-10-23 09:53:06 +00:00
|
|
|
unsigned int & column);
|
|
|
|
///
|
|
|
|
bool latexSpecialPhrase(
|
Introduce a wrapper class for odocstream to help ensuring that no
blank lines may be inadvertently output. This is achieved by using two
special iomanip-like variables (breakln and safebreakln) in the lyx::
namespace. When they are inserted in the stream, a newline is output
only if not already at the beginning of a line. The difference between
breakln and safebreakln is that, if needed, the former outputs '\n'
and the latter "%\n".
In future, the new class will also be used for counting the number of
newlines issued. Even if the infractrure for doing that is already in
place, the counting is essentially still done the old way.
There are still places in the code where the functionality of the
class could be used, most probably. ATM, it is used for InsetTabular,
InsetListings, InsetFloat, and InsetText.
The Comment and GreyedOut insets required a special treatment and a
new InsetLayout parameter (Display) has been introduced. The default
for Display is "true", meaning that the corresponding latex
environment is of "display" type, i.e., it stands on its own, whereas
"false" means that the contents appear inline with the text. The
latter is the case for both Comment and GreyedOut insets.
Mostly, the only visible effects on latex exports should be the
disappearing of some redundant % chars and the appearing/disappearing
of null {} latex groups after a comment or lyxgreyedout environments
(they are related to the presence or absence of a space immediately
after those environments), as well as the fact that math environments
are now started on their own lines.
As a last thing, only the latex code between \begin{document} and
\end{document} goes through the new class, the preamble being directly
output through odocstream, as usual.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@37360 a592a061-630c-0410-9148-cb99ea01b6c8
2011-01-29 02:41:13 +00:00
|
|
|
otexstream & os,
|
2007-10-23 09:53:06 +00:00
|
|
|
pos_type & i,
|
2011-02-12 11:03:24 +00:00
|
|
|
pos_type end_pos,
|
2007-11-03 17:07:37 +00:00
|
|
|
unsigned int & column,
|
2008-10-19 07:03:44 +00:00
|
|
|
OutputParams const & runparams);
|
2007-10-23 09:53:06 +00:00
|
|
|
|
2007-04-24 10:01:03 +00:00
|
|
|
///
|
2009-11-17 22:18:28 +00:00
|
|
|
void validate(LaTeXFeatures & features) const;
|
2007-04-24 10:01:03 +00:00
|
|
|
|
2007-10-24 15:32:43 +00:00
|
|
|
/// Checks if the paragraph contains only text and no inset or font change.
|
|
|
|
bool onlyText(Buffer const & buf, Font const & outerfont,
|
|
|
|
pos_type initial) const;
|
|
|
|
|
2007-10-19 08:57:22 +00:00
|
|
|
/// match a string against a particular point in the paragraph
|
2007-12-12 19:28:07 +00:00
|
|
|
bool isTextAt(string const & str, pos_type pos) const;
|
2009-08-09 14:33:35 +00:00
|
|
|
|
2010-09-29 19:31:16 +00:00
|
|
|
/// a vector of speller skip positions
|
|
|
|
typedef vector<FontSpan> SkipPositions;
|
|
|
|
typedef SkipPositions::const_iterator SkipPositionsIterator;
|
2010-09-14 05:24:04 +00:00
|
|
|
|
2010-09-29 19:31:16 +00:00
|
|
|
void appendSkipPosition(SkipPositions & skips, pos_type const pos) const;
|
|
|
|
|
2010-09-14 05:24:04 +00:00
|
|
|
Language * getSpellLanguage(pos_type const from) const;
|
|
|
|
|
|
|
|
Language * locateSpellRange(pos_type & from, pos_type & to,
|
2010-09-29 19:31:16 +00:00
|
|
|
SkipPositions & skips) const;
|
2010-09-14 05:24:04 +00:00
|
|
|
|
|
|
|
bool hasSpellerChange() const {
|
|
|
|
SpellChecker::ChangeNumber speller_change_number = 0;
|
|
|
|
if (theSpellChecker())
|
|
|
|
speller_change_number = theSpellChecker()->changeNumber();
|
|
|
|
return speller_change_number > speller_state_.currentChangeNumber();
|
|
|
|
}
|
|
|
|
|
2010-12-07 00:13:19 +00:00
|
|
|
bool ignoreWord(docstring const & word) const ;
|
|
|
|
|
2010-09-14 05:24:04 +00:00
|
|
|
void setMisspelled(pos_type from, pos_type to, SpellChecker::Result state)
|
2010-08-26 11:47:27 +00:00
|
|
|
{
|
|
|
|
pos_type textsize = owner_->size();
|
|
|
|
// check for sane arguments
|
2011-01-28 07:01:38 +00:00
|
|
|
if (to <= from || from >= textsize)
|
2010-09-14 05:24:04 +00:00
|
|
|
return;
|
2011-01-28 07:01:38 +00:00
|
|
|
FontSpan fp = FontSpan(from, to - 1);
|
2010-09-14 05:24:04 +00:00
|
|
|
speller_state_.setRange(fp, state);
|
2010-08-26 11:47:27 +00:00
|
|
|
}
|
2009-08-09 14:33:35 +00:00
|
|
|
|
2010-09-14 05:24:04 +00:00
|
|
|
void requestSpellCheck(pos_type pos) {
|
2011-08-20 13:48:19 +00:00
|
|
|
if (pos == -1)
|
|
|
|
speller_state_.needsCompleteRefresh(speller_state_.currentChangeNumber());
|
|
|
|
else
|
|
|
|
speller_state_.needsRefresh(pos);
|
2010-09-14 05:24:04 +00:00
|
|
|
}
|
2010-09-14 14:00:29 +00:00
|
|
|
|
2010-09-14 05:24:04 +00:00
|
|
|
void readySpellCheck() {
|
|
|
|
speller_state_.needsRefresh(-1);
|
|
|
|
}
|
2010-09-14 14:00:29 +00:00
|
|
|
|
2010-09-14 05:24:04 +00:00
|
|
|
bool needsSpellCheck() const
|
|
|
|
{
|
|
|
|
return speller_state_.needsRefresh();
|
|
|
|
}
|
2010-09-14 14:00:29 +00:00
|
|
|
|
2010-09-14 05:24:04 +00:00
|
|
|
void rangeOfSpellCheck(pos_type & first, pos_type & last) const
|
|
|
|
{
|
|
|
|
speller_state_.refreshRange(first, last);
|
|
|
|
if (last == -1) {
|
|
|
|
last = owner_->size();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
pos_type endpos = last;
|
|
|
|
owner_->locateWord(first, endpos, WHOLE_WORD);
|
|
|
|
if (endpos < last) {
|
|
|
|
endpos = last;
|
|
|
|
owner_->locateWord(last, endpos, WHOLE_WORD);
|
|
|
|
}
|
|
|
|
last = endpos;
|
|
|
|
}
|
2010-09-14 12:48:03 +00:00
|
|
|
|
2010-09-29 19:31:16 +00:00
|
|
|
int countSkips(SkipPositionsIterator & it, SkipPositionsIterator const et,
|
2010-09-14 14:01:44 +00:00
|
|
|
int & start) const
|
2010-09-14 12:48:03 +00:00
|
|
|
{
|
2010-09-29 19:31:16 +00:00
|
|
|
int numskips = 0;
|
|
|
|
while (it != et && it->first < start) {
|
|
|
|
int skip = it->last - it->first + 1;
|
|
|
|
start += skip;
|
|
|
|
numskips += skip;
|
2010-09-14 12:48:03 +00:00
|
|
|
++it;
|
|
|
|
}
|
2010-09-29 19:31:16 +00:00
|
|
|
return numskips;
|
2010-09-14 12:48:03 +00:00
|
|
|
}
|
|
|
|
|
2010-09-14 05:24:04 +00:00
|
|
|
void markMisspelledWords(pos_type const & first, pos_type const & last,
|
|
|
|
SpellChecker::Result result,
|
|
|
|
docstring const & word,
|
2010-09-29 19:31:16 +00:00
|
|
|
SkipPositions const & skips);
|
2010-09-14 14:00:29 +00:00
|
|
|
|
2009-08-09 17:00:26 +00:00
|
|
|
InsetCode ownerCode() const
|
2009-08-09 14:33:35 +00:00
|
|
|
{
|
|
|
|
return inset_owner_ ? inset_owner_->lyxCode() : NO_CODE;
|
|
|
|
}
|
2010-09-14 14:00:29 +00:00
|
|
|
|
2007-10-19 08:57:22 +00:00
|
|
|
/// Which Paragraph owns us?
|
|
|
|
Paragraph * owner_;
|
|
|
|
|
|
|
|
/// In which Inset?
|
2008-09-13 17:01:54 +00:00
|
|
|
Inset const * inset_owner_;
|
2007-10-19 08:57:22 +00:00
|
|
|
|
|
|
|
///
|
|
|
|
FontList fontlist_;
|
|
|
|
|
2007-04-24 10:01:03 +00:00
|
|
|
///
|
2010-01-05 13:16:55 +00:00
|
|
|
int id_;
|
|
|
|
|
2007-04-24 10:01:03 +00:00
|
|
|
///
|
2007-10-19 08:57:22 +00:00
|
|
|
ParagraphParameters params_;
|
2007-04-24 10:01:03 +00:00
|
|
|
|
|
|
|
/// for recording and looking up changes
|
|
|
|
Changes changes_;
|
|
|
|
|
2007-10-18 15:29:51 +00:00
|
|
|
///
|
|
|
|
InsetList insetlist_;
|
2007-10-23 13:25:05 +00:00
|
|
|
|
|
|
|
/// end of label
|
|
|
|
pos_type begin_of_body_;
|
2007-10-24 07:08:55 +00:00
|
|
|
|
2007-10-24 08:50:58 +00:00
|
|
|
typedef docstring TextContainer;
|
2007-10-24 07:08:55 +00:00
|
|
|
///
|
|
|
|
TextContainer text_;
|
2010-09-14 14:00:29 +00:00
|
|
|
|
2009-12-18 14:48:56 +00:00
|
|
|
typedef set<docstring> Words;
|
2010-06-09 21:02:47 +00:00
|
|
|
typedef map<Language, Words> LangWordsMap;
|
2008-02-26 13:07:59 +00:00
|
|
|
///
|
2010-06-09 21:02:47 +00:00
|
|
|
LangWordsMap words_;
|
2008-03-06 21:31:27 +00:00
|
|
|
///
|
|
|
|
Layout const * layout_;
|
2010-09-14 05:24:04 +00:00
|
|
|
///
|
|
|
|
SpellCheckerState speller_state_;
|
2007-04-24 10:01:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
struct special_phrase {
|
|
|
|
string phrase;
|
|
|
|
docstring macro;
|
|
|
|
bool builtin;
|
|
|
|
};
|
|
|
|
|
|
|
|
special_phrase const special_phrases[] = {
|
2007-11-03 17:07:37 +00:00
|
|
|
{ "LyX", from_ascii("\\LyX{}"), false },
|
|
|
|
{ "TeX", from_ascii("\\TeX{}"), true },
|
|
|
|
{ "LaTeX2e", from_ascii("\\LaTeXe{}"), true },
|
|
|
|
{ "LaTeX", from_ascii("\\LaTeX{}"), true },
|
2007-04-24 10:01:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
size_t const phrases_nr = sizeof(special_phrases)/sizeof(special_phrase);
|
|
|
|
|
|
|
|
} // namespace anon
|
|
|
|
|
|
|
|
|
2008-03-06 21:31:27 +00:00
|
|
|
Paragraph::Private::Private(Paragraph * owner, Layout const & layout)
|
2010-01-05 13:16:55 +00:00
|
|
|
: owner_(owner), inset_owner_(0), id_(-1), begin_of_body_(0), layout_(&layout)
|
2007-04-24 10:01:03 +00:00
|
|
|
{
|
2007-10-24 07:08:55 +00:00
|
|
|
text_.reserve(100);
|
2007-04-24 10:01:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-01-06 09:12:49 +00:00
|
|
|
// Initialization of the counter for the paragraph id's,
|
|
|
|
//
|
|
|
|
// FIXME: There should be a more intelligent way to generate and use the
|
|
|
|
// paragraph ids per buffer instead a global static counter for all InsetText
|
|
|
|
// in the running program.
|
|
|
|
static int paragraph_id = -1;
|
|
|
|
|
2007-10-19 08:57:22 +00:00
|
|
|
Paragraph::Private::Private(Private const & p, Paragraph * owner)
|
2010-09-14 14:00:29 +00:00
|
|
|
: owner_(owner), inset_owner_(p.inset_owner_), fontlist_(p.fontlist_),
|
2010-01-06 09:12:49 +00:00
|
|
|
params_(p.params_), changes_(p.changes_), insetlist_(p.insetlist_),
|
2008-03-06 21:31:27 +00:00
|
|
|
begin_of_body_(p.begin_of_body_), text_(p.text_), words_(p.words_),
|
2010-09-16 07:42:08 +00:00
|
|
|
layout_(p.layout_)
|
2007-04-24 10:01:03 +00:00
|
|
|
{
|
2010-01-06 09:12:49 +00:00
|
|
|
id_ = ++paragraph_id;
|
2010-09-14 05:24:04 +00:00
|
|
|
requestSpellCheck(p.text_.size());
|
2007-04-24 10:01:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-07-30 09:07:32 +00:00
|
|
|
Paragraph::Private::Private(Private const & p, Paragraph * owner,
|
|
|
|
pos_type beg, pos_type end)
|
2008-08-07 08:50:41 +00:00
|
|
|
: owner_(owner), inset_owner_(p.inset_owner_),
|
2008-07-30 09:07:32 +00:00
|
|
|
params_(p.params_), changes_(p.changes_),
|
2008-08-13 13:25:36 +00:00
|
|
|
insetlist_(p.insetlist_, beg, end),
|
2008-07-30 09:07:32 +00:00
|
|
|
begin_of_body_(p.begin_of_body_), words_(p.words_),
|
2010-09-16 07:42:08 +00:00
|
|
|
layout_(p.layout_)
|
2008-07-30 09:07:32 +00:00
|
|
|
{
|
2010-01-06 09:12:49 +00:00
|
|
|
id_ = ++paragraph_id;
|
2008-07-30 09:07:32 +00:00
|
|
|
if (beg >= pos_type(p.text_.size()))
|
|
|
|
return;
|
|
|
|
text_ = p.text_.substr(beg, end - beg);
|
2008-08-07 08:50:41 +00:00
|
|
|
|
2008-07-30 09:07:32 +00:00
|
|
|
FontList::const_iterator fcit = fontlist_.begin();
|
|
|
|
FontList::const_iterator fend = fontlist_.end();
|
|
|
|
for (; fcit != fend; ++fcit) {
|
|
|
|
if (fcit->pos() < beg)
|
|
|
|
continue;
|
|
|
|
if (fcit->pos() >= end) {
|
|
|
|
// Add last entry in the fontlist_.
|
|
|
|
fontlist_.set(text_.size() - 1, fcit->font());
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// Add a new entry in the fontlist_.
|
|
|
|
fontlist_.set(fcit->pos() - beg, fcit->font());
|
|
|
|
}
|
2010-09-14 05:24:04 +00:00
|
|
|
requestSpellCheck(p.text_.size());
|
2008-07-30 09:07:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-09-30 11:06:34 +00:00
|
|
|
void Paragraph::addChangesToToc(DocIterator const & cdit,
|
|
|
|
Buffer const & buf) const
|
|
|
|
{
|
|
|
|
d->changes_.addToToc(cdit, buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-08-04 22:50:36 +00:00
|
|
|
bool Paragraph::isDeleted(pos_type start, pos_type end) const
|
2009-05-14 22:21:05 +00:00
|
|
|
{
|
|
|
|
LASSERT(start >= 0 && start <= size(), /**/);
|
|
|
|
LASSERT(end > start && end <= size() + 1, /**/);
|
|
|
|
|
2009-08-04 22:50:36 +00:00
|
|
|
return d->changes_.isDeleted(start, end);
|
2009-05-14 22:21:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-19 08:57:22 +00:00
|
|
|
bool Paragraph::isChanged(pos_type start, pos_type end) const
|
2007-04-24 10:01:03 +00:00
|
|
|
{
|
2008-04-10 21:49:34 +00:00
|
|
|
LASSERT(start >= 0 && start <= size(), /**/);
|
|
|
|
LASSERT(end > start && end <= size() + 1, /**/);
|
2007-04-24 10:01:03 +00:00
|
|
|
|
2007-10-19 08:57:22 +00:00
|
|
|
return d->changes_.isChanged(start, end);
|
2007-04-24 10:01:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-01-12 21:38:51 +00:00
|
|
|
bool Paragraph::isMergedOnEndOfParDeletion(bool trackChanges) const
|
|
|
|
{
|
2007-04-24 10:01:03 +00:00
|
|
|
// keep the logic here in sync with the logic of eraseChars()
|
2008-01-12 21:38:51 +00:00
|
|
|
if (!trackChanges)
|
2007-04-24 10:01:03 +00:00
|
|
|
return true;
|
|
|
|
|
2008-01-12 21:38:51 +00:00
|
|
|
Change const change = d->changes_.lookup(size());
|
2009-08-04 22:15:17 +00:00
|
|
|
return change.inserted() && change.currentAuthor();
|
2007-04-24 10:01:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-19 08:57:22 +00:00
|
|
|
void Paragraph::setChange(Change const & change)
|
2007-04-24 10:01:03 +00:00
|
|
|
{
|
|
|
|
// beware of the imaginary end-of-par character!
|
2007-10-19 08:57:22 +00:00
|
|
|
d->changes_.set(change, 0, size() + 1);
|
2007-04-24 10:01:03 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Propagate the change recursively - but not in case of DELETED!
|
|
|
|
*
|
|
|
|
* Imagine that your co-author makes changes in an existing inset. He
|
|
|
|
* sends your document to you and you come to the conclusion that the
|
|
|
|
* inset should go completely. If you erase it, LyX must not delete all
|
|
|
|
* text within the inset. Otherwise, the change tracked insertions of
|
|
|
|
* your co-author get lost and there is no way to restore them later.
|
|
|
|
*
|
|
|
|
* Conclusion: An inset's content should remain untouched if you delete it
|
|
|
|
*/
|
|
|
|
|
2009-08-04 22:15:17 +00:00
|
|
|
if (!change.deleted()) {
|
2007-04-24 10:01:03 +00:00
|
|
|
for (pos_type pos = 0; pos < size(); ++pos) {
|
2008-02-09 10:41:49 +00:00
|
|
|
if (Inset * inset = getInset(pos))
|
|
|
|
inset->setChange(change);
|
2007-04-24 10:01:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-19 08:57:22 +00:00
|
|
|
void Paragraph::setChange(pos_type pos, Change const & change)
|
2007-04-24 10:01:03 +00:00
|
|
|
{
|
2008-04-10 21:49:34 +00:00
|
|
|
LASSERT(pos >= 0 && pos <= size(), /**/);
|
2007-10-19 08:57:22 +00:00
|
|
|
d->changes_.set(change, pos);
|
2007-04-24 10:01:03 +00:00
|
|
|
|
|
|
|
// see comment in setChange(Change const &) above
|
2009-08-04 22:15:17 +00:00
|
|
|
if (!change.deleted() && pos < size())
|
2008-02-09 10:41:49 +00:00
|
|
|
if (Inset * inset = getInset(pos))
|
|
|
|
inset->setChange(change);
|
2007-04-24 10:01:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-19 08:57:22 +00:00
|
|
|
Change const & Paragraph::lookupChange(pos_type pos) const
|
2007-04-24 10:01:03 +00:00
|
|
|
{
|
2008-04-10 21:49:34 +00:00
|
|
|
LASSERT(pos >= 0 && pos <= size(), /**/);
|
2007-10-19 08:57:22 +00:00
|
|
|
return d->changes_.lookup(pos);
|
2007-04-24 10:01:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-07-16 08:37:32 +00:00
|
|
|
void Paragraph::acceptChanges(pos_type start, pos_type end)
|
2007-04-24 10:01:03 +00:00
|
|
|
{
|
2008-04-10 21:49:34 +00:00
|
|
|
LASSERT(start >= 0 && start <= size(), /**/);
|
|
|
|
LASSERT(end > start && end <= size() + 1, /**/);
|
2007-04-24 10:01:03 +00:00
|
|
|
|
|
|
|
for (pos_type pos = start; pos < end; ++pos) {
|
|
|
|
switch (lookupChange(pos).type) {
|
|
|
|
case Change::UNCHANGED:
|
|
|
|
// accept changes in nested inset
|
2008-02-09 10:41:49 +00:00
|
|
|
if (Inset * inset = getInset(pos))
|
2009-07-16 08:37:32 +00:00
|
|
|
inset->acceptChanges();
|
2007-04-24 10:01:03 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case Change::INSERTED:
|
2007-10-19 08:57:22 +00:00
|
|
|
d->changes_.set(Change(Change::UNCHANGED), pos);
|
2007-04-24 10:01:03 +00:00
|
|
|
// also accept changes in nested inset
|
2008-02-09 10:41:49 +00:00
|
|
|
if (Inset * inset = getInset(pos))
|
2009-07-16 08:37:32 +00:00
|
|
|
inset->acceptChanges();
|
2007-04-24 10:01:03 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case Change::DELETED:
|
|
|
|
// Suppress access to non-existent
|
|
|
|
// "end-of-paragraph char"
|
|
|
|
if (pos < size()) {
|
|
|
|
eraseChar(pos, false);
|
|
|
|
--end;
|
|
|
|
--pos;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-07-16 08:37:32 +00:00
|
|
|
void Paragraph::rejectChanges(pos_type start, pos_type end)
|
2007-04-24 10:01:03 +00:00
|
|
|
{
|
2008-04-10 21:49:34 +00:00
|
|
|
LASSERT(start >= 0 && start <= size(), /**/);
|
|
|
|
LASSERT(end > start && end <= size() + 1, /**/);
|
2007-04-24 10:01:03 +00:00
|
|
|
|
|
|
|
for (pos_type pos = start; pos < end; ++pos) {
|
|
|
|
switch (lookupChange(pos).type) {
|
|
|
|
case Change::UNCHANGED:
|
|
|
|
// reject changes in nested inset
|
2008-02-09 10:41:49 +00:00
|
|
|
if (Inset * inset = getInset(pos))
|
2009-07-16 08:37:32 +00:00
|
|
|
inset->rejectChanges();
|
2007-04-24 10:01:03 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case Change::INSERTED:
|
|
|
|
// Suppress access to non-existent
|
|
|
|
// "end-of-paragraph char"
|
|
|
|
if (pos < size()) {
|
|
|
|
eraseChar(pos, false);
|
|
|
|
--end;
|
|
|
|
--pos;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Change::DELETED:
|
2007-10-19 08:57:22 +00:00
|
|
|
d->changes_.set(Change(Change::UNCHANGED), pos);
|
2007-04-24 10:01:03 +00:00
|
|
|
|
|
|
|
// Do NOT reject changes within a deleted inset!
|
|
|
|
// There may be insertions of a co-author inside of it!
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-24 07:08:55 +00:00
|
|
|
void Paragraph::Private::insertChar(pos_type pos, char_type c,
|
2007-10-19 08:57:22 +00:00
|
|
|
Change const & change)
|
2007-04-24 10:01:03 +00:00
|
|
|
{
|
2008-04-10 21:49:34 +00:00
|
|
|
LASSERT(pos >= 0 && pos <= int(text_.size()), /**/);
|
2007-04-24 10:01:03 +00:00
|
|
|
|
|
|
|
// track change
|
|
|
|
changes_.insert(change, pos);
|
|
|
|
|
|
|
|
// This is actually very common when parsing buffers (and
|
|
|
|
// maybe inserting ascii text)
|
2007-10-31 07:48:13 +00:00
|
|
|
if (pos == pos_type(text_.size())) {
|
2007-04-24 10:01:03 +00:00
|
|
|
// when appending characters, no need to update tables
|
2007-10-24 07:08:55 +00:00
|
|
|
text_.push_back(c);
|
2010-09-14 05:24:04 +00:00
|
|
|
// but we want spell checking
|
|
|
|
requestSpellCheck(pos);
|
2007-04-24 10:01:03 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2007-10-24 07:08:55 +00:00
|
|
|
text_.insert(text_.begin() + pos, c);
|
2007-04-24 10:01:03 +00:00
|
|
|
|
|
|
|
// Update the font table.
|
2007-10-19 14:35:05 +00:00
|
|
|
fontlist_.increasePosAfterPos(pos);
|
2007-04-24 10:01:03 +00:00
|
|
|
|
|
|
|
// Update the insets
|
2007-10-18 15:29:51 +00:00
|
|
|
insetlist_.increasePosAfterPos(pos);
|
2010-09-14 14:00:29 +00:00
|
|
|
|
2010-09-14 05:24:04 +00:00
|
|
|
// Update list of misspelled positions
|
|
|
|
speller_state_.increasePosAfterPos(pos);
|
2007-04-24 10:01:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-10-08 14:03:15 +00:00
|
|
|
bool Paragraph::insertInset(pos_type pos, Inset * inset,
|
2007-05-28 22:27:45 +00:00
|
|
|
Change const & change)
|
2007-04-24 10:01:03 +00:00
|
|
|
{
|
2008-04-10 21:49:34 +00:00
|
|
|
LASSERT(inset, /**/);
|
|
|
|
LASSERT(pos >= 0 && pos <= size(), /**/);
|
2007-04-24 10:01:03 +00:00
|
|
|
|
2008-10-08 14:03:15 +00:00
|
|
|
// Paragraph::insertInset() can be used in cut/copy/paste operation where
|
|
|
|
// d->inset_owner_ is not set yet.
|
2008-10-08 14:06:20 +00:00
|
|
|
if (d->inset_owner_ && !d->inset_owner_->insetAllowed(inset->lyxCode()))
|
2008-10-08 14:03:15 +00:00
|
|
|
return false;
|
|
|
|
|
2007-10-19 08:57:22 +00:00
|
|
|
d->insertChar(pos, META_INSET, change);
|
2008-04-10 21:49:34 +00:00
|
|
|
LASSERT(d->text_[pos] == META_INSET, /**/);
|
2007-04-24 10:01:03 +00:00
|
|
|
|
2007-10-18 15:29:51 +00:00
|
|
|
// Add a new entry in the insetlist_.
|
2007-10-19 08:57:22 +00:00
|
|
|
d->insetlist_.insert(inset, pos);
|
2010-09-14 05:24:04 +00:00
|
|
|
|
|
|
|
// Some insets require run of spell checker
|
|
|
|
requestSpellCheck(pos);
|
2008-10-08 14:03:15 +00:00
|
|
|
return true;
|
2007-04-24 10:01:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-19 08:57:22 +00:00
|
|
|
bool Paragraph::eraseChar(pos_type pos, bool trackChanges)
|
2007-04-24 10:01:03 +00:00
|
|
|
{
|
2008-09-15 16:07:53 +00:00
|
|
|
LASSERT(pos >= 0 && pos <= size(), return false);
|
2007-04-24 10:01:03 +00:00
|
|
|
|
|
|
|
// keep the logic here in sync with the logic of isMergedOnEndOfParDeletion()
|
|
|
|
|
|
|
|
if (trackChanges) {
|
2007-10-19 08:57:22 +00:00
|
|
|
Change change = d->changes_.lookup(pos);
|
2007-04-24 10:01:03 +00:00
|
|
|
|
2007-05-28 22:27:45 +00:00
|
|
|
// set the character to DELETED if
|
2007-04-24 10:01:03 +00:00
|
|
|
// a) it was previously unchanged or
|
|
|
|
// b) it was inserted by a co-author
|
|
|
|
|
2009-08-04 22:15:17 +00:00
|
|
|
if (!change.changed() ||
|
|
|
|
(change.inserted() && !change.currentAuthor())) {
|
2007-04-24 10:01:03 +00:00
|
|
|
setChange(pos, Change(Change::DELETED));
|
2010-09-29 19:32:41 +00:00
|
|
|
// request run of spell checker
|
|
|
|
requestSpellCheck(pos);
|
2007-04-24 10:01:03 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-08-04 22:15:17 +00:00
|
|
|
if (change.deleted())
|
2007-04-24 10:01:03 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Don't physically access the imaginary end-of-paragraph character.
|
|
|
|
// eraseChar() can only mark it as DELETED. A physical deletion of
|
|
|
|
// end-of-par must be handled externally.
|
|
|
|
if (pos == size()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// track change
|
2007-10-19 08:57:22 +00:00
|
|
|
d->changes_.erase(pos);
|
2007-04-24 10:01:03 +00:00
|
|
|
|
|
|
|
// if it is an inset, delete the inset entry
|
2007-10-24 07:08:55 +00:00
|
|
|
if (d->text_[pos] == META_INSET)
|
2007-10-19 08:57:22 +00:00
|
|
|
d->insetlist_.erase(pos);
|
2007-04-24 10:01:03 +00:00
|
|
|
|
2007-10-24 07:08:55 +00:00
|
|
|
d->text_.erase(d->text_.begin() + pos);
|
2007-04-24 10:01:03 +00:00
|
|
|
|
2007-10-19 14:35:05 +00:00
|
|
|
// Update the fontlist_
|
|
|
|
d->fontlist_.erase(pos);
|
2007-04-24 10:01:03 +00:00
|
|
|
|
2007-10-18 15:29:51 +00:00
|
|
|
// Update the insetlist_
|
2007-10-19 08:57:22 +00:00
|
|
|
d->insetlist_.decreasePosAfterPos(pos);
|
2007-04-24 10:01:03 +00:00
|
|
|
|
2010-09-14 05:24:04 +00:00
|
|
|
// Update list of misspelled positions
|
|
|
|
d->speller_state_.decreasePosAfterPos(pos);
|
2010-10-12 19:05:47 +00:00
|
|
|
d->speller_state_.refreshLast(size());
|
2010-09-14 05:24:04 +00:00
|
|
|
|
2007-04-24 10:01:03 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-19 08:57:22 +00:00
|
|
|
int Paragraph::eraseChars(pos_type start, pos_type end, bool trackChanges)
|
2007-04-24 10:01:03 +00:00
|
|
|
{
|
2008-04-10 21:49:34 +00:00
|
|
|
LASSERT(start >= 0 && start <= size(), /**/);
|
|
|
|
LASSERT(end >= start && end <= size() + 1, /**/);
|
2007-04-24 10:01:03 +00:00
|
|
|
|
|
|
|
pos_type i = start;
|
|
|
|
for (pos_type count = end - start; count; --count) {
|
|
|
|
if (!eraseChar(i, trackChanges))
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
return end - i;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
Introduce a wrapper class for odocstream to help ensuring that no
blank lines may be inadvertently output. This is achieved by using two
special iomanip-like variables (breakln and safebreakln) in the lyx::
namespace. When they are inserted in the stream, a newline is output
only if not already at the beginning of a line. The difference between
breakln and safebreakln is that, if needed, the former outputs '\n'
and the latter "%\n".
In future, the new class will also be used for counting the number of
newlines issued. Even if the infractrure for doing that is already in
place, the counting is essentially still done the old way.
There are still places in the code where the functionality of the
class could be used, most probably. ATM, it is used for InsetTabular,
InsetListings, InsetFloat, and InsetText.
The Comment and GreyedOut insets required a special treatment and a
new InsetLayout parameter (Display) has been introduced. The default
for Display is "true", meaning that the corresponding latex
environment is of "display" type, i.e., it stands on its own, whereas
"false" means that the contents appear inline with the text. The
latter is the case for both Comment and GreyedOut insets.
Mostly, the only visible effects on latex exports should be the
disappearing of some redundant % chars and the appearing/disappearing
of null {} latex groups after a comment or lyxgreyedout environments
(they are related to the presence or absence of a space immediately
after those environments), as well as the fact that math environments
are now started on their own lines.
As a last thing, only the latex code between \begin{document} and
\end{document} goes through the new class, the preamble being directly
output through odocstream, as usual.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@37360 a592a061-630c-0410-9148-cb99ea01b6c8
2011-01-29 02:41:13 +00:00
|
|
|
int Paragraph::Private::latexSurrogatePair(otexstream & os, char_type c,
|
2009-07-16 06:19:25 +00:00
|
|
|
char_type next, OutputParams const & runparams)
|
2007-04-24 10:01:03 +00:00
|
|
|
{
|
|
|
|
// Writing next here may circumvent a possible font change between
|
|
|
|
// c and next. Since next is only output if it forms a surrogate pair
|
|
|
|
// with c we can ignore this:
|
|
|
|
// A font change inside a surrogate pair does not make sense and is
|
|
|
|
// hopefully impossible to input.
|
|
|
|
// FIXME: change tracking
|
|
|
|
// Is this correct WRT change tracking?
|
2009-07-16 06:19:25 +00:00
|
|
|
Encoding const & encoding = *(runparams.encoding);
|
2007-04-24 10:01:03 +00:00
|
|
|
docstring const latex1 = encoding.latexChar(next);
|
|
|
|
docstring const latex2 = encoding.latexChar(c);
|
2008-06-21 07:12:56 +00:00
|
|
|
if (docstring(1, next) == latex1) {
|
|
|
|
// the encoding supports the combination
|
|
|
|
os << latex2 << latex1;
|
|
|
|
return latex1.length() + latex2.length();
|
2009-07-18 07:19:38 +00:00
|
|
|
} else if (runparams.local_font &&
|
|
|
|
runparams.local_font->language()->lang() == "polutonikogreek") {
|
2009-07-16 06:19:25 +00:00
|
|
|
// polutonikogreek only works without the brackets
|
|
|
|
os << latex1 << latex2;
|
|
|
|
return latex1.length() + latex2.length();
|
2008-06-21 07:12:56 +00:00
|
|
|
} else
|
|
|
|
os << latex1 << '{' << latex2 << '}';
|
2007-04-24 10:01:03 +00:00
|
|
|
return latex1.length() + latex2.length() + 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-26 10:55:49 +00:00
|
|
|
bool Paragraph::Private::simpleTeXBlanks(OutputParams const & runparams,
|
2011-02-10 20:02:48 +00:00
|
|
|
otexstream & os,
|
2007-10-22 13:09:16 +00:00
|
|
|
pos_type i,
|
2007-04-24 10:01:03 +00:00
|
|
|
unsigned int & column,
|
2007-04-29 18:17:15 +00:00
|
|
|
Font const & font,
|
2007-04-29 18:58:28 +00:00
|
|
|
Layout const & style)
|
2007-04-24 10:01:03 +00:00
|
|
|
{
|
2010-08-07 22:07:49 +00:00
|
|
|
if (style.pass_thru || runparams.pass_thru)
|
2007-04-24 10:01:03 +00:00
|
|
|
return false;
|
|
|
|
|
2007-10-24 09:46:38 +00:00
|
|
|
if (i + 1 < int(text_.size())) {
|
2007-10-24 07:08:55 +00:00
|
|
|
char_type next = text_[i + 1];
|
2007-04-24 10:01:03 +00:00
|
|
|
if (Encodings::isCombiningChar(next)) {
|
|
|
|
// This space has an accent, so we must always output it.
|
2009-07-16 06:19:25 +00:00
|
|
|
column += latexSurrogatePair(os, ' ', next, runparams) - 1;
|
2007-04-24 10:01:03 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-09-02 23:46:04 +00:00
|
|
|
if (runparams.linelen > 0
|
|
|
|
&& column > runparams.linelen
|
2007-04-24 10:01:03 +00:00
|
|
|
&& i
|
2007-10-24 07:08:55 +00:00
|
|
|
&& text_[i - 1] != ' '
|
2007-10-24 09:46:38 +00:00
|
|
|
&& (i + 1 < int(text_.size()))
|
2007-04-24 10:01:03 +00:00
|
|
|
// same in FreeSpacing mode
|
|
|
|
&& !owner_->isFreeSpacing()
|
|
|
|
// In typewriter mode, we want to avoid
|
|
|
|
// ! . ? : at the end of a line
|
2007-10-28 18:51:54 +00:00
|
|
|
&& !(font.fontInfo().family() == TYPEWRITER_FAMILY
|
2007-10-24 07:08:55 +00:00
|
|
|
&& (text_[i - 1] == '.'
|
|
|
|
|| text_[i - 1] == '?'
|
|
|
|
|| text_[i - 1] == ':'
|
|
|
|
|| text_[i - 1] == '!'))) {
|
2007-04-24 10:01:03 +00:00
|
|
|
os << '\n';
|
2011-02-10 20:02:48 +00:00
|
|
|
os.texrow().start(owner_->id(), i + 1);
|
2007-04-24 10:01:03 +00:00
|
|
|
column = 0;
|
|
|
|
} else if (style.free_spacing) {
|
|
|
|
os << '~';
|
|
|
|
} else {
|
|
|
|
os << ' ';
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
Introduce a wrapper class for odocstream to help ensuring that no
blank lines may be inadvertently output. This is achieved by using two
special iomanip-like variables (breakln and safebreakln) in the lyx::
namespace. When they are inserted in the stream, a newline is output
only if not already at the beginning of a line. The difference between
breakln and safebreakln is that, if needed, the former outputs '\n'
and the latter "%\n".
In future, the new class will also be used for counting the number of
newlines issued. Even if the infractrure for doing that is already in
place, the counting is essentially still done the old way.
There are still places in the code where the functionality of the
class could be used, most probably. ATM, it is used for InsetTabular,
InsetListings, InsetFloat, and InsetText.
The Comment and GreyedOut insets required a special treatment and a
new InsetLayout parameter (Display) has been introduced. The default
for Display is "true", meaning that the corresponding latex
environment is of "display" type, i.e., it stands on its own, whereas
"false" means that the contents appear inline with the text. The
latter is the case for both Comment and GreyedOut insets.
Mostly, the only visible effects on latex exports should be the
disappearing of some redundant % chars and the appearing/disappearing
of null {} latex groups after a comment or lyxgreyedout environments
(they are related to the presence or absence of a space immediately
after those environments), as well as the fact that math environments
are now started on their own lines.
As a last thing, only the latex code between \begin{document} and
\end{document} goes through the new class, the preamble being directly
output through odocstream, as usual.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@37360 a592a061-630c-0410-9148-cb99ea01b6c8
2011-01-29 02:41:13 +00:00
|
|
|
int Paragraph::Private::writeScriptChars(otexstream & os,
|
2007-10-24 17:22:57 +00:00
|
|
|
docstring const & ltx,
|
2008-10-19 07:03:44 +00:00
|
|
|
Change const & runningChange,
|
2007-10-24 17:22:57 +00:00
|
|
|
Encoding const & encoding,
|
|
|
|
pos_type & i)
|
2007-10-12 18:21:51 +00:00
|
|
|
{
|
2007-10-31 07:48:13 +00:00
|
|
|
// FIXME: modifying i here is not very nice...
|
|
|
|
|
|
|
|
// We only arrive here when a proper language for character text_[i] has
|
|
|
|
// not been specified (i.e., it could not be translated in the current
|
2008-07-22 11:25:15 +00:00
|
|
|
// latex encoding) or its latex translation has been forced, and it
|
|
|
|
// belongs to a known script.
|
|
|
|
// Parameter ltx contains the latex translation of text_[i] as specified
|
|
|
|
// in the unicodesymbols file and is something like "\textXXX{<spec>}".
|
2007-10-31 07:48:13 +00:00
|
|
|
// The latex macro name "textXXX" specifies the script to which text_[i]
|
2007-10-24 17:22:57 +00:00
|
|
|
// belongs and we use it in order to check whether characters from the
|
|
|
|
// same script immediately follow, such that we can collect them in a
|
|
|
|
// single "\textXXX" macro. So, we have to retain "\textXXX{<spec>"
|
|
|
|
// for the first char but only "<spec>" for all subsequent chars.
|
|
|
|
docstring::size_type const brace1 = ltx.find_first_of(from_ascii("{"));
|
|
|
|
docstring::size_type const brace2 = ltx.find_last_of(from_ascii("}"));
|
|
|
|
string script = to_ascii(ltx.substr(1, brace1 - 1));
|
2008-07-22 11:25:15 +00:00
|
|
|
int pos = 0;
|
|
|
|
int length = brace2;
|
|
|
|
bool closing_brace = true;
|
|
|
|
if (script == "textgreek" && encoding.latexName() == "iso-8859-7") {
|
|
|
|
// Correct encoding is being used, so we can avoid \textgreek.
|
|
|
|
pos = brace1 + 1;
|
|
|
|
length -= pos;
|
|
|
|
closing_brace = false;
|
|
|
|
}
|
|
|
|
os << ltx.substr(pos, length);
|
2007-10-24 09:46:38 +00:00
|
|
|
int size = text_.size();
|
|
|
|
while (i + 1 < size) {
|
2007-10-24 17:22:57 +00:00
|
|
|
char_type const next = text_[i + 1];
|
|
|
|
// Stop here if next character belongs to another script
|
|
|
|
// or there is a change in change tracking status.
|
|
|
|
if (!Encodings::isKnownScriptChar(next, script) ||
|
2007-10-19 08:57:22 +00:00
|
|
|
runningChange != owner_->lookupChange(i + 1))
|
2007-10-12 18:21:51 +00:00
|
|
|
break;
|
|
|
|
Font prev_font;
|
|
|
|
bool found = false;
|
2007-10-19 08:57:22 +00:00
|
|
|
FontList::const_iterator cit = fontlist_.begin();
|
|
|
|
FontList::const_iterator end = fontlist_.end();
|
2007-10-12 18:21:51 +00:00
|
|
|
for (; cit != end; ++cit) {
|
|
|
|
if (cit->pos() >= i && !found) {
|
|
|
|
prev_font = cit->font();
|
|
|
|
found = true;
|
|
|
|
}
|
|
|
|
if (cit->pos() >= i + 1)
|
|
|
|
break;
|
|
|
|
}
|
2007-10-24 17:22:57 +00:00
|
|
|
// Stop here if there is a font attribute or encoding change.
|
2007-10-12 18:21:51 +00:00
|
|
|
if (found && cit != end && prev_font != cit->font())
|
|
|
|
break;
|
2007-10-24 17:22:57 +00:00
|
|
|
docstring const latex = encoding.latexChar(next);
|
|
|
|
docstring::size_type const b1 =
|
2007-10-12 18:21:51 +00:00
|
|
|
latex.find_first_of(from_ascii("{"));
|
2007-10-24 17:22:57 +00:00
|
|
|
docstring::size_type const b2 =
|
|
|
|
latex.find_last_of(from_ascii("}"));
|
|
|
|
int const len = b2 - b1 - 1;
|
|
|
|
os << latex.substr(b1 + 1, len);
|
|
|
|
length += len;
|
2007-10-12 18:21:51 +00:00
|
|
|
++i;
|
|
|
|
}
|
2008-07-22 11:25:15 +00:00
|
|
|
if (closing_brace) {
|
|
|
|
os << '}';
|
|
|
|
++length;
|
|
|
|
}
|
2007-10-12 18:21:51 +00:00
|
|
|
return length;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-19 08:57:22 +00:00
|
|
|
bool Paragraph::Private::isTextAt(string const & str, pos_type pos) const
|
2007-04-24 10:01:03 +00:00
|
|
|
{
|
|
|
|
pos_type const len = str.length();
|
|
|
|
|
|
|
|
// is the paragraph large enough?
|
2007-10-24 09:46:38 +00:00
|
|
|
if (pos + len > int(text_.size()))
|
2007-04-24 10:01:03 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
// does the wanted text start at point?
|
|
|
|
for (string::size_type i = 0; i < str.length(); ++i) {
|
|
|
|
// Caution: direct comparison of characters works only
|
|
|
|
// because str is pure ASCII.
|
2007-10-24 07:08:55 +00:00
|
|
|
if (str[i] != text_[pos + i])
|
2007-04-24 10:01:03 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2007-10-19 15:30:54 +00:00
|
|
|
return fontlist_.hasChangeInRange(pos, len);
|
2007-04-24 10:01:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-08-07 22:07:49 +00:00
|
|
|
void Paragraph::Private::latexInset(BufferParams const & bparams,
|
Introduce a wrapper class for odocstream to help ensuring that no
blank lines may be inadvertently output. This is achieved by using two
special iomanip-like variables (breakln and safebreakln) in the lyx::
namespace. When they are inserted in the stream, a newline is output
only if not already at the beginning of a line. The difference between
breakln and safebreakln is that, if needed, the former outputs '\n'
and the latter "%\n".
In future, the new class will also be used for counting the number of
newlines issued. Even if the infractrure for doing that is already in
place, the counting is essentially still done the old way.
There are still places in the code where the functionality of the
class could be used, most probably. ATM, it is used for InsetTabular,
InsetListings, InsetFloat, and InsetText.
The Comment and GreyedOut insets required a special treatment and a
new InsetLayout parameter (Display) has been introduced. The default
for Display is "true", meaning that the corresponding latex
environment is of "display" type, i.e., it stands on its own, whereas
"false" means that the contents appear inline with the text. The
latter is the case for both Comment and GreyedOut insets.
Mostly, the only visible effects on latex exports should be the
disappearing of some redundant % chars and the appearing/disappearing
of null {} latex groups after a comment or lyxgreyedout environments
(they are related to the presence or absence of a space immediately
after those environments), as well as the fact that math environments
are now started on their own lines.
As a last thing, only the latex code between \begin{document} and
\end{document} goes through the new class, the preamble being directly
output through odocstream, as usual.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@37360 a592a061-630c-0410-9148-cb99ea01b6c8
2011-01-29 02:41:13 +00:00
|
|
|
otexstream & os,
|
2010-08-07 22:07:49 +00:00
|
|
|
OutputParams & runparams,
|
|
|
|
Font & running_font,
|
|
|
|
Font & basefont,
|
|
|
|
Font const & outerfont,
|
|
|
|
bool & open_font,
|
|
|
|
Change & running_change,
|
|
|
|
Layout const & style,
|
|
|
|
pos_type & i,
|
|
|
|
unsigned int & column)
|
2007-04-24 10:01:03 +00:00
|
|
|
{
|
2007-10-22 13:09:16 +00:00
|
|
|
Inset * inset = owner_->getInset(i);
|
2008-04-10 21:49:34 +00:00
|
|
|
LASSERT(inset, /**/);
|
2007-04-24 10:01:03 +00:00
|
|
|
|
2007-10-22 13:09:16 +00:00
|
|
|
if (style.pass_thru) {
|
Introduce a wrapper class for odocstream to help ensuring that no
blank lines may be inadvertently output. This is achieved by using two
special iomanip-like variables (breakln and safebreakln) in the lyx::
namespace. When they are inserted in the stream, a newline is output
only if not already at the beginning of a line. The difference between
breakln and safebreakln is that, if needed, the former outputs '\n'
and the latter "%\n".
In future, the new class will also be used for counting the number of
newlines issued. Even if the infractrure for doing that is already in
place, the counting is essentially still done the old way.
There are still places in the code where the functionality of the
class could be used, most probably. ATM, it is used for InsetTabular,
InsetListings, InsetFloat, and InsetText.
The Comment and GreyedOut insets required a special treatment and a
new InsetLayout parameter (Display) has been introduced. The default
for Display is "true", meaning that the corresponding latex
environment is of "display" type, i.e., it stands on its own, whereas
"false" means that the contents appear inline with the text. The
latter is the case for both Comment and GreyedOut insets.
Mostly, the only visible effects on latex exports should be the
disappearing of some redundant % chars and the appearing/disappearing
of null {} latex groups after a comment or lyxgreyedout environments
(they are related to the presence or absence of a space immediately
after those environments), as well as the fact that math environments
are now started on their own lines.
As a last thing, only the latex code between \begin{document} and
\end{document} goes through the new class, the preamble being directly
output through odocstream, as usual.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@37360 a592a061-630c-0410-9148-cb99ea01b6c8
2011-01-29 02:41:13 +00:00
|
|
|
inset->plaintext(os.os(), runparams);
|
2007-10-20 08:09:55 +00:00
|
|
|
return;
|
|
|
|
}
|
2007-04-24 10:01:03 +00:00
|
|
|
|
2007-10-20 08:09:55 +00:00
|
|
|
// FIXME: move this to InsetNewline::latex
|
|
|
|
if (inset->lyxCode() == NEWLINE_CODE) {
|
|
|
|
// newlines are handled differently here than
|
|
|
|
// the default in simpleTeXSpecialChars().
|
|
|
|
if (!style.newline_allowed) {
|
|
|
|
os << '\n';
|
|
|
|
} else {
|
|
|
|
if (open_font) {
|
|
|
|
column += running_font.latexWriteEndChanges(
|
|
|
|
os, bparams, runparams,
|
|
|
|
basefont, basefont);
|
|
|
|
open_font = false;
|
|
|
|
}
|
2007-04-24 10:01:03 +00:00
|
|
|
|
2007-10-28 18:51:54 +00:00
|
|
|
if (running_font.fontInfo().family() == TYPEWRITER_FAMILY)
|
2007-10-20 08:09:55 +00:00
|
|
|
os << '~';
|
2007-04-24 10:01:03 +00:00
|
|
|
|
2007-10-20 08:09:55 +00:00
|
|
|
basefont = owner_->getLayoutFont(bparams, outerfont);
|
|
|
|
running_font = basefont;
|
2007-04-24 10:01:03 +00:00
|
|
|
|
2007-10-20 08:09:55 +00:00
|
|
|
if (runparams.moving_arg)
|
|
|
|
os << "\\protect ";
|
2007-04-24 10:01:03 +00:00
|
|
|
|
|
|
|
}
|
2011-02-10 20:02:48 +00:00
|
|
|
os.texrow().start(owner_->id(), i + 1);
|
2007-10-20 08:09:55 +00:00
|
|
|
column = 0;
|
|
|
|
}
|
2007-04-24 10:01:03 +00:00
|
|
|
|
2009-08-04 23:01:06 +00:00
|
|
|
if (owner_->isDeleted(i)) {
|
2007-10-20 08:09:55 +00:00
|
|
|
if( ++runparams.inDeletedInset == 1)
|
|
|
|
runparams.changeOfDeletedInset = owner_->lookupChange(i);
|
|
|
|
}
|
2007-07-21 18:10:55 +00:00
|
|
|
|
2007-10-20 08:09:55 +00:00
|
|
|
if (inset->canTrackChanges()) {
|
|
|
|
column += Changes::latexMarkChange(os, bparams, running_change,
|
2009-10-12 16:22:05 +00:00
|
|
|
Change(Change::UNCHANGED), runparams);
|
2007-10-20 08:09:55 +00:00
|
|
|
running_change = Change(Change::UNCHANGED);
|
|
|
|
}
|
2007-04-24 10:01:03 +00:00
|
|
|
|
2007-10-20 08:09:55 +00:00
|
|
|
bool close = false;
|
Introduce a wrapper class for odocstream to help ensuring that no
blank lines may be inadvertently output. This is achieved by using two
special iomanip-like variables (breakln and safebreakln) in the lyx::
namespace. When they are inserted in the stream, a newline is output
only if not already at the beginning of a line. The difference between
breakln and safebreakln is that, if needed, the former outputs '\n'
and the latter "%\n".
In future, the new class will also be used for counting the number of
newlines issued. Even if the infractrure for doing that is already in
place, the counting is essentially still done the old way.
There are still places in the code where the functionality of the
class could be used, most probably. ATM, it is used for InsetTabular,
InsetListings, InsetFloat, and InsetText.
The Comment and GreyedOut insets required a special treatment and a
new InsetLayout parameter (Display) has been introduced. The default
for Display is "true", meaning that the corresponding latex
environment is of "display" type, i.e., it stands on its own, whereas
"false" means that the contents appear inline with the text. The
latter is the case for both Comment and GreyedOut insets.
Mostly, the only visible effects on latex exports should be the
disappearing of some redundant % chars and the appearing/disappearing
of null {} latex groups after a comment or lyxgreyedout environments
(they are related to the presence or absence of a space immediately
after those environments), as well as the fact that math environments
are now started on their own lines.
As a last thing, only the latex code between \begin{document} and
\end{document} goes through the new class, the preamble being directly
output through odocstream, as usual.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@37360 a592a061-630c-0410-9148-cb99ea01b6c8
2011-01-29 02:41:13 +00:00
|
|
|
odocstream::pos_type const len = os.os().tellp();
|
2007-10-20 08:09:55 +00:00
|
|
|
|
2009-07-16 10:08:13 +00:00
|
|
|
if (inset->forceLTR()
|
2007-11-05 23:44:47 +00:00
|
|
|
&& running_font.isRightToLeft()
|
2009-07-16 10:08:13 +00:00
|
|
|
// ERT is an exception, it should be output with no
|
|
|
|
// decorations at all
|
|
|
|
&& inset->lyxCode() != ERT_CODE) {
|
2010-09-14 14:00:29 +00:00
|
|
|
if (running_font.language()->lang() == "farsi")
|
2008-11-18 10:40:22 +00:00
|
|
|
os << "\\beginL{}";
|
2007-10-20 08:09:55 +00:00
|
|
|
else
|
2008-11-18 10:40:22 +00:00
|
|
|
os << "\\L{";
|
2007-10-20 08:09:55 +00:00
|
|
|
close = true;
|
|
|
|
}
|
2007-04-24 10:01:03 +00:00
|
|
|
|
2007-10-20 08:09:55 +00:00
|
|
|
// FIXME: Bug: we can have an empty font change here!
|
|
|
|
// if there has just been a font change, we are going to close it
|
|
|
|
// right now, which means stupid latex code like \textsf{}. AFAIK,
|
|
|
|
// this does not harm dvi output. A minor bug, thus (JMarc)
|
|
|
|
|
|
|
|
// Some insets cannot be inside a font change command.
|
|
|
|
// However, even such insets *can* be placed in \L or \R
|
|
|
|
// or their equivalents (for RTL language switches), so we don't
|
|
|
|
// close the language in those cases.
|
|
|
|
// ArabTeX, though, cannot handle this special behavior, it seems.
|
|
|
|
bool arabtex = basefont.language()->lang() == "arabic_arabtex"
|
|
|
|
|| running_font.language()->lang() == "arabic_arabtex";
|
2011-02-22 19:41:04 +00:00
|
|
|
if (open_font && !inset->inheritFont()) {
|
2007-10-20 08:09:55 +00:00
|
|
|
bool closeLanguage = arabtex
|
|
|
|
|| basefont.isRightToLeft() == running_font.isRightToLeft();
|
2008-11-18 10:40:22 +00:00
|
|
|
unsigned int count = running_font.latexWriteEndChanges(os,
|
2007-10-20 08:09:55 +00:00
|
|
|
bparams, runparams, basefont, basefont, closeLanguage);
|
|
|
|
column += count;
|
2010-09-14 14:00:29 +00:00
|
|
|
// if any font properties were closed, update the running_font,
|
2007-10-20 08:09:55 +00:00
|
|
|
// making sure, however, to leave the language as it was
|
|
|
|
if (count > 0) {
|
2010-09-14 14:00:29 +00:00
|
|
|
// FIXME: probably a better way to keep track of the old
|
2007-10-20 08:09:55 +00:00
|
|
|
// language, than copying the entire font?
|
|
|
|
Font const copy_font(running_font);
|
|
|
|
basefont = owner_->getLayoutFont(bparams, outerfont);
|
|
|
|
running_font = basefont;
|
|
|
|
if (!closeLanguage)
|
|
|
|
running_font.setLanguage(copy_font.language());
|
|
|
|
// leave font open if language is still open
|
|
|
|
open_font = (running_font.language() == basefont.language());
|
|
|
|
if (closeLanguage)
|
|
|
|
runparams.local_font = &basefont;
|
2007-04-24 10:01:03 +00:00
|
|
|
}
|
2007-10-20 08:09:55 +00:00
|
|
|
}
|
2007-04-24 10:01:03 +00:00
|
|
|
|
2011-02-10 20:02:48 +00:00
|
|
|
int prev_rows = os.texrow().rows();
|
2008-05-31 20:54:50 +00:00
|
|
|
|
|
|
|
try {
|
2011-03-12 01:40:01 +00:00
|
|
|
runparams.lastid = id_;
|
|
|
|
runparams.lastpos = i;
|
2011-02-10 20:02:48 +00:00
|
|
|
inset->latex(os, runparams);
|
2008-05-31 20:54:50 +00:00
|
|
|
} catch (EncodingException & e) {
|
|
|
|
// add location information and throw again.
|
|
|
|
e.par_id = id_;
|
|
|
|
e.pos = i;
|
|
|
|
throw(e);
|
|
|
|
}
|
2007-04-24 10:01:03 +00:00
|
|
|
|
2007-10-20 08:09:55 +00:00
|
|
|
if (close) {
|
2008-11-18 12:04:40 +00:00
|
|
|
if (running_font.language()->lang() == "farsi")
|
|
|
|
os << "\\endL{}";
|
|
|
|
else
|
|
|
|
os << '}';
|
2007-10-20 08:09:55 +00:00
|
|
|
}
|
2007-04-24 10:01:03 +00:00
|
|
|
|
2011-02-10 20:02:48 +00:00
|
|
|
if (os.texrow().rows() > prev_rows) {
|
|
|
|
os.texrow().start(owner_->id(), i + 1);
|
2007-10-20 08:09:55 +00:00
|
|
|
column = 0;
|
|
|
|
} else {
|
Introduce a wrapper class for odocstream to help ensuring that no
blank lines may be inadvertently output. This is achieved by using two
special iomanip-like variables (breakln and safebreakln) in the lyx::
namespace. When they are inserted in the stream, a newline is output
only if not already at the beginning of a line. The difference between
breakln and safebreakln is that, if needed, the former outputs '\n'
and the latter "%\n".
In future, the new class will also be used for counting the number of
newlines issued. Even if the infractrure for doing that is already in
place, the counting is essentially still done the old way.
There are still places in the code where the functionality of the
class could be used, most probably. ATM, it is used for InsetTabular,
InsetListings, InsetFloat, and InsetText.
The Comment and GreyedOut insets required a special treatment and a
new InsetLayout parameter (Display) has been introduced. The default
for Display is "true", meaning that the corresponding latex
environment is of "display" type, i.e., it stands on its own, whereas
"false" means that the contents appear inline with the text. The
latter is the case for both Comment and GreyedOut insets.
Mostly, the only visible effects on latex exports should be the
disappearing of some redundant % chars and the appearing/disappearing
of null {} latex groups after a comment or lyxgreyedout environments
(they are related to the presence or absence of a space immediately
after those environments), as well as the fact that math environments
are now started on their own lines.
As a last thing, only the latex code between \begin{document} and
\end{document} goes through the new class, the preamble being directly
output through odocstream, as usual.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@37360 a592a061-630c-0410-9148-cb99ea01b6c8
2011-01-29 02:41:13 +00:00
|
|
|
column += (unsigned int)(os.os().tellp() - len);
|
2007-04-24 10:01:03 +00:00
|
|
|
}
|
|
|
|
|
2009-08-04 23:01:06 +00:00
|
|
|
if (owner_->isDeleted(i))
|
2007-10-20 08:09:55 +00:00
|
|
|
--runparams.inDeletedInset;
|
|
|
|
}
|
2007-04-24 10:01:03 +00:00
|
|
|
|
|
|
|
|
Introduce a wrapper class for odocstream to help ensuring that no
blank lines may be inadvertently output. This is achieved by using two
special iomanip-like variables (breakln and safebreakln) in the lyx::
namespace. When they are inserted in the stream, a newline is output
only if not already at the beginning of a line. The difference between
breakln and safebreakln is that, if needed, the former outputs '\n'
and the latter "%\n".
In future, the new class will also be used for counting the number of
newlines issued. Even if the infractrure for doing that is already in
place, the counting is essentially still done the old way.
There are still places in the code where the functionality of the
class could be used, most probably. ATM, it is used for InsetTabular,
InsetListings, InsetFloat, and InsetText.
The Comment and GreyedOut insets required a special treatment and a
new InsetLayout parameter (Display) has been introduced. The default
for Display is "true", meaning that the corresponding latex
environment is of "display" type, i.e., it stands on its own, whereas
"false" means that the contents appear inline with the text. The
latter is the case for both Comment and GreyedOut insets.
Mostly, the only visible effects on latex exports should be the
disappearing of some redundant % chars and the appearing/disappearing
of null {} latex groups after a comment or lyxgreyedout environments
(they are related to the presence or absence of a space immediately
after those environments), as well as the fact that math environments
are now started on their own lines.
As a last thing, only the latex code between \begin{document} and
\end{document} goes through the new class, the preamble being directly
output through odocstream, as usual.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@37360 a592a061-630c-0410-9148-cb99ea01b6c8
2011-01-29 02:41:13 +00:00
|
|
|
void Paragraph::Private::latexSpecialChar(otexstream & os,
|
|
|
|
OutputParams const & runparams,
|
|
|
|
Font const & running_font,
|
|
|
|
Change const & running_change,
|
|
|
|
Layout const & style,
|
|
|
|
pos_type & i,
|
2011-02-12 11:03:24 +00:00
|
|
|
pos_type end_pos,
|
Introduce a wrapper class for odocstream to help ensuring that no
blank lines may be inadvertently output. This is achieved by using two
special iomanip-like variables (breakln and safebreakln) in the lyx::
namespace. When they are inserted in the stream, a newline is output
only if not already at the beginning of a line. The difference between
breakln and safebreakln is that, if needed, the former outputs '\n'
and the latter "%\n".
In future, the new class will also be used for counting the number of
newlines issued. Even if the infractrure for doing that is already in
place, the counting is essentially still done the old way.
There are still places in the code where the functionality of the
class could be used, most probably. ATM, it is used for InsetTabular,
InsetListings, InsetFloat, and InsetText.
The Comment and GreyedOut insets required a special treatment and a
new InsetLayout parameter (Display) has been introduced. The default
for Display is "true", meaning that the corresponding latex
environment is of "display" type, i.e., it stands on its own, whereas
"false" means that the contents appear inline with the text. The
latter is the case for both Comment and GreyedOut insets.
Mostly, the only visible effects on latex exports should be the
disappearing of some redundant % chars and the appearing/disappearing
of null {} latex groups after a comment or lyxgreyedout environments
(they are related to the presence or absence of a space immediately
after those environments), as well as the fact that math environments
are now started on their own lines.
As a last thing, only the latex code between \begin{document} and
\end{document} goes through the new class, the preamble being directly
output through odocstream, as usual.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@37360 a592a061-630c-0410-9148-cb99ea01b6c8
2011-01-29 02:41:13 +00:00
|
|
|
unsigned int & column)
|
2007-10-20 08:09:55 +00:00
|
|
|
{
|
2007-10-24 07:08:55 +00:00
|
|
|
char_type const c = text_[i];
|
2007-10-22 13:09:16 +00:00
|
|
|
|
2010-08-07 22:07:49 +00:00
|
|
|
if (style.pass_thru || runparams.pass_thru) {
|
2011-02-27 12:16:17 +00:00
|
|
|
if (c != '\0') {
|
|
|
|
Encoding const * const enc = runparams.encoding;
|
|
|
|
if (enc && enc->latexChar(c, true).empty())
|
|
|
|
throw EncodingException(c);
|
2007-10-22 13:09:16 +00:00
|
|
|
os.put(c);
|
2011-02-27 12:16:17 +00:00
|
|
|
}
|
2007-10-22 13:09:16 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-11-21 14:58:26 +00:00
|
|
|
// If T1 font encoding is used, use the special
|
|
|
|
// characters it provides.
|
|
|
|
// NOTE: some languages reset the font encoding
|
|
|
|
// internally
|
|
|
|
if (!running_font.language()->internalFontEncoding()
|
|
|
|
&& lyxrc.fontenc == "T1" && latexSpecialT1(c, os, i, column))
|
2007-10-23 09:53:06 +00:00
|
|
|
return;
|
|
|
|
|
2008-11-21 14:58:26 +00:00
|
|
|
// \tt font needs special treatment
|
2007-10-28 18:51:54 +00:00
|
|
|
if (running_font.fontInfo().family() == TYPEWRITER_FAMILY
|
2007-10-23 09:53:06 +00:00
|
|
|
&& latexSpecialTypewriter(c, os, i, column))
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Otherwise, we use what LaTeX provides us.
|
2007-10-20 08:09:55 +00:00
|
|
|
switch (c) {
|
|
|
|
case '\\':
|
|
|
|
os << "\\textbackslash{}";
|
|
|
|
column += 15;
|
|
|
|
break;
|
|
|
|
case '<':
|
2007-10-23 09:53:06 +00:00
|
|
|
os << "\\textless{}";
|
|
|
|
column += 10;
|
|
|
|
break;
|
2007-10-20 08:09:55 +00:00
|
|
|
case '>':
|
2007-10-23 09:53:06 +00:00
|
|
|
os << "\\textgreater{}";
|
|
|
|
column += 13;
|
2007-10-20 08:09:55 +00:00
|
|
|
break;
|
2007-10-23 09:53:06 +00:00
|
|
|
case '|':
|
|
|
|
os << "\\textbar{}";
|
|
|
|
column += 9;
|
|
|
|
break;
|
|
|
|
case '-':
|
|
|
|
os << '-';
|
2007-10-20 08:09:55 +00:00
|
|
|
break;
|
|
|
|
case '\"':
|
|
|
|
os << "\\char`\\\"{}";
|
|
|
|
column += 9;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case '$': case '&':
|
|
|
|
case '%': case '#': case '{':
|
|
|
|
case '}': case '_':
|
|
|
|
os << '\\';
|
|
|
|
os.put(c);
|
|
|
|
column += 1;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case '~':
|
|
|
|
os << "\\textasciitilde{}";
|
|
|
|
column += 16;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case '^':
|
|
|
|
os << "\\textasciicircum{}";
|
|
|
|
column += 17;
|
|
|
|
break;
|
|
|
|
|
2008-12-10 19:52:13 +00:00
|
|
|
case '*':
|
|
|
|
case '[':
|
|
|
|
case ']':
|
2007-10-20 08:09:55 +00:00
|
|
|
// avoid being mistaken for optional arguments
|
|
|
|
os << '{';
|
|
|
|
os.put(c);
|
|
|
|
os << '}';
|
|
|
|
column += 2;
|
|
|
|
break;
|
2007-04-24 10:01:03 +00:00
|
|
|
|
2007-10-20 08:09:55 +00:00
|
|
|
case ' ':
|
|
|
|
// Blanks are printed before font switching.
|
|
|
|
// Sure? I am not! (try nice-latex)
|
|
|
|
// I am sure it's correct. LyX might be smarter
|
|
|
|
// in the future, but for now, nothing wrong is
|
|
|
|
// written. (Asger)
|
|
|
|
break;
|
2007-04-24 10:01:03 +00:00
|
|
|
|
2007-10-20 08:09:55 +00:00
|
|
|
default:
|
|
|
|
// LyX, LaTeX etc.
|
2011-02-12 11:03:24 +00:00
|
|
|
if (latexSpecialPhrase(os, i, end_pos, column, runparams))
|
2007-10-23 09:53:06 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
if (c == '\0')
|
|
|
|
return;
|
|
|
|
|
|
|
|
Encoding const & encoding = *(runparams.encoding);
|
2012-03-09 09:05:13 +00:00
|
|
|
char_type next = '\0';
|
2007-10-24 09:46:38 +00:00
|
|
|
if (i + 1 < int(text_.size())) {
|
2012-03-09 09:05:13 +00:00
|
|
|
next = text_[i + 1];
|
2007-10-23 09:53:06 +00:00
|
|
|
if (Encodings::isCombiningChar(next)) {
|
2009-07-16 06:19:25 +00:00
|
|
|
column += latexSurrogatePair(os, c, next, runparams) - 1;
|
2007-10-23 09:53:06 +00:00
|
|
|
++i;
|
2007-04-24 10:01:03 +00:00
|
|
|
break;
|
|
|
|
}
|
2007-10-20 08:09:55 +00:00
|
|
|
}
|
2007-10-24 17:22:57 +00:00
|
|
|
string script;
|
2012-03-09 09:05:13 +00:00
|
|
|
docstring latex = encoding.latexChar(c);
|
|
|
|
docstring nextlatex;
|
|
|
|
if (next != '\0' && next != META_INSET)
|
|
|
|
nextlatex = encoding.latexChar(next);
|
|
|
|
bool tipas = false;
|
|
|
|
if (runparams.inIPA) {
|
|
|
|
string const tipashortcut = Encodings::TIPAShortcut(c);
|
|
|
|
if (!tipashortcut.empty()) {
|
|
|
|
latex = from_ascii(tipashortcut);
|
|
|
|
tipas = true;
|
|
|
|
}
|
|
|
|
}
|
2007-10-24 17:22:57 +00:00
|
|
|
if (Encodings::isKnownScriptChar(c, script)
|
|
|
|
&& prefixIs(latex, from_ascii("\\" + script)))
|
2007-10-31 07:48:13 +00:00
|
|
|
column += writeScriptChars(os, latex,
|
2007-10-24 17:22:57 +00:00
|
|
|
running_change, encoding, i) - 1;
|
2012-03-09 09:05:13 +00:00
|
|
|
else if (!prefixIs(nextlatex, from_ascii("\\"))
|
|
|
|
&& !prefixIs(nextlatex, from_ascii("{"))
|
|
|
|
&& !prefixIs(nextlatex, from_ascii("}"))
|
|
|
|
&& latex.length() > 1 && latex[latex.length() - 1] != '}'
|
|
|
|
&& latex[latex.length() - 1] != '-' && !tipas) {
|
2007-10-23 09:53:06 +00:00
|
|
|
// Prevent eating of a following
|
|
|
|
// space or command corruption by
|
|
|
|
// following characters
|
2012-03-09 09:05:13 +00:00
|
|
|
if (next == ' ' || next == '\0') {
|
|
|
|
column += latex.length() + 1;
|
|
|
|
os << latex << "{}";
|
|
|
|
} else {
|
|
|
|
column += latex.length();
|
|
|
|
os << latex << " ";
|
|
|
|
}
|
2007-10-23 09:53:06 +00:00
|
|
|
} else {
|
|
|
|
column += latex.length() - 1;
|
|
|
|
os << latex;
|
2007-04-24 10:01:03 +00:00
|
|
|
}
|
2007-10-20 08:09:55 +00:00
|
|
|
break;
|
2007-04-24 10:01:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
Introduce a wrapper class for odocstream to help ensuring that no
blank lines may be inadvertently output. This is achieved by using two
special iomanip-like variables (breakln and safebreakln) in the lyx::
namespace. When they are inserted in the stream, a newline is output
only if not already at the beginning of a line. The difference between
breakln and safebreakln is that, if needed, the former outputs '\n'
and the latter "%\n".
In future, the new class will also be used for counting the number of
newlines issued. Even if the infractrure for doing that is already in
place, the counting is essentially still done the old way.
There are still places in the code where the functionality of the
class could be used, most probably. ATM, it is used for InsetTabular,
InsetListings, InsetFloat, and InsetText.
The Comment and GreyedOut insets required a special treatment and a
new InsetLayout parameter (Display) has been introduced. The default
for Display is "true", meaning that the corresponding latex
environment is of "display" type, i.e., it stands on its own, whereas
"false" means that the contents appear inline with the text. The
latter is the case for both Comment and GreyedOut insets.
Mostly, the only visible effects on latex exports should be the
disappearing of some redundant % chars and the appearing/disappearing
of null {} latex groups after a comment or lyxgreyedout environments
(they are related to the presence or absence of a space immediately
after those environments), as well as the fact that math environments
are now started on their own lines.
As a last thing, only the latex code between \begin{document} and
\end{document} goes through the new class, the preamble being directly
output through odocstream, as usual.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@37360 a592a061-630c-0410-9148-cb99ea01b6c8
2011-01-29 02:41:13 +00:00
|
|
|
bool Paragraph::Private::latexSpecialT1(char_type const c, otexstream & os,
|
2008-10-19 07:03:44 +00:00
|
|
|
pos_type i, unsigned int & column)
|
2007-10-23 09:53:06 +00:00
|
|
|
{
|
|
|
|
switch (c) {
|
|
|
|
case '>':
|
|
|
|
case '<':
|
|
|
|
os.put(c);
|
|
|
|
// In T1 encoding, these characters exist
|
|
|
|
// but we should avoid ligatures
|
2007-12-14 14:52:52 +00:00
|
|
|
if (i + 1 >= int(text_.size()) || text_[i + 1] != c)
|
2007-10-23 09:53:06 +00:00
|
|
|
return true;
|
2008-07-04 06:01:45 +00:00
|
|
|
os << "\\textcompwordmark{}";
|
|
|
|
column += 19;
|
2007-10-23 09:53:06 +00:00
|
|
|
return true;
|
|
|
|
case '|':
|
|
|
|
os.put(c);
|
|
|
|
return true;
|
2008-08-19 08:51:56 +00:00
|
|
|
case '\"':
|
|
|
|
// soul.sty breaks with \char`\"
|
|
|
|
os << "\\textquotedbl{}";
|
|
|
|
column += 14;
|
|
|
|
return true;
|
2007-10-23 09:53:06 +00:00
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
Introduce a wrapper class for odocstream to help ensuring that no
blank lines may be inadvertently output. This is achieved by using two
special iomanip-like variables (breakln and safebreakln) in the lyx::
namespace. When they are inserted in the stream, a newline is output
only if not already at the beginning of a line. The difference between
breakln and safebreakln is that, if needed, the former outputs '\n'
and the latter "%\n".
In future, the new class will also be used for counting the number of
newlines issued. Even if the infractrure for doing that is already in
place, the counting is essentially still done the old way.
There are still places in the code where the functionality of the
class could be used, most probably. ATM, it is used for InsetTabular,
InsetListings, InsetFloat, and InsetText.
The Comment and GreyedOut insets required a special treatment and a
new InsetLayout parameter (Display) has been introduced. The default
for Display is "true", meaning that the corresponding latex
environment is of "display" type, i.e., it stands on its own, whereas
"false" means that the contents appear inline with the text. The
latter is the case for both Comment and GreyedOut insets.
Mostly, the only visible effects on latex exports should be the
disappearing of some redundant % chars and the appearing/disappearing
of null {} latex groups after a comment or lyxgreyedout environments
(they are related to the presence or absence of a space immediately
after those environments), as well as the fact that math environments
are now started on their own lines.
As a last thing, only the latex code between \begin{document} and
\end{document} goes through the new class, the preamble being directly
output through odocstream, as usual.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@37360 a592a061-630c-0410-9148-cb99ea01b6c8
2011-01-29 02:41:13 +00:00
|
|
|
bool Paragraph::Private::latexSpecialTypewriter(char_type const c, otexstream & os,
|
2008-10-19 07:03:44 +00:00
|
|
|
pos_type i, unsigned int & column)
|
2007-10-23 09:53:06 +00:00
|
|
|
{
|
|
|
|
switch (c) {
|
|
|
|
case '-':
|
2008-07-04 06:44:37 +00:00
|
|
|
// within \ttfamily, "--" is merged to "-" (no endash)
|
|
|
|
// so we avoid this rather irritating ligature
|
2007-10-24 09:46:38 +00:00
|
|
|
if (i + 1 < int(text_.size()) && text_[i + 1] == '-') {
|
2007-10-23 09:53:06 +00:00
|
|
|
os << "-{}";
|
|
|
|
column += 2;
|
|
|
|
} else
|
|
|
|
os << '-';
|
|
|
|
return true;
|
|
|
|
|
2008-07-04 06:44:37 +00:00
|
|
|
// everything else has to be checked separately
|
|
|
|
// (depending on the encoding)
|
2007-10-23 09:53:06 +00:00
|
|
|
default:
|
2008-07-03 14:29:37 +00:00
|
|
|
return false;
|
2007-10-23 09:53:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-02-12 11:03:24 +00:00
|
|
|
/// \param end_pos
|
|
|
|
/// If [start_pos, end_pos) does not include entirely the special phrase, then
|
|
|
|
/// do not apply the macro transformation.
|
|
|
|
bool Paragraph::Private::latexSpecialPhrase(otexstream & os, pos_type & i, pos_type end_pos,
|
2008-10-19 07:03:44 +00:00
|
|
|
unsigned int & column, OutputParams const & runparams)
|
2007-10-23 09:53:06 +00:00
|
|
|
{
|
|
|
|
// FIXME: if we have "LaTeX" with a font
|
|
|
|
// change in the middle (before the 'T', then
|
|
|
|
// the "TeX" part is still special cased.
|
|
|
|
// Really we should only operate this on
|
|
|
|
// "words" for some definition of word
|
|
|
|
|
|
|
|
for (size_t pnr = 0; pnr < phrases_nr; ++pnr) {
|
2011-02-12 11:03:24 +00:00
|
|
|
if (!isTextAt(special_phrases[pnr].phrase, i)
|
|
|
|
|| (end_pos != -1 && i + int(special_phrases[pnr].phrase.size()) > end_pos))
|
2007-10-23 09:53:06 +00:00
|
|
|
continue;
|
2007-11-03 17:07:37 +00:00
|
|
|
if (runparams.moving_arg)
|
|
|
|
os << "\\protect";
|
2007-10-23 09:53:06 +00:00
|
|
|
os << special_phrases[pnr].macro;
|
|
|
|
i += special_phrases[pnr].phrase.length() - 1;
|
|
|
|
column += special_phrases[pnr].macro.length() - 1;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-11-17 22:18:28 +00:00
|
|
|
void Paragraph::Private::validate(LaTeXFeatures & features) const
|
2007-04-24 10:01:03 +00:00
|
|
|
{
|
2009-12-01 14:34:05 +00:00
|
|
|
if (layout_->inpreamble && inset_owner_) {
|
2010-11-28 22:08:11 +00:00
|
|
|
bool const is_command = layout_->latextype == LATEX_COMMAND;
|
2009-12-01 14:34:05 +00:00
|
|
|
Buffer const & buf = inset_owner_->buffer();
|
|
|
|
BufferParams const & bp = buf.params();
|
|
|
|
Font f;
|
2011-02-10 20:02:48 +00:00
|
|
|
TexRow texrow;
|
2010-11-28 12:27:52 +00:00
|
|
|
// Using a string stream here circumvents the encoding
|
|
|
|
// switching machinery of odocstream. Therefore the
|
|
|
|
// output is wrong if this paragraph contains content
|
|
|
|
// that needs to switch encoding.
|
2009-12-01 14:34:05 +00:00
|
|
|
odocstringstream ods;
|
2011-02-10 20:02:48 +00:00
|
|
|
otexstream os(ods, texrow);
|
2010-11-28 22:08:11 +00:00
|
|
|
if (is_command) {
|
2011-02-10 20:02:48 +00:00
|
|
|
os << '\\' << from_ascii(layout_->latexname());
|
2010-11-28 22:08:11 +00:00
|
|
|
// we have to provide all the optional arguments here, even though
|
|
|
|
// the last one is the only one we care about.
|
|
|
|
// Separate handling of optional argument inset.
|
|
|
|
if (layout_->optargs != 0 || layout_->reqargs != 0)
|
Introduce a wrapper class for odocstream to help ensuring that no
blank lines may be inadvertently output. This is achieved by using two
special iomanip-like variables (breakln and safebreakln) in the lyx::
namespace. When they are inserted in the stream, a newline is output
only if not already at the beginning of a line. The difference between
breakln and safebreakln is that, if needed, the former outputs '\n'
and the latter "%\n".
In future, the new class will also be used for counting the number of
newlines issued. Even if the infractrure for doing that is already in
place, the counting is essentially still done the old way.
There are still places in the code where the functionality of the
class could be used, most probably. ATM, it is used for InsetTabular,
InsetListings, InsetFloat, and InsetText.
The Comment and GreyedOut insets required a special treatment and a
new InsetLayout parameter (Display) has been introduced. The default
for Display is "true", meaning that the corresponding latex
environment is of "display" type, i.e., it stands on its own, whereas
"false" means that the contents appear inline with the text. The
latter is the case for both Comment and GreyedOut insets.
Mostly, the only visible effects on latex exports should be the
disappearing of some redundant % chars and the appearing/disappearing
of null {} latex groups after a comment or lyxgreyedout environments
(they are related to the presence or absence of a space immediately
after those environments), as well as the fact that math environments
are now started on their own lines.
As a last thing, only the latex code between \begin{document} and
\end{document} goes through the new class, the preamble being directly
output through odocstream, as usual.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@37360 a592a061-630c-0410-9148-cb99ea01b6c8
2011-01-29 02:41:13 +00:00
|
|
|
latexArgInsets(*owner_, os, features.runparams(),
|
|
|
|
layout_->reqargs, layout_->optargs);
|
2010-11-28 22:08:11 +00:00
|
|
|
else
|
Introduce a wrapper class for odocstream to help ensuring that no
blank lines may be inadvertently output. This is achieved by using two
special iomanip-like variables (breakln and safebreakln) in the lyx::
namespace. When they are inserted in the stream, a newline is output
only if not already at the beginning of a line. The difference between
breakln and safebreakln is that, if needed, the former outputs '\n'
and the latter "%\n".
In future, the new class will also be used for counting the number of
newlines issued. Even if the infractrure for doing that is already in
place, the counting is essentially still done the old way.
There are still places in the code where the functionality of the
class could be used, most probably. ATM, it is used for InsetTabular,
InsetListings, InsetFloat, and InsetText.
The Comment and GreyedOut insets required a special treatment and a
new InsetLayout parameter (Display) has been introduced. The default
for Display is "true", meaning that the corresponding latex
environment is of "display" type, i.e., it stands on its own, whereas
"false" means that the contents appear inline with the text. The
latter is the case for both Comment and GreyedOut insets.
Mostly, the only visible effects on latex exports should be the
disappearing of some redundant % chars and the appearing/disappearing
of null {} latex groups after a comment or lyxgreyedout environments
(they are related to the presence or absence of a space immediately
after those environments), as well as the fact that math environments
are now started on their own lines.
As a last thing, only the latex code between \begin{document} and
\end{document} goes through the new class, the preamble being directly
output through odocstream, as usual.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@37360 a592a061-630c-0410-9148-cb99ea01b6c8
2011-01-29 02:41:13 +00:00
|
|
|
os << from_ascii(layout_->latexparam());
|
2010-11-28 22:08:11 +00:00
|
|
|
}
|
2010-11-28 12:27:52 +00:00
|
|
|
docstring::size_type const length = ods.str().length();
|
|
|
|
// this will output "{" at the beginning, but not at the end
|
2011-02-10 20:02:48 +00:00
|
|
|
owner_->latex(bp, f, os, features.runparams(), 0, -1, true);
|
2010-11-28 12:27:52 +00:00
|
|
|
if (ods.str().length() > length) {
|
2010-11-28 22:08:11 +00:00
|
|
|
if (is_command)
|
|
|
|
ods << '}';
|
2010-11-28 12:27:52 +00:00
|
|
|
string const snippet = to_utf8(ods.str());
|
|
|
|
features.addPreambleSnippet(snippet);
|
2010-06-15 15:37:39 +00:00
|
|
|
}
|
2009-12-01 14:34:05 +00:00
|
|
|
}
|
2010-09-14 14:00:29 +00:00
|
|
|
|
|
|
|
if (features.runparams().flavor == OutputParams::HTML
|
2010-01-19 19:43:15 +00:00
|
|
|
&& layout_->htmltitle()) {
|
|
|
|
features.setHTMLTitle(owner_->asString(AS_STR_INSETS));
|
|
|
|
}
|
2010-09-14 14:00:29 +00:00
|
|
|
|
2007-04-24 10:01:03 +00:00
|
|
|
// check the params.
|
2007-10-19 08:57:22 +00:00
|
|
|
if (!params_.spacing().isDefault())
|
2007-04-24 10:01:03 +00:00
|
|
|
features.require("setspace");
|
|
|
|
|
|
|
|
// then the layouts
|
2009-11-17 22:18:28 +00:00
|
|
|
features.useLayout(layout_->name());
|
2007-04-24 10:01:03 +00:00
|
|
|
|
|
|
|
// then the fonts
|
2007-10-19 16:01:32 +00:00
|
|
|
fontlist_.validate(features);
|
2007-04-24 10:01:03 +00:00
|
|
|
|
2007-10-19 16:01:32 +00:00
|
|
|
// then the indentation
|
2007-10-19 08:57:22 +00:00
|
|
|
if (!params_.leftIndent().zero())
|
2007-04-24 10:01:03 +00:00
|
|
|
features.require("ParagraphLeftIndent");
|
|
|
|
|
|
|
|
// then the insets
|
2007-10-18 15:29:51 +00:00
|
|
|
InsetList::const_iterator icit = insetlist_.begin();
|
|
|
|
InsetList::const_iterator iend = insetlist_.end();
|
2007-04-24 10:01:03 +00:00
|
|
|
for (; icit != iend; ++icit) {
|
2008-11-29 00:23:21 +00:00
|
|
|
if (icit->inset) {
|
2007-04-24 10:01:03 +00:00
|
|
|
icit->inset->validate(features);
|
2009-11-17 22:18:28 +00:00
|
|
|
if (layout_->needprotect &&
|
2007-10-13 09:04:52 +00:00
|
|
|
icit->inset->lyxCode() == FOOT_CODE)
|
2007-04-24 10:01:03 +00:00
|
|
|
features.require("NeedLyXFootnoteCode");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// then the contents
|
2007-10-24 09:46:38 +00:00
|
|
|
for (pos_type i = 0; i < int(text_.size()) ; ++i) {
|
2007-04-24 10:01:03 +00:00
|
|
|
for (size_t pnr = 0; pnr < phrases_nr; ++pnr) {
|
|
|
|
if (!special_phrases[pnr].builtin
|
|
|
|
&& isTextAt(special_phrases[pnr].phrase, i)) {
|
|
|
|
features.require(special_phrases[pnr].phrase);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2007-10-24 07:08:55 +00:00
|
|
|
Encodings::validate(text_[i], features);
|
2007-04-24 10:01:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Paragraph
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////
|
|
|
|
|
2008-03-06 21:31:27 +00:00
|
|
|
namespace {
|
|
|
|
Layout const emptyParagraphLayout;
|
|
|
|
}
|
|
|
|
|
2010-09-14 14:00:29 +00:00
|
|
|
Paragraph::Paragraph()
|
2008-03-06 21:31:27 +00:00
|
|
|
: d(new Paragraph::Private(this, emptyParagraphLayout))
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2001-06-25 00:06:33 +00:00
|
|
|
itemdepth = 0;
|
2007-10-19 08:57:22 +00:00
|
|
|
d->params_.clear();
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-11-13 13:43:44 +00:00
|
|
|
Paragraph::Paragraph(Paragraph const & par)
|
2007-10-24 07:08:55 +00:00
|
|
|
: itemdepth(par.itemdepth),
|
2007-10-19 08:57:22 +00:00
|
|
|
d(new Paragraph::Private(*par.d, this))
|
2001-05-08 10:50:09 +00:00
|
|
|
{
|
2008-02-26 13:07:59 +00:00
|
|
|
registerWords();
|
2001-05-08 10:50:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-07-30 09:07:32 +00:00
|
|
|
Paragraph::Paragraph(Paragraph const & par, pos_type beg, pos_type end)
|
|
|
|
: itemdepth(par.itemdepth),
|
|
|
|
d(new Paragraph::Private(*par.d, this, beg, end))
|
|
|
|
{
|
|
|
|
registerWords();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-03-19 16:36:52 +00:00
|
|
|
Paragraph & Paragraph::operator=(Paragraph const & par)
|
2003-06-04 07:14:05 +00:00
|
|
|
{
|
2007-10-19 08:57:22 +00:00
|
|
|
// needed as we will destroy the private part before copying it
|
2004-03-19 16:36:52 +00:00
|
|
|
if (&par != this) {
|
|
|
|
itemdepth = par.itemdepth;
|
|
|
|
|
2008-02-26 13:07:59 +00:00
|
|
|
deregisterWords();
|
2007-10-19 08:57:22 +00:00
|
|
|
delete d;
|
|
|
|
d = new Private(*par.d, this);
|
2008-02-26 13:07:59 +00:00
|
|
|
registerWords();
|
2004-03-19 16:36:52 +00:00
|
|
|
}
|
|
|
|
return *this;
|
2003-06-04 07:14:05 +00:00
|
|
|
}
|
|
|
|
|
2003-11-13 13:43:44 +00:00
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
Paragraph::~Paragraph()
|
2001-05-08 10:50:09 +00:00
|
|
|
{
|
2008-02-26 13:07:59 +00:00
|
|
|
deregisterWords();
|
2007-10-19 08:57:22 +00:00
|
|
|
delete d;
|
2001-05-08 10:50:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-10-23 16:48:55 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
// this shall be called just before every "os << ..." action.
|
|
|
|
void flushString(ostream & os, docstring & s)
|
|
|
|
{
|
|
|
|
os << to_utf8(s);
|
|
|
|
s.erase();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-27 20:43:16 +00:00
|
|
|
void Paragraph::write(ostream & os, BufferParams const & bparams,
|
|
|
|
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?
|
2008-02-20 10:21:00 +00:00
|
|
|
if (dth != d->params_.depth()) {
|
|
|
|
if (d->params_.depth() > dth) {
|
|
|
|
while (d->params_.depth() > dth) {
|
2004-08-16 11:27:51 +00:00
|
|
|
os << "\n\\begin_deeper";
|
2001-05-08 13:28:44 +00:00
|
|
|
++dth;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
2001-05-08 13:28:44 +00:00
|
|
|
} else {
|
2008-02-20 10:21:00 +00:00
|
|
|
while (d->params_.depth() < dth) {
|
2004-08-16 11:27:51 +00:00
|
|
|
os << "\n\\end_deeper";
|
2001-05-08 13:28:44 +00:00
|
|
|
--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
|
2008-03-06 22:06:24 +00:00
|
|
|
os << "\n\\begin_layout " << to_utf8(d->layout_->name()) << '\n';
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2008-02-20 10:21:00 +00:00
|
|
|
d->params_.write(os);
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2007-10-28 18:51:54 +00:00
|
|
|
Font font1(inherit_font, bparams.language);
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2003-02-08 19:18:01 +00:00
|
|
|
Change running_change = Change(Change::UNCHANGED);
|
2003-03-03 21:15:49 +00:00
|
|
|
|
2009-10-23 16:48:55 +00:00
|
|
|
// this string is used as a buffer to avoid repetitive calls
|
|
|
|
// to to_utf8(), which turn out to be expensive (JMarc)
|
|
|
|
docstring write_buffer;
|
|
|
|
|
2000-07-15 23:51:46 +00:00
|
|
|
int column = 0;
|
2006-03-11 13:31:41 +00:00
|
|
|
for (pos_type i = 0; i <= size(); ++i) {
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2009-06-19 15:32:51 +00:00
|
|
|
Change const change = lookupChange(i);
|
2009-10-23 16:48:55 +00:00
|
|
|
if (change != running_change)
|
|
|
|
flushString(os, write_buffer);
|
2009-07-23 20:08:05 +00:00
|
|
|
Changes::lyxMarkChange(os, bparams, column, running_change, change);
|
2003-02-08 19:18:01 +00:00
|
|
|
running_change = change;
|
2003-03-03 21:15:49 +00:00
|
|
|
|
2006-03-11 13:31:41 +00:00
|
|
|
if (i == size())
|
|
|
|
break;
|
|
|
|
|
2010-09-14 05:24:04 +00:00
|
|
|
// Write font changes
|
2009-06-19 15:32:51 +00:00
|
|
|
Font font2 = getFontSettings(bparams, i);
|
1999-09-27 18:44:28 +00:00
|
|
|
if (font2 != font1) {
|
2009-10-23 16:48:55 +00:00
|
|
|
flushString(os, write_buffer);
|
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
|
|
|
|
2007-10-24 07:08:55 +00:00
|
|
|
char_type const c = d->text_[i];
|
1999-09-27 18:44:28 +00:00
|
|
|
switch (c) {
|
1999-11-15 12:01:38 +00:00
|
|
|
case META_INSET:
|
2008-02-09 10:41:49 +00:00
|
|
|
if (Inset const * inset = getInset(i)) {
|
2009-10-23 16:48:55 +00:00
|
|
|
flushString(os, write_buffer);
|
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
|
2008-02-27 20:43:16 +00:00
|
|
|
inset->write(os);
|
1999-09-27 18:44:28 +00:00
|
|
|
} else {
|
2005-01-06 16:52:08 +00:00
|
|
|
if (i)
|
|
|
|
os << '\n';
|
|
|
|
os << "\\begin_inset ";
|
2008-02-27 20:43:16 +00:00
|
|
|
inset->write(os);
|
2004-08-16 11:27:51 +00:00
|
|
|
os << "\n\\end_inset\n\n";
|
1999-09-27 18:44:28 +00:00
|
|
|
column = 0;
|
|
|
|
}
|
2008-02-09 10:41:49 +00:00
|
|
|
}
|
|
|
|
break;
|
1999-12-07 00:44:53 +00:00
|
|
|
case '\\':
|
2009-10-23 16:48:55 +00:00
|
|
|
flushString(os, write_buffer);
|
2004-08-16 11:27:51 +00:00
|
|
|
os << "\n\\backslash\n";
|
1999-09-27 18:44:28 +00:00
|
|
|
column = 0;
|
|
|
|
break;
|
|
|
|
case '.':
|
2009-10-23 16:48:55 +00:00
|
|
|
flushString(os, write_buffer);
|
2007-10-24 07:08:55 +00:00
|
|
|
if (i + 1 < size() && d->text_[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) {
|
2009-10-23 16:48:55 +00:00
|
|
|
flushString(os, write_buffer);
|
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.
|
2008-01-14 23:44:05 +00:00
|
|
|
if (c != '\0')
|
2009-10-23 16:48:55 +00:00
|
|
|
write_buffer.push_back(c);
|
2008-01-14 23:44:05 +00:00
|
|
|
else
|
2008-04-07 20:43:02 +00:00
|
|
|
LYXERR0("NUL char in structure.");
|
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
|
|
|
|
2009-10-23 16:48:55 +00:00
|
|
|
flushString(os, write_buffer);
|
2003-07-27 21:39:54 +00:00
|
|
|
os << "\n\\end_layout\n";
|
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
|
|
|
{
|
2009-11-17 22:18:28 +00:00
|
|
|
d->validate(features);
|
2003-02-08 19:18:01 +00:00
|
|
|
}
|
|
|
|
|
2003-03-03 21:15:49 +00:00
|
|
|
|
2006-10-22 10:15:23 +00:00
|
|
|
void Paragraph::insert(pos_type start, docstring const & str,
|
2007-05-28 22:27:45 +00:00
|
|
|
Font const & font, Change const & change)
|
2003-11-04 12:01:15 +00:00
|
|
|
{
|
2005-07-16 12:02:31 +00:00
|
|
|
for (size_t i = 0, n = str.size(); i != n ; ++i)
|
2006-10-20 11:44:58 +00:00
|
|
|
insertChar(start + i, str[i], font, change);
|
2003-11-04 12:01:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-24 07:08:55 +00:00
|
|
|
void Paragraph::appendChar(char_type c, Font const & font,
|
2007-10-22 13:09:16 +00:00
|
|
|
Change const & change)
|
|
|
|
{
|
|
|
|
// track change
|
2007-10-24 07:08:55 +00:00
|
|
|
d->changes_.insert(change, d->text_.size());
|
2007-10-22 13:09:16 +00:00
|
|
|
// when appending characters, no need to update tables
|
2007-10-24 07:08:55 +00:00
|
|
|
d->text_.push_back(c);
|
|
|
|
setFont(d->text_.size() - 1, font);
|
2011-08-20 13:51:38 +00:00
|
|
|
d->requestSpellCheck(d->text_.size() - 1);
|
2007-10-22 13:09:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Paragraph::appendString(docstring const & s, Font const & font,
|
|
|
|
Change const & change)
|
|
|
|
{
|
2007-10-31 07:48:13 +00:00
|
|
|
pos_type end = s.size();
|
2007-10-24 07:08:55 +00:00
|
|
|
size_t oldsize = d->text_.size();
|
2007-10-22 20:05:41 +00:00
|
|
|
size_t newsize = oldsize + end;
|
2007-10-24 07:08:55 +00:00
|
|
|
size_t capacity = d->text_.capacity();
|
2007-10-22 20:05:41 +00:00
|
|
|
if (newsize >= capacity)
|
2007-12-12 19:28:07 +00:00
|
|
|
d->text_.reserve(max(capacity + 100, newsize));
|
2007-10-22 20:05:41 +00:00
|
|
|
|
2007-10-24 09:01:51 +00:00
|
|
|
// when appending characters, no need to update tables
|
|
|
|
d->text_.append(s);
|
|
|
|
|
2007-10-22 13:09:16 +00:00
|
|
|
// FIXME: Optimize this!
|
2008-11-16 12:08:29 +00:00
|
|
|
for (size_t i = oldsize; i != newsize; ++i) {
|
2007-10-22 13:09:16 +00:00
|
|
|
// track change
|
|
|
|
d->changes_.insert(change, i);
|
2011-08-20 13:51:38 +00:00
|
|
|
d->requestSpellCheck(i);
|
2007-10-22 13:09:16 +00:00
|
|
|
}
|
2007-10-29 12:21:58 +00:00
|
|
|
d->fontlist_.set(oldsize, font);
|
|
|
|
d->fontlist_.set(newsize - 1, font);
|
2007-10-22 13:09:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-24 07:08:55 +00:00
|
|
|
void Paragraph::insertChar(pos_type pos, char_type c,
|
2007-05-28 22:27:45 +00:00
|
|
|
bool trackChanges)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2007-10-19 08:57:22 +00:00
|
|
|
d->insertChar(pos, c, Change(trackChanges ?
|
2007-05-28 22:27:45 +00:00
|
|
|
Change::INSERTED : Change::UNCHANGED));
|
2006-10-20 11:44:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-24 07:08:55 +00:00
|
|
|
void Paragraph::insertChar(pos_type pos, char_type c,
|
2007-05-28 22:27:45 +00:00
|
|
|
Font const & font, bool trackChanges)
|
2006-10-20 11:44:58 +00:00
|
|
|
{
|
2007-10-19 08:57:22 +00:00
|
|
|
d->insertChar(pos, c, Change(trackChanges ?
|
2007-05-28 22:27:45 +00:00
|
|
|
Change::INSERTED : Change::UNCHANGED));
|
2006-10-20 11:44:58 +00:00
|
|
|
setFont(pos, font);
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
1999-11-15 12:01:38 +00:00
|
|
|
|
2007-10-24 07:08:55 +00:00
|
|
|
void Paragraph::insertChar(pos_type pos, char_type c,
|
2007-05-28 22:27:45 +00:00
|
|
|
Font const & font, Change const & change)
|
2000-06-28 13:35:52 +00:00
|
|
|
{
|
2007-10-19 08:57:22 +00:00
|
|
|
d->insertChar(pos, c, change);
|
2004-08-05 15:14:29 +00:00
|
|
|
setFont(pos, font);
|
2000-06-28 13:35:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-10-08 14:03:15 +00:00
|
|
|
bool Paragraph::insertInset(pos_type pos, Inset * inset,
|
2007-05-28 22:27:45 +00:00
|
|
|
Font const & font, Change const & change)
|
2000-06-28 13:35:52 +00:00
|
|
|
{
|
2008-10-08 14:03:15 +00:00
|
|
|
bool const success = insertInset(pos, inset, change);
|
2007-07-05 17:47:25 +00:00
|
|
|
// Set the font/language of the inset...
|
2004-08-05 15:14:29 +00:00
|
|
|
setFont(pos, font);
|
2008-10-08 14:03:15 +00:00
|
|
|
return success;
|
2000-06-28 13:35:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-28 18:51:54 +00:00
|
|
|
void Paragraph::resetFonts(Font const & font)
|
|
|
|
{
|
2007-10-29 12:21:58 +00:00
|
|
|
d->fontlist_.clear();
|
|
|
|
d->fontlist_.set(0, font);
|
|
|
|
d->fontlist_.set(d->text_.size() - 1, font);
|
2007-10-28 18:51:54 +00:00
|
|
|
}
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
// Gets uninstantiated font setting at position.
|
2008-10-19 07:03:44 +00:00
|
|
|
Font 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
|
|
|
{
|
2004-02-20 11:00:41 +00:00
|
|
|
if (pos > size()) {
|
2008-04-07 20:43:02 +00:00
|
|
|
LYXERR0("pos: " << pos << " size: " << size());
|
2008-04-10 21:49:34 +00:00
|
|
|
LASSERT(pos <= size(), /**/);
|
2004-02-20 11:00:41 +00:00
|
|
|
}
|
2002-03-13 18:23:38 +00:00
|
|
|
|
2007-10-19 15:42:53 +00:00
|
|
|
FontList::const_iterator cit = d->fontlist_.fontIterator(pos);
|
|
|
|
if (cit != d->fontlist_.end())
|
2003-07-28 12:51:24 +00:00
|
|
|
return cit->font();
|
2001-07-27 12:03:36 +00:00
|
|
|
|
2003-07-28 12:51:24 +00:00
|
|
|
if (pos == size() && !empty())
|
|
|
|
return getFontSettings(bparams, pos - 1);
|
|
|
|
|
2008-10-19 07:03:44 +00:00
|
|
|
// Optimisation: avoid a full font instantiation if there is no
|
|
|
|
// language change from previous call.
|
|
|
|
static Font previous_font;
|
|
|
|
static Language const * previous_lang = 0;
|
|
|
|
Language const * lang = getParLanguage(bparams);
|
|
|
|
if (lang != previous_lang) {
|
|
|
|
previous_lang = lang;
|
|
|
|
previous_font = Font(inherit_font, lang);
|
|
|
|
}
|
|
|
|
return previous_font;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
2003-07-28 12:51:24 +00:00
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
FontSpan Paragraph::fontSpan(pos_type pos) const
|
2003-07-27 10:42:11 +00:00
|
|
|
{
|
2008-04-10 21:49:34 +00:00
|
|
|
LASSERT(pos <= size(), /**/);
|
2006-10-21 00:16:43 +00:00
|
|
|
pos_type start = 0;
|
2003-07-27 10:42:11 +00:00
|
|
|
|
2007-10-19 08:57:22 +00:00
|
|
|
FontList::const_iterator cit = d->fontlist_.begin();
|
|
|
|
FontList::const_iterator end = d->fontlist_.end();
|
2005-06-10 14:55:01 +00:00
|
|
|
for (; cit != end; ++cit) {
|
2005-11-07 11:28:11 +00:00
|
|
|
if (cit->pos() >= pos) {
|
|
|
|
if (pos >= beginOfBody())
|
2007-12-12 19:28:07 +00:00
|
|
|
return FontSpan(max(start, beginOfBody()),
|
2005-11-07 11:28:11 +00:00
|
|
|
cit->pos());
|
|
|
|
else
|
2006-04-05 23:56:29 +00:00
|
|
|
return FontSpan(start,
|
2007-12-12 19:28:07 +00:00
|
|
|
min(beginOfBody() - 1,
|
2005-11-07 11:28:11 +00:00
|
|
|
cit->pos()));
|
|
|
|
}
|
2005-06-10 14:55:01 +00:00
|
|
|
start = cit->pos() + 1;
|
|
|
|
}
|
2003-07-28 12:51:24 +00:00
|
|
|
|
2003-07-27 10:42:11 +00:00
|
|
|
// This should not happen, but if so, we take no chances.
|
2008-04-07 20:43:02 +00:00
|
|
|
// LYXERR0("Paragraph::getEndPosOfFontSpan: This should not happen!");
|
2005-07-18 12:13:32 +00:00
|
|
|
return FontSpan(pos, pos);
|
2003-07-27 10:42:11 +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
|
2008-10-19 07:03:44 +00:00
|
|
|
Font const & Paragraph::getFirstFontSettings(BufferParams const & bparams) const
|
2000-03-17 10:14:46 +00:00
|
|
|
{
|
2007-10-19 08:57:22 +00:00
|
|
|
if (!empty() && !d->fontlist_.empty())
|
2007-10-19 14:35:05 +00:00
|
|
|
return d->fontlist_.begin()->font();
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2008-10-19 07:03:44 +00:00
|
|
|
// Optimisation: avoid a full font instantiation if there is no
|
|
|
|
// language change from previous call.
|
|
|
|
static Font previous_font;
|
|
|
|
static Language const * previous_lang = 0;
|
|
|
|
if (bparams.language != previous_lang) {
|
|
|
|
previous_lang = bparams.language;
|
|
|
|
previous_font = Font(inherit_font, bparams.language);
|
|
|
|
}
|
|
|
|
|
|
|
|
return previous_font;
|
2000-03-17 10:14:46 +00:00
|
|
|
}
|
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
|
2007-04-29 23:33:02 +00:00
|
|
|
// This is basically the same function as Text::GetFont() in text2.cpp.
|
1999-09-27 18:44:28 +00:00
|
|
|
// 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)
|
2007-04-29 18:17:15 +00:00
|
|
|
Font const Paragraph::getFont(BufferParams const & bparams, pos_type pos,
|
|
|
|
Font const & outerfont) const
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2008-04-10 21:49:34 +00:00
|
|
|
LASSERT(pos >= 0, /**/);
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2007-08-18 13:08:36 +00:00
|
|
|
Font font = getFontSettings(bparams, pos);
|
2002-06-24 20:28:12 +00:00
|
|
|
|
2003-11-13 13:43:44 +00:00
|
|
|
pos_type const body_pos = beginOfBody();
|
2008-10-19 07:42:41 +00:00
|
|
|
FontInfo & fi = font.fontInfo();
|
2003-03-09 12:37:22 +00:00
|
|
|
if (pos < body_pos)
|
2008-10-19 07:42:41 +00:00
|
|
|
fi.realize(d->layout_->labelfont);
|
2001-08-03 18:28:11 +00:00
|
|
|
else
|
2008-10-19 07:42:41 +00:00
|
|
|
fi.realize(d->layout_->font);
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2008-10-19 07:42:41 +00:00
|
|
|
fi.realize(outerfont.fontInfo());
|
|
|
|
fi.realize(bparams.getFont().fontInfo());
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2003-10-21 16:15:14 +00:00
|
|
|
return font;
|
2001-08-03 18:28:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-04-29 18:17:15 +00:00
|
|
|
Font const Paragraph::getLabelFont
|
|
|
|
(BufferParams const & bparams, Font const & outerfont) const
|
2001-08-03 18:28:11 +00:00
|
|
|
{
|
2008-03-06 22:06:24 +00:00
|
|
|
FontInfo tmpfont = d->layout_->labelfont;
|
2007-10-28 23:32:18 +00:00
|
|
|
tmpfont.realize(outerfont.fontInfo());
|
|
|
|
tmpfont.realize(bparams.getFont().fontInfo());
|
|
|
|
return Font(tmpfont, getParLanguage(bparams));
|
2001-08-03 18:28:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-04-29 18:17:15 +00:00
|
|
|
Font const Paragraph::getLayoutFont
|
|
|
|
(BufferParams const & bparams, Font const & outerfont) const
|
2001-08-03 18:28:11 +00:00
|
|
|
{
|
2008-03-06 22:06:24 +00:00
|
|
|
FontInfo tmpfont = d->layout_->font;
|
2007-10-28 18:51:54 +00:00
|
|
|
tmpfont.realize(outerfont.fontInfo());
|
|
|
|
tmpfont.realize(bparams.getFont().fontInfo());
|
|
|
|
return Font(tmpfont, getParLanguage(bparams));
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// Returns the height of the highest font in range
|
2007-10-28 18:51:54 +00:00
|
|
|
FontSize Paragraph::highestFontInRange
|
|
|
|
(pos_type startpos, pos_type endpos, FontSize def_size) const
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2007-10-19 14:55:44 +00:00
|
|
|
return d->fontlist_.highestInRange(startpos, endpos, def_size);
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-04-07 20:43:02 +00:00
|
|
|
char_type Paragraph::getUChar(BufferParams const & bparams, pos_type pos) const
|
2001-02-11 09:58:20 +00:00
|
|
|
{
|
2007-10-24 07:08:55 +00:00
|
|
|
char_type c = d->text_[pos];
|
2001-02-11 09:58:20 +00:00
|
|
|
if (!lyxrc.rtl_support)
|
|
|
|
return c;
|
|
|
|
|
2007-10-24 07:08:55 +00:00
|
|
|
char_type uc = c;
|
2001-02-11 09:58:20 +00:00
|
|
|
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;
|
2008-04-07 20:43:02 +00:00
|
|
|
return c;
|
2001-02-11 09:58:20 +00:00
|
|
|
}
|
|
|
|
|
2001-04-04 21:47:26 +00:00
|
|
|
|
2007-04-29 18:17:15 +00:00
|
|
|
void Paragraph::setFont(pos_type pos, Font const & font)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2008-04-10 21:49:34 +00:00
|
|
|
LASSERT(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
|
2007-04-26 04:41:58 +00:00
|
|
|
// Update: The setCharFont() routine in text2.cpp already
|
2000-01-11 01:59:00 +00:00
|
|
|
// reduces font, so we don't need to do that here. (Asger)
|
2010-09-14 14:00:29 +00:00
|
|
|
|
2007-10-19 14:35:05 +00:00
|
|
|
d->fontlist_.set(pos, font);
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
2001-03-09 00:56:42 +00:00
|
|
|
|
2003-04-29 10:56:15 +00:00
|
|
|
void Paragraph::makeSameLayout(Paragraph const & par)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2008-03-06 22:06:24 +00:00
|
|
|
d->layout_ = par.d->layout_;
|
2008-02-20 10:21:00 +00:00
|
|
|
d->params_ = par.d->params_;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-01-21 21:11:27 +00:00
|
|
|
bool Paragraph::stripLeadingSpaces(bool trackChanges)
|
2000-05-26 16:13:01 +00:00
|
|
|
{
|
2003-06-07 17:45:43 +00:00
|
|
|
if (isFreeSpacing())
|
2007-02-20 08:34:04 +00:00
|
|
|
return false;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2007-01-14 18:27:27 +00:00
|
|
|
int pos = 0;
|
|
|
|
int count = 0;
|
|
|
|
|
|
|
|
while (pos < size() && (isNewline(pos) || isLineSeparator(pos))) {
|
|
|
|
if (eraseChar(pos, trackChanges))
|
|
|
|
++count;
|
|
|
|
else
|
|
|
|
++pos;
|
2000-05-26 16:13:01 +00:00
|
|
|
}
|
2001-04-27 07:19:08 +00:00
|
|
|
|
2007-02-20 08:34:04 +00:00
|
|
|
return count > 0 || pos > 0;
|
2000-05-26 16:13:01 +00:00
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
2008-03-06 22:06:24 +00:00
|
|
|
return par.d->layout_ == d->layout_
|
2008-03-06 21:31:27 +00:00
|
|
|
&& d->params_.sameLayout(par.d->params_);
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
1999-11-15 12:01:38 +00:00
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
depth_type Paragraph::getDepth() const
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2008-02-20 10:21:00 +00:00
|
|
|
return d->params_.depth();
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
depth_type Paragraph::getMaxDepthAfter() const
|
2002-02-28 15:07:11 +00:00
|
|
|
{
|
2008-03-06 22:06:24 +00:00
|
|
|
if (d->layout_->isEnvironment())
|
2008-02-20 10:21:00 +00:00
|
|
|
return d->params_.depth() + 1;
|
2002-02-28 15:07:11 +00:00
|
|
|
else
|
2008-02-20 10:21:00 +00:00
|
|
|
return d->params_.depth();
|
2002-02-28 15:07:11 +00:00
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
2008-02-20 10:21:00 +00:00
|
|
|
if (d->params_.align() == LYX_ALIGN_LAYOUT)
|
2008-03-06 22:06:24 +00:00
|
|
|
return d->layout_->align;
|
2006-12-17 10:11:28 +00:00
|
|
|
else
|
2008-02-20 10:21:00 +00:00
|
|
|
return d->params_.align();
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-23 16:45:38 +00:00
|
|
|
docstring const & Paragraph::labelString() const
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2008-02-20 10:21:00 +00:00
|
|
|
return d->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
|
2006-10-20 19:26:23 +00:00
|
|
|
docstring const Paragraph::getLabelWidthString() const
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2009-05-25 08:13:56 +00:00
|
|
|
if (d->layout_->margintype == MARGIN_MANUAL
|
|
|
|
|| d->layout_->latextype == LATEX_BIB_ENVIRONMENT)
|
2008-02-20 10:21:00 +00:00
|
|
|
return d->params_.labelWidthString();
|
1999-09-27 18:44:28 +00:00
|
|
|
else
|
2006-10-20 19:26:23 +00:00
|
|
|
return _("Senseless with this layout!");
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-20 19:26:23 +00:00
|
|
|
void Paragraph::setLabelWidthString(docstring const & s)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2008-02-20 10:21:00 +00:00
|
|
|
d->params_.labelWidthString(s);
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-09-14 14:00:29 +00:00
|
|
|
docstring Paragraph::expandLabel(Layout const & layout,
|
2010-01-21 18:46:20 +00:00
|
|
|
BufferParams const & bparams) const
|
2010-09-14 14:00:29 +00:00
|
|
|
{
|
|
|
|
return expandParagraphLabel(layout, bparams, true);
|
2010-01-21 18:46:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-09-14 14:00:29 +00:00
|
|
|
docstring Paragraph::expandDocBookLabel(Layout const & layout,
|
2010-01-21 18:46:20 +00:00
|
|
|
BufferParams const & bparams) const
|
|
|
|
{
|
|
|
|
return expandParagraphLabel(layout, bparams, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
docstring Paragraph::expandParagraphLabel(Layout const & layout,
|
2007-01-15 16:58:14 +00:00
|
|
|
BufferParams const & bparams, bool process_appendix) const
|
|
|
|
{
|
2008-02-28 01:42:02 +00:00
|
|
|
DocumentClass const & tclass = bparams.documentClass();
|
2009-07-12 20:09:53 +00:00
|
|
|
string const & lang = getParLanguage(bparams)->code();
|
2009-07-12 22:14:49 +00:00
|
|
|
bool const in_appendix = process_appendix && d->params_.appendix();
|
|
|
|
docstring fmt = translateIfPossible(layout.labelstring(in_appendix), lang);
|
2007-01-15 16:58:14 +00:00
|
|
|
|
2010-09-14 14:00:29 +00:00
|
|
|
if (fmt.empty() && layout.labeltype == LABEL_COUNTER
|
2008-03-06 21:31:27 +00:00
|
|
|
&& !layout.counter.empty())
|
2009-07-12 20:09:53 +00:00
|
|
|
return tclass.counters().theCounter(layout.counter, lang);
|
2007-08-16 11:12:56 +00:00
|
|
|
|
2007-01-15 16:58:14 +00:00
|
|
|
// handle 'inherited level parts' in 'fmt',
|
|
|
|
// i.e. the stuff between '@' in '@Section@.\arabic{subsection}'
|
|
|
|
size_t const i = fmt.find('@', 0);
|
|
|
|
if (i != docstring::npos) {
|
|
|
|
size_t const j = fmt.find('@', i + 1);
|
|
|
|
if (j != docstring::npos) {
|
|
|
|
docstring parent(fmt, i + 1, j - i - 1);
|
2007-10-03 16:57:01 +00:00
|
|
|
docstring label = from_ascii("??");
|
2007-10-03 02:39:11 +00:00
|
|
|
if (tclass.hasLayout(parent))
|
2010-01-21 18:46:20 +00:00
|
|
|
docstring label = expandParagraphLabel(tclass[parent], bparams,
|
2007-08-16 11:12:56 +00:00
|
|
|
process_appendix);
|
2010-09-14 14:00:29 +00:00
|
|
|
fmt = docstring(fmt, 0, i) + label
|
2007-08-16 11:12:56 +00:00
|
|
|
+ docstring(fmt, j + 1, docstring::npos);
|
2007-01-15 16:58:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-07-12 20:09:53 +00:00
|
|
|
return tclass.counters().counterLabel(fmt, lang);
|
2007-01-15 16:58:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-03-06 20:01:30 +00:00
|
|
|
void Paragraph::applyLayout(Layout const & new_layout)
|
2001-04-04 21:47:26 +00:00
|
|
|
{
|
2008-03-06 22:06:24 +00:00
|
|
|
d->layout_ = &new_layout;
|
2008-02-20 10:21:00 +00:00
|
|
|
LyXAlignment const oldAlign = d->params_.align();
|
2010-09-14 14:00:29 +00:00
|
|
|
|
2008-03-06 22:06:24 +00:00
|
|
|
if (!(oldAlign & d->layout_->alignpossible)) {
|
2010-09-14 14:00:29 +00:00
|
|
|
frontend::Alert::warning(_("Alignment not permitted"),
|
2007-07-11 16:39:26 +00:00
|
|
|
_("The new layout does not permit the alignment previously used.\nSetting to default."));
|
2008-02-20 10:21:00 +00:00
|
|
|
d->params_.align(LYX_ALIGN_LAYOUT);
|
2007-07-11 16:39:26 +00:00
|
|
|
}
|
2001-04-04 21:47:26 +00:00
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
2004-03-24 17:06:17 +00:00
|
|
|
pos_type Paragraph::beginOfBody() const
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2007-10-23 13:25:05 +00:00
|
|
|
return d->begin_of_body_;
|
2003-11-13 13:43:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Paragraph::setBeginOfBody()
|
|
|
|
{
|
2008-03-06 22:06:24 +00:00
|
|
|
if (d->layout_->labeltype != LABEL_MANUAL) {
|
2007-10-23 13:25:05 +00:00
|
|
|
d->begin_of_body_ = 0;
|
2003-11-13 13:43:44 +00:00
|
|
|
return;
|
|
|
|
}
|
2003-02-14 00:41:44 +00:00
|
|
|
|
1999-11-15 12:01:38 +00:00
|
|
|
// Unroll the first two cycles of the loop
|
|
|
|
// and remember the previous character to
|
2003-10-17 10:31:47 +00:00
|
|
|
// remove unnecessary getChar() calls
|
2001-11-26 16:42:04 +00:00
|
|
|
pos_type i = 0;
|
2003-11-13 13:43:44 +00:00
|
|
|
pos_type end = size();
|
|
|
|
if (i < end && !isNewline(i)) {
|
1999-11-04 01:40:20 +00:00
|
|
|
++i;
|
2006-10-22 10:15:23 +00:00
|
|
|
char_type previous_char = 0;
|
|
|
|
char_type temp = 0;
|
2003-11-13 13:43:44 +00:00
|
|
|
if (i < end) {
|
2007-10-24 07:08:55 +00:00
|
|
|
previous_char = d->text_[i];
|
2003-03-12 19:16:42 +00:00
|
|
|
if (!isNewline(i)) {
|
1999-11-04 01:40:20 +00:00
|
|
|
++i;
|
2003-11-13 13:43:44 +00:00
|
|
|
while (i < end && previous_char != ' ') {
|
2007-10-24 07:08:55 +00:00
|
|
|
temp = d->text_[i];
|
2003-03-12 19:16:42 +00:00
|
|
|
if (isNewline(i))
|
|
|
|
break;
|
|
|
|
++i;
|
|
|
|
previous_char = temp;
|
|
|
|
}
|
1999-11-04 01:40:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2007-10-23 13:25:05 +00:00
|
|
|
d->begin_of_body_ = i;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
2003-02-17 15:16:14 +00:00
|
|
|
|
2008-03-15 03:19:45 +00:00
|
|
|
bool Paragraph::allowParagraphCustomization() const
|
|
|
|
{
|
2008-09-13 17:01:54 +00:00
|
|
|
return inInset().allowParagraphCustomization();
|
2008-03-15 03:19:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-07-10 17:41:52 +00:00
|
|
|
bool Paragraph::usePlainLayout() const
|
Fix bug 4037 and related problems. The patch has been cleaned up a bit
from the one posted to the list.
The basic idea has two parts. First, we hard code an "empty layout"
(called PlainLayout, for want of a better name) in TextClass and read it
before doing anything else. It can therefore be customized by classes,
if they want---say, to make it left-aligned. Second, InsetText's are
divided into three types: (i) normal ones, that use the "default" layout
defined by the text class; (ii) highly restrictive ones, such as ERT and
(not quite an inset) table cells, which demand the empty layout; (iii)
middling ones, which default to an empty layout and use the empty layout
in place of the default. (This is so we don't get the same problem we
had with ERT in e.g. footnotes.) The type of inset is signaled by new
methods InsetText::forceEmptyLayout() and InsetText::useEmptyLayout().
(The latter might better be called: useEmptyLayoutInsteadOfDefault(),
but that's silly.) The old InsetText::forceDefaultParagraphs() has been
split into these, plus a new method InsetText::allowParagraphCustomization().
A lot of the changes just adapt to this change.
The other big change is in GuiToolbar: We want to show LyXDefault and
the "default" layout only when they're active.
There are a handful of places where I'm not entirely sure whether we
should be using forceEmptyLayout or !allowParagraphCustomization() or
both. The InsetCaption is one of these. These places, and some others,
are marked with FIXMEs, so I'd appreciate it if people would search
through the patch and let me know whether these need changing. If they
don't, the FIXMEs can be deleted.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@22966 a592a061-630c-0410-9148-cb99ea01b6c8
2008-02-12 17:31:07 +00:00
|
|
|
{
|
2008-09-13 17:01:54 +00:00
|
|
|
return inInset().usePlainLayout();
|
2004-04-08 15:03:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-01-26 11:04:42 +00:00
|
|
|
bool Paragraph::isPassThru() const
|
|
|
|
{
|
|
|
|
return inInset().getLayout().isPassThru() || d->layout_->pass_thru;
|
|
|
|
}
|
|
|
|
|
2003-09-19 07:25:36 +00:00
|
|
|
namespace {
|
|
|
|
|
2003-12-01 13:35:49 +00:00
|
|
|
// paragraphs inside floats need different alignment tags to avoid
|
2004-01-28 16:21:29 +00:00
|
|
|
// unwanted space
|
2003-09-19 07:25:36 +00:00
|
|
|
|
2007-10-13 09:04:52 +00:00
|
|
|
bool noTrivlistCentering(InsetCode code)
|
2003-09-19 07:25:36 +00:00
|
|
|
{
|
2008-09-18 14:51:16 +00:00
|
|
|
return code == FLOAT_CODE
|
|
|
|
|| code == WRAP_CODE
|
|
|
|
|| code == CELL_CODE;
|
2003-09-19 07:25:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
string correction(string const & orig)
|
|
|
|
{
|
|
|
|
if (orig == "flushleft")
|
|
|
|
return "raggedright";
|
|
|
|
if (orig == "flushright")
|
|
|
|
return "raggedleft";
|
|
|
|
if (orig == "center")
|
|
|
|
return "centering";
|
|
|
|
return orig;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
string const corrected_env(string const & suffix, string const & env,
|
2008-09-18 14:51:16 +00:00
|
|
|
InsetCode code, bool const lastpar)
|
2003-09-19 07:25:36 +00:00
|
|
|
{
|
|
|
|
string output = suffix + "{";
|
2008-09-18 14:51:16 +00:00
|
|
|
if (noTrivlistCentering(code)) {
|
|
|
|
if (lastpar) {
|
|
|
|
// the last paragraph in non-trivlist-aligned
|
|
|
|
// context is special (to avoid unwanted whitespace)
|
|
|
|
if (suffix == "\\begin")
|
|
|
|
return "\\" + correction(env) + "{}";
|
|
|
|
return string();
|
|
|
|
}
|
2003-09-19 07:25:36 +00:00
|
|
|
output += correction(env);
|
2008-09-18 14:51:16 +00:00
|
|
|
} else
|
2003-09-19 07:25:36 +00:00
|
|
|
output += env;
|
2006-12-04 07:27:49 +00:00
|
|
|
output += "}";
|
|
|
|
if (suffix == "\\begin")
|
|
|
|
output += "\n";
|
|
|
|
return output;
|
2003-09-19 07:25:36 +00:00
|
|
|
}
|
2003-09-21 23:00:47 +00:00
|
|
|
|
2006-12-08 18:20:38 +00:00
|
|
|
|
2011-02-10 20:02:48 +00:00
|
|
|
void adjust_column(string const & str, int & column)
|
2006-12-08 18:20:38 +00:00
|
|
|
{
|
|
|
|
if (!contains(str, "\n"))
|
2007-02-25 13:20:29 +00:00
|
|
|
column += str.size();
|
2006-12-08 18:20:38 +00:00
|
|
|
else {
|
|
|
|
string tmp;
|
2007-02-25 13:20:29 +00:00
|
|
|
column = rsplit(str, tmp, '\n').size();
|
2006-12-08 18:20:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-09-19 07:25:36 +00:00
|
|
|
} // namespace anon
|
|
|
|
|
2002-08-15 07:53:46 +00:00
|
|
|
|
2007-10-23 13:25:05 +00:00
|
|
|
int Paragraph::Private::startTeXParParams(BufferParams const & bparams,
|
2011-02-10 20:02:48 +00:00
|
|
|
otexstream & os, OutputParams const & runparams) const
|
2002-01-19 20:24:04 +00:00
|
|
|
{
|
|
|
|
int column = 0;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2011-01-26 11:04:42 +00:00
|
|
|
if (params_.noindent() && !layout_->pass_thru) {
|
2002-01-19 20:24:04 +00:00
|
|
|
os << "\\noindent ";
|
|
|
|
column += 10;
|
|
|
|
}
|
2010-09-14 14:00:29 +00:00
|
|
|
|
2007-10-23 13:25:05 +00:00
|
|
|
LyXAlignment const curAlign = params_.align();
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2007-10-23 13:25:05 +00:00
|
|
|
if (curAlign == layout_->align)
|
2007-06-28 00:48:06 +00:00
|
|
|
return column;
|
|
|
|
|
|
|
|
switch (curAlign) {
|
2002-07-01 14:31:57 +00:00
|
|
|
case LYX_ALIGN_NONE:
|
|
|
|
case LYX_ALIGN_BLOCK:
|
|
|
|
case LYX_ALIGN_LAYOUT:
|
|
|
|
case LYX_ALIGN_SPECIAL:
|
2010-06-05 08:26:00 +00:00
|
|
|
case LYX_ALIGN_DECIMAL:
|
2002-07-01 14:31:57 +00:00
|
|
|
break;
|
|
|
|
case LYX_ALIGN_LEFT:
|
|
|
|
case LYX_ALIGN_RIGHT:
|
|
|
|
case LYX_ALIGN_CENTER:
|
2008-09-18 14:51:16 +00:00
|
|
|
if (runparams.moving_arg) {
|
2002-07-01 14:31:57 +00:00
|
|
|
os << "\\protect";
|
2004-05-17 11:28:31 +00:00
|
|
|
column += 8;
|
2002-07-01 14:31:57 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2002-08-10 15:21:07 +00:00
|
|
|
|
2008-09-18 14:51:16 +00:00
|
|
|
string const begin_tag = "\\begin";
|
2009-08-09 14:33:35 +00:00
|
|
|
InsetCode code = ownerCode();
|
2008-09-18 14:51:16 +00:00
|
|
|
bool const lastpar = runparams.isLastPar;
|
|
|
|
|
2007-06-28 00:48:06 +00:00
|
|
|
switch (curAlign) {
|
2002-01-19 20:24:04 +00:00
|
|
|
case LYX_ALIGN_NONE:
|
|
|
|
case LYX_ALIGN_BLOCK:
|
|
|
|
case LYX_ALIGN_LAYOUT:
|
|
|
|
case LYX_ALIGN_SPECIAL:
|
2010-06-05 08:26:00 +00:00
|
|
|
case LYX_ALIGN_DECIMAL:
|
2002-01-19 20:24:04 +00:00
|
|
|
break;
|
2003-09-19 07:25:36 +00:00
|
|
|
case LYX_ALIGN_LEFT: {
|
|
|
|
string output;
|
2007-10-23 13:25:05 +00:00
|
|
|
if (owner_->getParLanguage(bparams)->babel() != "hebrew")
|
2008-09-18 14:51:16 +00:00
|
|
|
output = corrected_env(begin_tag, "flushleft", code, lastpar);
|
2003-09-19 07:25:36 +00:00
|
|
|
else
|
2008-09-18 14:51:16 +00:00
|
|
|
output = corrected_env(begin_tag, "flushright", code, lastpar);
|
2006-10-21 00:16:43 +00:00
|
|
|
os << from_ascii(output);
|
2011-02-10 20:02:48 +00:00
|
|
|
adjust_column(output, column);
|
2002-01-19 20:24:04 +00:00
|
|
|
break;
|
2003-09-19 07:25:36 +00:00
|
|
|
} case LYX_ALIGN_RIGHT: {
|
|
|
|
string output;
|
2007-10-23 13:25:05 +00:00
|
|
|
if (owner_->getParLanguage(bparams)->babel() != "hebrew")
|
2008-09-18 14:51:16 +00:00
|
|
|
output = corrected_env(begin_tag, "flushright", code, lastpar);
|
2003-09-19 07:25:36 +00:00
|
|
|
else
|
2008-09-18 14:51:16 +00:00
|
|
|
output = corrected_env(begin_tag, "flushleft", code, lastpar);
|
2006-10-21 00:16:43 +00:00
|
|
|
os << from_ascii(output);
|
2011-02-10 20:02:48 +00:00
|
|
|
adjust_column(output, column);
|
2002-01-19 20:24:04 +00:00
|
|
|
break;
|
2003-09-19 07:25:36 +00:00
|
|
|
} case LYX_ALIGN_CENTER: {
|
|
|
|
string output;
|
2008-09-18 14:51:16 +00:00
|
|
|
output = corrected_env(begin_tag, "center", code, lastpar);
|
2006-10-21 00:16:43 +00:00
|
|
|
os << from_ascii(output);
|
2011-02-10 20:02:48 +00:00
|
|
|
adjust_column(output, column);
|
2002-01-19 20:24:04 +00:00
|
|
|
break;
|
|
|
|
}
|
2003-09-19 07:25:36 +00:00
|
|
|
}
|
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
|
|
|
|
2011-06-22 16:21:03 +00:00
|
|
|
bool Paragraph::Private::endTeXParParams(BufferParams const & bparams,
|
2011-02-10 20:02:48 +00:00
|
|
|
otexstream & os, OutputParams const & runparams) const
|
2002-01-19 20:24:04 +00:00
|
|
|
{
|
2009-06-18 06:52:38 +00:00
|
|
|
LyXAlignment const curAlign = params_.align();
|
|
|
|
|
|
|
|
if (curAlign == layout_->align)
|
2011-06-22 16:21:03 +00:00
|
|
|
return false;
|
2009-06-18 06:52:38 +00:00
|
|
|
|
|
|
|
switch (curAlign) {
|
2002-07-01 14:31:57 +00:00
|
|
|
case LYX_ALIGN_NONE:
|
|
|
|
case LYX_ALIGN_BLOCK:
|
|
|
|
case LYX_ALIGN_LAYOUT:
|
|
|
|
case LYX_ALIGN_SPECIAL:
|
2010-06-05 08:26:00 +00:00
|
|
|
case LYX_ALIGN_DECIMAL:
|
2002-07-01 14:31:57 +00:00
|
|
|
break;
|
|
|
|
case LYX_ALIGN_LEFT:
|
|
|
|
case LYX_ALIGN_RIGHT:
|
|
|
|
case LYX_ALIGN_CENTER:
|
2011-06-22 16:21:03 +00:00
|
|
|
if (runparams.moving_arg)
|
2002-07-01 14:31:57 +00:00
|
|
|
os << "\\protect";
|
|
|
|
break;
|
|
|
|
}
|
2002-08-10 15:21:07 +00:00
|
|
|
|
2011-06-22 16:21:03 +00:00
|
|
|
string output;
|
2008-09-18 14:51:16 +00:00
|
|
|
string const end_tag = "\n\\par\\end";
|
2009-08-09 14:33:35 +00:00
|
|
|
InsetCode code = ownerCode();
|
2008-09-18 14:51:16 +00:00
|
|
|
bool const lastpar = runparams.isLastPar;
|
|
|
|
|
2009-06-18 06:52:38 +00:00
|
|
|
switch (curAlign) {
|
2002-01-19 20:24:04 +00:00
|
|
|
case LYX_ALIGN_NONE:
|
|
|
|
case LYX_ALIGN_BLOCK:
|
|
|
|
case LYX_ALIGN_LAYOUT:
|
|
|
|
case LYX_ALIGN_SPECIAL:
|
2010-06-05 08:26:00 +00:00
|
|
|
case LYX_ALIGN_DECIMAL:
|
2002-01-19 20:24:04 +00:00
|
|
|
break;
|
2003-09-19 07:25:36 +00:00
|
|
|
case LYX_ALIGN_LEFT: {
|
2007-10-23 13:25:05 +00:00
|
|
|
if (owner_->getParLanguage(bparams)->babel() != "hebrew")
|
2008-09-18 14:51:16 +00:00
|
|
|
output = corrected_env(end_tag, "flushleft", code, lastpar);
|
2003-09-19 07:25:36 +00:00
|
|
|
else
|
2008-09-18 14:51:16 +00:00
|
|
|
output = corrected_env(end_tag, "flushright", code, lastpar);
|
2006-10-21 00:16:43 +00:00
|
|
|
os << from_ascii(output);
|
2002-01-19 20:24:04 +00:00
|
|
|
break;
|
2003-09-19 07:25:36 +00:00
|
|
|
} case LYX_ALIGN_RIGHT: {
|
2007-10-23 13:25:05 +00:00
|
|
|
if (owner_->getParLanguage(bparams)->babel() != "hebrew")
|
2008-09-18 14:51:16 +00:00
|
|
|
output = corrected_env(end_tag, "flushright", code, lastpar);
|
2003-09-19 07:25:36 +00:00
|
|
|
else
|
2008-09-18 14:51:16 +00:00
|
|
|
output = corrected_env(end_tag, "flushleft", code, lastpar);
|
2006-10-21 00:16:43 +00:00
|
|
|
os << from_ascii(output);
|
2002-01-19 20:24:04 +00:00
|
|
|
break;
|
2003-09-19 07:25:36 +00:00
|
|
|
} case LYX_ALIGN_CENTER: {
|
2008-09-18 14:51:16 +00:00
|
|
|
output = corrected_env(end_tag, "center", code, lastpar);
|
2006-10-21 00:16:43 +00:00
|
|
|
os << from_ascii(output);
|
2002-01-19 20:24:04 +00:00
|
|
|
break;
|
|
|
|
}
|
2003-09-19 07:25:36 +00:00
|
|
|
}
|
|
|
|
|
2011-06-22 16:21:03 +00:00
|
|
|
return !output.empty() || lastpar;
|
2002-01-19 20:24:04 +00:00
|
|
|
}
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
// This one spits out the text of the paragraph
|
2010-06-15 15:49:24 +00:00
|
|
|
void Paragraph::latex(BufferParams const & bparams,
|
2008-11-16 00:12:21 +00:00
|
|
|
Font const & outerfont,
|
2011-02-10 20:02:48 +00:00
|
|
|
otexstream & os,
|
2008-11-16 00:12:21 +00:00
|
|
|
OutputParams const & runparams,
|
2010-06-15 15:37:39 +00:00
|
|
|
int start_pos, int end_pos, bool force) const
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2008-10-06 10:14:41 +00:00
|
|
|
LYXERR(Debug::LATEX, "Paragraph::latex... " << this);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2008-10-31 14:58:53 +00:00
|
|
|
// FIXME This check should not be needed. Perhaps issue an
|
|
|
|
// error if it triggers.
|
2009-08-09 15:38:55 +00:00
|
|
|
Layout const & style = inInset().forcePlainLayout() ?
|
2008-10-31 14:58:53 +00:00
|
|
|
bparams.documentClass().plainLayout() : *d->layout_;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2010-06-15 15:37:39 +00:00
|
|
|
if (!force && style.inpreamble)
|
2010-06-15 15:49:24 +00:00
|
|
|
return;
|
2010-06-15 15:37:39 +00:00
|
|
|
|
|
|
|
bool const allowcust = allowParagraphCustomization();
|
|
|
|
|
2007-01-07 17:58:36 +00:00
|
|
|
// Current base font for all inherited font changes, without any
|
|
|
|
// change caused by an individual character, except for the language:
|
|
|
|
// It is set to the language of the first character.
|
|
|
|
// As long as we are in the label, this font is the base font of the
|
2007-01-07 18:40:06 +00:00
|
|
|
// label. Before the first body character it is set to the base font
|
2007-01-07 17:58:36 +00:00
|
|
|
// of the body.
|
2007-04-29 18:17:15 +00:00
|
|
|
Font basefont;
|
2005-02-08 13:18:05 +00:00
|
|
|
|
2000-01-11 01:59:00 +00:00
|
|
|
// Maybe we have to create a optional argument.
|
2003-11-13 13:43:44 +00:00
|
|
|
pos_type body_pos = beginOfBody();
|
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) {
|
2010-01-24 10:32:22 +00:00
|
|
|
// the optional argument is kept in curly brackets in
|
|
|
|
// case it contains a ']'
|
2011-11-13 10:40:07 +00:00
|
|
|
// This is not strictly needed, but if this is changed it
|
|
|
|
// would be a file format change, and tex2lyx would need
|
|
|
|
// to be adjusted, since it unconditionally removes the
|
|
|
|
// braces when it parses \item.
|
2010-01-24 10:32:22 +00:00
|
|
|
os << "[{";
|
|
|
|
column += 2;
|
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
|
|
|
}
|
|
|
|
|
|
|
|
// Which font is currently active?
|
2007-04-29 18:17:15 +00:00
|
|
|
Font running_font(basefont);
|
1999-09-27 18:44:28 +00:00
|
|
|
// Do we have an open font change?
|
|
|
|
bool open_font = false;
|
|
|
|
|
2007-05-08 17:46:03 +00:00
|
|
|
Change runningChange = Change(Change::UNCHANGED);
|
2003-03-03 21:15:49 +00:00
|
|
|
|
2009-08-03 18:31:20 +00:00
|
|
|
Encoding const * const prev_encoding = runparams.encoding;
|
|
|
|
|
2011-02-10 20:02:48 +00:00
|
|
|
os.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()) {
|
2008-03-06 21:31:27 +00:00
|
|
|
if (style.isCommand()) {
|
2002-01-19 20:24:04 +00:00
|
|
|
os << '{';
|
|
|
|
++column;
|
|
|
|
}
|
2008-10-31 14:58:53 +00:00
|
|
|
if (allowcust)
|
2011-02-10 20:02:48 +00:00
|
|
|
column += d->startTeXParParams(bparams, os, runparams);
|
2002-01-19 20:24:04 +00:00
|
|
|
}
|
|
|
|
|
2001-11-26 16:42:04 +00:00
|
|
|
for (pos_type i = 0; i < size(); ++i) {
|
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) {
|
2007-01-09 19:25:40 +00:00
|
|
|
column += running_font.latexWriteEndChanges(
|
2007-05-06 20:26:02 +00:00
|
|
|
os, bparams, runparams,
|
|
|
|
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;
|
2007-02-09 23:52:22 +00:00
|
|
|
|
2007-05-08 17:46:03 +00:00
|
|
|
column += Changes::latexMarkChange(os, bparams,
|
2009-10-12 16:22:05 +00:00
|
|
|
runningChange, Change(Change::UNCHANGED),
|
|
|
|
runparams);
|
2007-05-08 17:46:03 +00:00
|
|
|
runningChange = Change(Change::UNCHANGED);
|
2007-02-09 23:52:22 +00:00
|
|
|
|
2010-01-24 10:32:22 +00:00
|
|
|
os << "}] ";
|
|
|
|
column +=3;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
2008-03-06 21:31:27 +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
|
|
|
|
2008-10-31 14:58:53 +00:00
|
|
|
if (allowcust)
|
2007-10-23 13:25:05 +00:00
|
|
|
column += d->startTeXParParams(bparams, os,
|
2008-09-18 14:51:16 +00:00
|
|
|
runparams);
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2011-03-20 15:44:40 +00:00
|
|
|
Change const & change = runparams.inDeletedInset
|
|
|
|
? runparams.changeOfDeletedInset : lookupChange(i);
|
2007-05-08 17:46:03 +00:00
|
|
|
|
|
|
|
if (bparams.outputChanges && runningChange != change) {
|
|
|
|
if (open_font) {
|
|
|
|
column += running_font.latexWriteEndChanges(
|
|
|
|
os, bparams, runparams, basefont, basefont);
|
|
|
|
open_font = false;
|
|
|
|
}
|
|
|
|
basefont = getLayoutFont(bparams, outerfont);
|
|
|
|
running_font = basefont;
|
|
|
|
|
2009-10-12 16:22:05 +00:00
|
|
|
column += Changes::latexMarkChange(os, bparams, runningChange,
|
|
|
|
change, runparams);
|
2007-05-08 17:46:03 +00:00
|
|
|
runningChange = change;
|
|
|
|
}
|
2007-02-09 23:52:22 +00:00
|
|
|
|
|
|
|
// do not output text which is marked deleted
|
|
|
|
// if change tracking output is disabled
|
2009-08-04 22:15:17 +00:00
|
|
|
if (!bparams.outputChanges && change.deleted()) {
|
2007-02-09 23:52:22 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
++column;
|
2007-05-28 22:27:45 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
// Fully instantiated font
|
2007-04-29 18:17:15 +00:00
|
|
|
Font const font = getFont(bparams, i, outerfont);
|
2001-04-27 07:19:08 +00:00
|
|
|
|
2007-04-29 18:17:15 +00:00
|
|
|
Font const last_font = running_font;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2007-02-12 20:51:00 +00:00
|
|
|
// Do we need to close the previous font?
|
2002-04-11 13:35:03 +00:00
|
|
|
if (open_font &&
|
|
|
|
(font != running_font ||
|
|
|
|
font.language() != running_font.language()))
|
|
|
|
{
|
2007-01-09 19:25:40 +00:00
|
|
|
column += running_font.latexWriteEndChanges(
|
2007-05-06 20:26:02 +00:00
|
|
|
os, bparams, runparams, basefont,
|
2007-03-18 10:59:16 +00:00
|
|
|
(i == body_pos-1) ? basefont : font);
|
1999-09-27 18:44:28 +00:00
|
|
|
running_font = basefont;
|
|
|
|
open_font = false;
|
|
|
|
}
|
|
|
|
|
2010-11-22 12:10:16 +00:00
|
|
|
string const running_lang = runparams.use_polyglossia ?
|
|
|
|
running_font.language()->polyglossia() : running_font.language()->babel();
|
2007-12-08 11:21:00 +00:00
|
|
|
// close babel's font environment before opening CJK.
|
2010-11-22 12:10:16 +00:00
|
|
|
string const lang_end_command = runparams.use_polyglossia ?
|
|
|
|
"\\end{$$lang}" : lyxrc.language_command_end;
|
|
|
|
if (!running_lang.empty() &&
|
2007-12-08 11:21:00 +00:00
|
|
|
font.language()->encoding()->package() == Encoding::CJK) {
|
2010-11-22 12:10:16 +00:00
|
|
|
string end_tag = subst(lang_end_command,
|
2007-12-08 11:21:00 +00:00
|
|
|
"$$lang",
|
2010-11-22 12:10:16 +00:00
|
|
|
running_lang);
|
2007-12-08 11:21:00 +00:00
|
|
|
os << from_ascii(end_tag);
|
|
|
|
column += end_tag.length();
|
|
|
|
}
|
|
|
|
|
2007-10-23 18:23:03 +00:00
|
|
|
// Switch file encoding if necessary (and allowed)
|
2010-08-07 22:07:49 +00:00
|
|
|
if (!runparams.pass_thru && !style.pass_thru &&
|
2008-07-01 15:16:09 +00:00
|
|
|
runparams.encoding->package() != Encoding::none &&
|
|
|
|
font.language()->encoding()->package() != Encoding::none) {
|
Introduce a wrapper class for odocstream to help ensuring that no
blank lines may be inadvertently output. This is achieved by using two
special iomanip-like variables (breakln and safebreakln) in the lyx::
namespace. When they are inserted in the stream, a newline is output
only if not already at the beginning of a line. The difference between
breakln and safebreakln is that, if needed, the former outputs '\n'
and the latter "%\n".
In future, the new class will also be used for counting the number of
newlines issued. Even if the infractrure for doing that is already in
place, the counting is essentially still done the old way.
There are still places in the code where the functionality of the
class could be used, most probably. ATM, it is used for InsetTabular,
InsetListings, InsetFloat, and InsetText.
The Comment and GreyedOut insets required a special treatment and a
new InsetLayout parameter (Display) has been introduced. The default
for Display is "true", meaning that the corresponding latex
environment is of "display" type, i.e., it stands on its own, whereas
"false" means that the contents appear inline with the text. The
latter is the case for both Comment and GreyedOut insets.
Mostly, the only visible effects on latex exports should be the
disappearing of some redundant % chars and the appearing/disappearing
of null {} latex groups after a comment or lyxgreyedout environments
(they are related to the presence or absence of a space immediately
after those environments), as well as the fact that math environments
are now started on their own lines.
As a last thing, only the latex code between \begin{document} and
\end{document} goes through the new class, the preamble being directly
output through odocstream, as usual.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@37360 a592a061-630c-0410-9148-cb99ea01b6c8
2011-01-29 02:41:13 +00:00
|
|
|
pair<bool, int> const enc_switch =
|
|
|
|
switchEncoding(os.os(), bparams, runparams,
|
|
|
|
*(font.language()->encoding()));
|
2007-07-05 19:19:41 +00:00
|
|
|
if (enc_switch.first) {
|
|
|
|
column += enc_switch.second;
|
2007-05-06 20:26:02 +00:00
|
|
|
runparams.encoding = font.language()->encoding();
|
|
|
|
}
|
2007-03-18 10:59:16 +00:00
|
|
|
}
|
|
|
|
|
2007-10-24 07:08:55 +00:00
|
|
|
char_type const c = d->text_[i];
|
2007-10-22 13:09:16 +00:00
|
|
|
|
2007-02-11 23:52:07 +00:00
|
|
|
// Do we need to change font?
|
|
|
|
if ((font != running_font ||
|
|
|
|
font.language() != running_font.language()) &&
|
|
|
|
i != body_pos - 1)
|
|
|
|
{
|
2007-07-12 13:25:44 +00:00
|
|
|
odocstringstream ods;
|
|
|
|
column += font.latexWriteStartChanges(ods, bparams,
|
2007-05-28 22:27:45 +00:00
|
|
|
runparams, basefont,
|
|
|
|
last_font);
|
2007-02-11 23:52:07 +00:00
|
|
|
running_font = font;
|
|
|
|
open_font = true;
|
2007-07-12 13:25:44 +00:00
|
|
|
docstring fontchange = ods.str();
|
2009-07-25 10:44:36 +00:00
|
|
|
// check whether the fontchange ends with a \\textcolor
|
|
|
|
// modifier and the text starts with a space (bug 4473)
|
|
|
|
docstring const last_modifier = rsplit(fontchange, '\\');
|
|
|
|
if (prefixIs(last_modifier, from_ascii("textcolor")) && c == ' ')
|
|
|
|
os << fontchange << from_ascii("{}");
|
2007-07-12 13:25:44 +00:00
|
|
|
// check if the fontchange ends with a trailing blank
|
|
|
|
// (like "\small " (see bug 3382)
|
2009-07-25 10:44:36 +00:00
|
|
|
else if (suffixIs(fontchange, ' ') && c == ' ')
|
2010-09-14 14:00:29 +00:00
|
|
|
os << fontchange.substr(0, fontchange.size() - 1)
|
2007-07-12 13:25:44 +00:00
|
|
|
<< from_ascii("{}");
|
|
|
|
else
|
|
|
|
os << fontchange;
|
2007-02-11 23:52:07 +00:00
|
|
|
}
|
|
|
|
|
2008-11-16 18:14:14 +00:00
|
|
|
// FIXME: think about end_pos implementation...
|
|
|
|
if (c == ' ' && i >= start_pos && (end_pos == -1 || i < end_pos)) {
|
2007-10-22 13:09:16 +00:00
|
|
|
// FIXME: integrate this case in latexSpecialChar
|
1999-09-27 18:44:28 +00:00
|
|
|
// Do not print the separation of the optional argument
|
2008-03-06 21:31:27 +00:00
|
|
|
// if style.pass_thru is false. This works because
|
2007-10-22 13:09:16 +00:00
|
|
|
// latexSpecialChar ignores spaces if
|
2008-03-06 21:31:27 +00:00
|
|
|
// style.pass_thru is false.
|
2003-03-09 12:37:22 +00:00
|
|
|
if (i != body_pos - 1) {
|
2011-02-10 20:02:48 +00:00
|
|
|
if (d->simpleTeXBlanks(runparams, os,
|
2008-03-06 21:31:27 +00:00
|
|
|
i, column, font, style)) {
|
Add machinery to output arbitrary unicode characters with LaTeX commands
read from a text file.
* src/encoding.[Ch]
(Encoding::latexChar): New, output a character to LaTeX
(Encoding::validate): New, add needed preamble stuff for a character
(Encodings::read): Read new unicodesymbols file
(Encodings::isCombiningChar): New, is a character a combining char?
* src/paragraph_pimpl.C
(isEncoding): Delete, no longer needed
(getEncoding): New, get the real encoding of a font
(Paragraph::Pimpl::latexSurrogatePair): New, output a surrogate pair
to LaTeX
(Paragraph::Pimpl::simpleTeXBlanks): Use latexSurrogatePair if needed
(Paragraph::Pimpl::simpleTeXSpecialChars): Ditto, and replace several
hardcoded characters with a call of encoding.latexChar()
(Paragraph::Pimpl::validate): replace several hardcoded characters
with a call of encoding.validate()
* src/support/debugstream.h
(basic_debugstream::disable): New, disable the stream completely
(basic_debugstream::enable): New, reenable the stream
* src/lyx_main.[Ch]: Adjust to changes above
* src/paragraph.C: Ditto
* lib/unicodesymbols: New file with UCS4 -> LaTeX command mapping.
It is far from complete yet, but contains most accents on latin
characters.
* lib/Makefile.am: add lib/unicodesymbols
* development/scons/scons_manifest.py: ditto
* development/tools/unicodesymbols.py: Helper script to update
lib/unicodesymbols with new symbols
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16920 a592a061-630c-0410-9148-cb99ea01b6c8
2007-01-28 21:27:45 +00:00
|
|
|
// A surrogate pair was output. We
|
2007-10-22 13:09:16 +00:00
|
|
|
// must not call latexSpecialChar
|
|
|
|
// in this iteration, since it would output
|
Add machinery to output arbitrary unicode characters with LaTeX commands
read from a text file.
* src/encoding.[Ch]
(Encoding::latexChar): New, output a character to LaTeX
(Encoding::validate): New, add needed preamble stuff for a character
(Encodings::read): Read new unicodesymbols file
(Encodings::isCombiningChar): New, is a character a combining char?
* src/paragraph_pimpl.C
(isEncoding): Delete, no longer needed
(getEncoding): New, get the real encoding of a font
(Paragraph::Pimpl::latexSurrogatePair): New, output a surrogate pair
to LaTeX
(Paragraph::Pimpl::simpleTeXBlanks): Use latexSurrogatePair if needed
(Paragraph::Pimpl::simpleTeXSpecialChars): Ditto, and replace several
hardcoded characters with a call of encoding.latexChar()
(Paragraph::Pimpl::validate): replace several hardcoded characters
with a call of encoding.validate()
* src/support/debugstream.h
(basic_debugstream::disable): New, disable the stream completely
(basic_debugstream::enable): New, reenable the stream
* src/lyx_main.[Ch]: Adjust to changes above
* src/paragraph.C: Ditto
* lib/unicodesymbols: New file with UCS4 -> LaTeX command mapping.
It is far from complete yet, but contains most accents on latin
characters.
* lib/Makefile.am: add lib/unicodesymbols
* development/scons/scons_manifest.py: ditto
* development/tools/unicodesymbols.py: Helper script to update
lib/unicodesymbols with new symbols
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16920 a592a061-630c-0410-9148-cb99ea01b6c8
2007-01-28 21:27:45 +00:00
|
|
|
// the combining character again.
|
2007-10-22 13:09:16 +00:00
|
|
|
++i;
|
Add machinery to output arbitrary unicode characters with LaTeX commands
read from a text file.
* src/encoding.[Ch]
(Encoding::latexChar): New, output a character to LaTeX
(Encoding::validate): New, add needed preamble stuff for a character
(Encodings::read): Read new unicodesymbols file
(Encodings::isCombiningChar): New, is a character a combining char?
* src/paragraph_pimpl.C
(isEncoding): Delete, no longer needed
(getEncoding): New, get the real encoding of a font
(Paragraph::Pimpl::latexSurrogatePair): New, output a surrogate pair
to LaTeX
(Paragraph::Pimpl::simpleTeXBlanks): Use latexSurrogatePair if needed
(Paragraph::Pimpl::simpleTeXSpecialChars): Ditto, and replace several
hardcoded characters with a call of encoding.latexChar()
(Paragraph::Pimpl::validate): replace several hardcoded characters
with a call of encoding.validate()
* src/support/debugstream.h
(basic_debugstream::disable): New, disable the stream completely
(basic_debugstream::enable): New, reenable the stream
* src/lyx_main.[Ch]: Adjust to changes above
* src/paragraph.C: Ditto
* lib/unicodesymbols: New file with UCS4 -> LaTeX command mapping.
It is far from complete yet, but contains most accents on latin
characters.
* lib/Makefile.am: add lib/unicodesymbols
* development/scons/scons_manifest.py: ditto
* development/tools/unicodesymbols.py: Helper script to update
lib/unicodesymbols with new symbols
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16920 a592a061-630c-0410-9148-cb99ea01b6c8
2007-01-28 21:27:45 +00:00
|
|
|
continue;
|
2007-10-22 13:09:16 +00:00
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-02-09 23:52:22 +00:00
|
|
|
OutputParams rp = runparams;
|
2008-03-06 21:31:27 +00:00
|
|
|
rp.free_spacing = style.free_spacing;
|
2007-02-09 23:52:22 +00:00
|
|
|
rp.local_font = &font;
|
2008-03-06 21:31:27 +00:00
|
|
|
rp.intitle = style.intitle;
|
2007-10-22 13:09:16 +00:00
|
|
|
|
|
|
|
// Two major modes: LaTeX or plain
|
|
|
|
// Handle here those cases common to both modes
|
|
|
|
// and then split to handle the two modes separately.
|
2008-11-16 00:12:21 +00:00
|
|
|
if (c == META_INSET) {
|
2008-11-16 18:14:14 +00:00
|
|
|
if (i >= start_pos && (end_pos == -1 || i < end_pos)) {
|
2011-02-10 20:02:48 +00:00
|
|
|
d->latexInset(bparams, os, rp, running_font,
|
2008-11-16 18:14:14 +00:00
|
|
|
basefont, outerfont, open_font,
|
|
|
|
runningChange, style, i, column);
|
|
|
|
}
|
2008-11-16 00:12:21 +00:00
|
|
|
} else {
|
2008-11-16 18:14:14 +00:00
|
|
|
if (i >= start_pos && (end_pos == -1 || i < end_pos)) {
|
|
|
|
try {
|
|
|
|
d->latexSpecialChar(os, rp, running_font, runningChange,
|
2011-02-12 11:03:24 +00:00
|
|
|
style, i, end_pos, column);
|
2008-11-16 18:14:14 +00:00
|
|
|
} catch (EncodingException & e) {
|
2007-12-24 13:55:01 +00:00
|
|
|
if (runparams.dryrun) {
|
2007-12-30 21:28:38 +00:00
|
|
|
os << "<" << _("LyX Warning: ")
|
|
|
|
<< _("uncodable character") << " '";
|
2007-12-24 13:55:01 +00:00
|
|
|
os.put(c);
|
2007-12-30 21:28:38 +00:00
|
|
|
os << "'>";
|
2007-12-24 13:55:01 +00:00
|
|
|
} else {
|
|
|
|
// add location information and throw again.
|
|
|
|
e.par_id = id();
|
|
|
|
e.pos = i;
|
|
|
|
throw(e);
|
|
|
|
}
|
2007-12-18 17:51:20 +00:00
|
|
|
}
|
|
|
|
}
|
2008-11-16 00:12:21 +00:00
|
|
|
}
|
2007-07-20 01:28:20 +00:00
|
|
|
|
2008-07-04 14:28:13 +00:00
|
|
|
// Set the encoding to that returned from latexSpecialChar (see
|
2007-07-20 01:28:20 +00:00
|
|
|
// comment for encoding member in OutputParams.h)
|
|
|
|
runparams.encoding = rp.encoding;
|
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_) {
|
2010-06-15 15:37:39 +00:00
|
|
|
running_font.latexWriteEndChanges(os, bparams,
|
|
|
|
runparams, basefont,
|
2007-03-18 10:59:16 +00:00
|
|
|
next_->getFont(bparams, 0, outerfont));
|
2001-04-27 07:19:08 +00:00
|
|
|
} else {
|
2007-05-06 20:26:02 +00:00
|
|
|
running_font.latexWriteEndChanges(os, bparams,
|
|
|
|
runparams, basefont, basefont);
|
2001-04-27 07:19:08 +00:00
|
|
|
}
|
2001-07-27 12:03:36 +00:00
|
|
|
#else
|
2007-08-10 11:47:12 +00:00
|
|
|
//FIXME: For now we ALWAYS have to close the foreign font settings if they are
|
|
|
|
//FIXME: there as we start another \selectlanguage with the next paragraph if
|
|
|
|
//FIXME: we are in need of this. This should be fixed sometime (Jug)
|
2007-05-06 20:26:02 +00:00
|
|
|
running_font.latexWriteEndChanges(os, bparams, runparams,
|
|
|
|
basefont, basefont);
|
2001-07-27 12:03:36 +00:00
|
|
|
#endif
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
2009-10-12 16:22:05 +00:00
|
|
|
column += Changes::latexMarkChange(os, bparams, runningChange,
|
|
|
|
Change(Change::UNCHANGED), runparams);
|
2007-02-09 23:52:22 +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()) {
|
2010-01-24 10:32:22 +00:00
|
|
|
os << "}]~";
|
1999-11-04 01:40:20 +00:00
|
|
|
}
|
1999-11-15 12:01:38 +00:00
|
|
|
|
2011-02-10 20:02:48 +00:00
|
|
|
if (allowcust && d->endTeXParParams(bparams, os, runparams)
|
2009-09-16 20:50:40 +00:00
|
|
|
&& runparams.encoding != prev_encoding) {
|
2009-08-03 18:31:20 +00:00
|
|
|
runparams.encoding = prev_encoding;
|
2010-11-23 12:23:36 +00:00
|
|
|
if (!runparams.isFullUnicode())
|
2009-09-16 20:50:40 +00:00
|
|
|
os << setEncoding(prev_encoding->iconvName());
|
|
|
|
}
|
2001-06-27 14:10:35 +00:00
|
|
|
|
2008-10-06 10:14:41 +00:00
|
|
|
LYXERR(Debug::LATEX, "Paragraph::latex... done " << this);
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-10-30 13:05:31 +00:00
|
|
|
bool Paragraph::emptyTag() const
|
|
|
|
{
|
|
|
|
for (pos_type i = 0; i < size(); ++i) {
|
2008-02-09 10:41:49 +00:00
|
|
|
if (Inset const * inset = getInset(i)) {
|
2007-10-13 09:04:52 +00:00
|
|
|
InsetCode lyx_code = inset->lyxCode();
|
2009-07-16 10:08:13 +00:00
|
|
|
// FIXME testing like that is wrong. What is
|
|
|
|
// the intent?
|
2007-10-13 09:04:52 +00:00
|
|
|
if (lyx_code != TOC_CODE &&
|
|
|
|
lyx_code != INCLUDE_CODE &&
|
|
|
|
lyx_code != GRAPHICS_CODE &&
|
|
|
|
lyx_code != ERT_CODE &&
|
|
|
|
lyx_code != LISTINGS_CODE &&
|
|
|
|
lyx_code != FLOAT_CODE &&
|
|
|
|
lyx_code != TABULAR_CODE) {
|
2004-10-30 13:05:31 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} else {
|
2007-10-24 07:08:55 +00:00
|
|
|
char_type c = d->text_[i];
|
2005-01-06 15:40:49 +00:00
|
|
|
if (c != ' ' && c != '\t')
|
2004-10-30 13:05:31 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-27 20:43:16 +00:00
|
|
|
string Paragraph::getID(Buffer const & buf, OutputParams const & runparams)
|
|
|
|
const
|
2004-05-14 15:47:35 +00:00
|
|
|
{
|
|
|
|
for (pos_type i = 0; i < size(); ++i) {
|
2008-02-09 10:41:49 +00:00
|
|
|
if (Inset const * inset = getInset(i)) {
|
2007-10-13 09:04:52 +00:00
|
|
|
InsetCode lyx_code = inset->lyxCode();
|
|
|
|
if (lyx_code == LABEL_CODE) {
|
2007-10-23 18:51:04 +00:00
|
|
|
InsetLabel const * const il = static_cast<InsetLabel const *>(inset);
|
|
|
|
docstring const & id = il->getParam("name");
|
|
|
|
return "id='" + to_utf8(sgml::cleanID(buf, runparams, id)) + "'";
|
2004-05-14 15:47:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return string();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-06-05 17:44:35 +00:00
|
|
|
pos_type Paragraph::firstWordDocBook(odocstream & os, OutputParams const & runparams)
|
2008-02-27 20:43:16 +00:00
|
|
|
const
|
2004-10-24 23:53:42 +00:00
|
|
|
{
|
|
|
|
pos_type i;
|
|
|
|
for (i = 0; i < size(); ++i) {
|
2008-02-09 10:41:49 +00:00
|
|
|
if (Inset const * inset = getInset(i)) {
|
2008-02-27 20:43:16 +00:00
|
|
|
inset->docbook(os, runparams);
|
2004-10-24 23:53:42 +00:00
|
|
|
} else {
|
2007-10-24 07:08:55 +00:00
|
|
|
char_type c = d->text_[i];
|
2004-10-24 23:53:42 +00:00
|
|
|
if (c == ' ')
|
|
|
|
break;
|
2006-10-21 11:38:43 +00:00
|
|
|
os << sgml::escapeChar(c);
|
2007-05-28 22:27:45 +00:00
|
|
|
}
|
2004-10-24 23:53:42 +00:00
|
|
|
}
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
2004-10-30 22:14:02 +00:00
|
|
|
|
2009-11-19 18:24:19 +00:00
|
|
|
pos_type Paragraph::firstWordLyXHTML(XHTMLStream & xs, OutputParams const & runparams)
|
2009-06-05 17:44:35 +00:00
|
|
|
const
|
|
|
|
{
|
|
|
|
pos_type i;
|
|
|
|
for (i = 0; i < size(); ++i) {
|
|
|
|
if (Inset const * inset = getInset(i)) {
|
2009-11-19 20:25:40 +00:00
|
|
|
inset->xhtml(xs, runparams);
|
2009-06-05 17:44:35 +00:00
|
|
|
} else {
|
|
|
|
char_type c = d->text_[i];
|
|
|
|
if (c == ' ')
|
|
|
|
break;
|
2009-12-10 20:19:41 +00:00
|
|
|
xs << c;
|
2009-06-05 17:44:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-24 15:32:43 +00:00
|
|
|
bool Paragraph::Private::onlyText(Buffer const & buf, Font const & outerfont, pos_type initial) const
|
2004-10-30 22:14:02 +00:00
|
|
|
{
|
2007-04-29 18:17:15 +00:00
|
|
|
Font font_old;
|
2007-10-24 15:32:43 +00:00
|
|
|
pos_type size = text_.size();
|
|
|
|
for (pos_type i = initial; i < size; ++i) {
|
|
|
|
Font font = owner_->getFont(buf.params(), i, outerfont);
|
|
|
|
if (text_[i] == META_INSET)
|
2004-10-30 22:14:02 +00:00
|
|
|
return false;
|
2005-01-06 15:40:49 +00:00
|
|
|
if (i != initial && font != font_old)
|
2004-10-30 22:14:02 +00:00
|
|
|
return false;
|
|
|
|
font_old = font;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-10-30 08:47:16 +00:00
|
|
|
void Paragraph::simpleDocBookOnePar(Buffer const & buf,
|
2006-10-19 21:00:33 +00:00
|
|
|
odocstream & os,
|
2003-11-05 12:06:20 +00:00
|
|
|
OutputParams const & runparams,
|
2007-04-29 18:17:15 +00:00
|
|
|
Font const & outerfont,
|
2004-10-24 23:53:42 +00:00
|
|
|
pos_type initial) const
|
2003-10-30 08:47:16 +00:00
|
|
|
{
|
|
|
|
bool emph_flag = false;
|
|
|
|
|
2008-03-06 22:06:24 +00:00
|
|
|
Layout const & style = *d->layout_;
|
2007-10-28 23:32:18 +00:00
|
|
|
FontInfo font_old =
|
2008-03-06 21:31:27 +00:00
|
|
|
style.labeltype == LABEL_MANUAL ? style.labelfont : style.font;
|
2003-10-30 08:47:16 +00:00
|
|
|
|
2008-03-06 21:31:27 +00:00
|
|
|
if (style.pass_thru && !d->onlyText(buf, outerfont, initial))
|
2004-10-30 22:14:02 +00:00
|
|
|
os << "]]>";
|
2005-01-06 15:40:49 +00:00
|
|
|
|
2003-10-30 08:47:16 +00:00
|
|
|
// parsing main loop
|
2004-10-24 23:53:42 +00:00
|
|
|
for (pos_type i = initial; i < size(); ++i) {
|
2007-04-29 18:17:15 +00:00
|
|
|
Font font = getFont(buf.params(), i, outerfont);
|
2003-10-30 08:47:16 +00:00
|
|
|
|
|
|
|
// handle <emphasis> tag
|
2007-10-28 23:32:18 +00:00
|
|
|
if (font_old.emph() != font.fontInfo().emph()) {
|
2007-10-28 18:51:54 +00:00
|
|
|
if (font.fontInfo().emph() == FONT_ON) {
|
2003-10-30 08:47:16 +00:00
|
|
|
os << "<emphasis>";
|
|
|
|
emph_flag = true;
|
2004-10-24 23:53:42 +00:00
|
|
|
} else if (i != initial) {
|
2003-10-30 08:47:16 +00:00
|
|
|
os << "</emphasis>";
|
|
|
|
emph_flag = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-02-09 10:41:49 +00:00
|
|
|
if (Inset const * inset = getInset(i)) {
|
2008-02-27 20:43:16 +00:00
|
|
|
inset->docbook(os, runparams);
|
2003-10-30 08:47:16 +00:00
|
|
|
} else {
|
2007-10-24 07:08:55 +00:00
|
|
|
char_type c = d->text_[i];
|
2003-10-30 08:47:16 +00:00
|
|
|
|
2008-03-06 21:31:27 +00:00
|
|
|
if (style.pass_thru)
|
2007-05-28 22:27:45 +00:00
|
|
|
os.put(c);
|
2004-10-24 23:53:42 +00:00
|
|
|
else
|
2007-05-28 22:27:45 +00:00
|
|
|
os << sgml::escapeChar(c);
|
2003-10-30 08:47:16 +00:00
|
|
|
}
|
2007-10-28 23:32:18 +00:00
|
|
|
font_old = font.fontInfo();
|
2003-10-30 08:47:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (emph_flag) {
|
|
|
|
os << "</emphasis>";
|
|
|
|
}
|
|
|
|
|
2008-03-06 21:31:27 +00:00
|
|
|
if (style.free_spacing)
|
2003-10-30 08:47:16 +00:00
|
|
|
os << '\n';
|
2008-03-06 21:31:27 +00:00
|
|
|
if (style.pass_thru && !d->onlyText(buf, outerfont, initial))
|
2004-10-30 22:14:02 +00:00
|
|
|
os << "<![CDATA[";
|
2003-10-30 08:47:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-06-12 17:23:17 +00:00
|
|
|
docstring Paragraph::simpleLyXHTMLOnePar(Buffer const & buf,
|
2009-11-19 18:24:19 +00:00
|
|
|
XHTMLStream & xs,
|
2009-06-05 17:44:35 +00:00
|
|
|
OutputParams const & runparams,
|
|
|
|
Font const & outerfont,
|
|
|
|
pos_type initial) const
|
|
|
|
{
|
2009-06-12 17:23:17 +00:00
|
|
|
docstring retval;
|
|
|
|
|
2009-06-05 17:44:35 +00:00
|
|
|
bool emph_flag = false;
|
|
|
|
bool bold_flag = false;
|
|
|
|
|
|
|
|
Layout const & style = *d->layout_;
|
2009-12-10 20:03:35 +00:00
|
|
|
|
2011-06-20 15:55:41 +00:00
|
|
|
xs.startParagraph(allowEmpty());
|
2011-04-03 01:56:20 +00:00
|
|
|
|
2010-01-19 19:11:12 +00:00
|
|
|
if (!runparams.for_toc && runparams.html_make_pars) {
|
2009-12-10 20:36:12 +00:00
|
|
|
// generate a magic label for this paragraph
|
2009-12-10 20:03:35 +00:00
|
|
|
string const attr = "id='" + magicLabel() + "'";
|
2010-01-19 22:08:04 +00:00
|
|
|
xs << html::CompTag("a", attr);
|
2009-12-10 20:03:35 +00:00
|
|
|
}
|
|
|
|
|
2009-06-05 17:44:35 +00:00
|
|
|
FontInfo font_old =
|
|
|
|
style.labeltype == LABEL_MANUAL ? style.labelfont : style.font;
|
|
|
|
|
|
|
|
// parsing main loop
|
|
|
|
for (pos_type i = initial; i < size(); ++i) {
|
2010-01-20 22:42:27 +00:00
|
|
|
// let's not show deleted material in the output
|
|
|
|
if (isDeleted(i))
|
|
|
|
continue;
|
2010-09-14 14:00:29 +00:00
|
|
|
|
2009-06-05 17:44:35 +00:00
|
|
|
Font font = getFont(buf.params(), i, outerfont);
|
|
|
|
|
|
|
|
// emphasis
|
|
|
|
if (font_old.emph() != font.fontInfo().emph()) {
|
|
|
|
if (font.fontInfo().emph() == FONT_ON) {
|
2010-01-19 22:08:04 +00:00
|
|
|
xs << html::StartTag("em");
|
2009-06-05 17:44:35 +00:00
|
|
|
emph_flag = true;
|
|
|
|
} else if (emph_flag && i != initial) {
|
2010-01-19 22:08:04 +00:00
|
|
|
xs << html::EndTag("em");
|
2009-06-05 17:44:35 +00:00
|
|
|
emph_flag = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// bold
|
|
|
|
if (font_old.series() != font.fontInfo().series()) {
|
|
|
|
if (font.fontInfo().series() == BOLD_SERIES) {
|
2010-01-19 22:08:04 +00:00
|
|
|
xs << html::StartTag("strong");
|
2009-06-05 17:44:35 +00:00
|
|
|
bold_flag = true;
|
|
|
|
} else if (bold_flag && i != initial) {
|
2010-01-19 22:08:04 +00:00
|
|
|
xs << html::EndTag("strong");
|
2009-06-05 17:44:35 +00:00
|
|
|
bold_flag = false;
|
|
|
|
}
|
|
|
|
}
|
2009-11-30 23:31:21 +00:00
|
|
|
// FIXME XHTML
|
|
|
|
// Other such tags? What about the other text ranges?
|
2009-06-05 17:44:35 +00:00
|
|
|
|
2009-10-26 20:53:46 +00:00
|
|
|
Inset const * inset = getInset(i);
|
|
|
|
if (inset) {
|
2010-10-26 01:10:19 +00:00
|
|
|
if (!runparams.for_toc || inset->isInToc()) {
|
2009-12-10 18:30:48 +00:00
|
|
|
OutputParams np = runparams;
|
2010-10-26 01:10:19 +00:00
|
|
|
if (!inset->getLayout().htmlisblock())
|
2009-12-10 18:30:48 +00:00
|
|
|
np.html_in_par = true;
|
|
|
|
retval += inset->xhtml(xs, np);
|
|
|
|
}
|
2009-06-05 17:44:35 +00:00
|
|
|
} else {
|
|
|
|
char_type c = d->text_[i];
|
|
|
|
|
|
|
|
if (style.pass_thru)
|
2009-11-19 18:24:19 +00:00
|
|
|
xs << c;
|
2009-06-05 17:44:35 +00:00
|
|
|
else if (c == '-') {
|
2009-06-06 16:32:51 +00:00
|
|
|
docstring str;
|
2009-06-05 17:44:35 +00:00
|
|
|
int j = i + 1;
|
|
|
|
if (j < size() && d->text_[j] == '-') {
|
|
|
|
j += 1;
|
|
|
|
if (j < size() && d->text_[j] == '-') {
|
2009-06-06 16:32:51 +00:00
|
|
|
str += from_ascii("—");
|
2009-06-05 17:44:35 +00:00
|
|
|
i += 2;
|
|
|
|
} else {
|
2009-06-06 16:32:51 +00:00
|
|
|
str += from_ascii("–");
|
2009-06-05 17:44:35 +00:00
|
|
|
i += 1;
|
|
|
|
}
|
|
|
|
}
|
2009-06-05 18:57:33 +00:00
|
|
|
else
|
2009-06-06 16:32:51 +00:00
|
|
|
str += c;
|
2009-11-30 23:31:21 +00:00
|
|
|
// We don't want to escape the entities. Note that
|
|
|
|
// it is safe to do this, since str can otherwise
|
|
|
|
// only be "-". E.g., it can't be "<".
|
2010-11-24 15:27:36 +00:00
|
|
|
xs << XHTMLStream::ESCAPE_NONE << str;
|
2009-06-05 17:44:35 +00:00
|
|
|
} else
|
2009-11-19 18:24:19 +00:00
|
|
|
xs << c;
|
2009-06-05 17:44:35 +00:00
|
|
|
}
|
|
|
|
font_old = font.fontInfo();
|
|
|
|
}
|
|
|
|
|
2009-11-19 18:24:19 +00:00
|
|
|
xs.closeFontTags();
|
2011-04-03 01:56:20 +00:00
|
|
|
xs.endParagraph();
|
2009-06-12 17:23:17 +00:00
|
|
|
return retval;
|
2009-06-05 17:44:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-13 09:48:18 +00:00
|
|
|
bool Paragraph::isHfill(pos_type pos) const
|
|
|
|
{
|
2008-02-09 10:41:49 +00:00
|
|
|
Inset const * inset = getInset(pos);
|
*** File Format Change: UI and enhancement for InsetSpace ***
* src/insets/InsetSpace.{cpp,h}:
- merge in HFill inset, add support for dotfill, hrulefill,
hspace and hspace*
* src/insets/InsetHFill.{cpp,h}:
- remove
* src/frontends/qt4/GuiHSpace.{cpp,h}:
* src/frontends/qt4/ui/HSpaceUi.ui:
* src/frontends/qt4/GuiView:
- new GUI for Space insets.
* src/insets/Inset.{cpp,h}:
* src/insets/InsetCode.h:
* src/insets/InsetCollapsable.cpp:
* src/insets/InsetCommandParams.cpp:
- remove HFILL_CODE and LFUN_HFILL_INSERT, add SPACE_CODE where necessary,
new Inset member isStretchableSpace() to indicate HFill and friends.
* Buffer.cpp:
- increase format to 319
* lib/lyx2lyx/LyX.py:
* lib/lyx2lyx/lyx_1_6.py:
- conversion/reversion routines
* development/FORMAT:
- document file format change
* src/Makefile.am:
* src/frontends/qt4/Makefile.am:
* development/scons/scons_manifest.py:
- deal with UI changes.
* src/LyXAction.cpp:
- remove LFUN_HFILL_INSERT
* src/LyXFunc.cpp:
- handle space dialog.
* src/factory.cpp:
* src/Paragraph.cpp (isHFill):
* src/Text.cpp:
* src/Text3.cpp:
* src/TextMetrics.cpp:
- adapt to changes
* lib/ui/classic.ui:
* lib/ui/stdmenus.ui:
- add HSpace dialog, remove HFill.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@23787 a592a061-630c-0410-9148-cb99ea01b6c8
2008-03-17 09:23:43 +00:00
|
|
|
return inset && (inset->lyxCode() == SPACE_CODE &&
|
|
|
|
inset->isStretchableSpace());
|
2007-10-13 09:48:18 +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
|
|
|
{
|
2008-02-09 10:41:49 +00:00
|
|
|
Inset const * inset = getInset(pos);
|
|
|
|
return inset && inset->lyxCode() == NEWLINE_CODE;
|
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
|
|
|
{
|
2007-10-24 07:08:55 +00:00
|
|
|
char_type const c = d->text_[pos];
|
2008-02-09 10:41:49 +00:00
|
|
|
if (isLineSeparatorChar(c))
|
|
|
|
return true;
|
|
|
|
Inset const * inset = getInset(pos);
|
|
|
|
return inset && inset->isLineSeparator();
|
1999-11-15 12:01:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-06-21 14:30:57 +00:00
|
|
|
bool Paragraph::isWordSeparator(pos_type pos) const
|
1999-11-15 12:01:38 +00:00
|
|
|
{
|
2011-01-30 07:17:48 +00:00
|
|
|
if (pos == size())
|
|
|
|
return true;
|
2011-04-08 13:20:26 +00:00
|
|
|
if (Inset const * inset = getInset(pos))
|
|
|
|
return !inset->isLetter();
|
|
|
|
// if we have a hard hyphen (no en- or emdash) or apostrophe
|
2011-03-18 09:17:09 +00:00
|
|
|
// we pass this to the spell checker
|
2011-04-08 13:20:26 +00:00
|
|
|
// FIXME: this method is subject to change, visit
|
|
|
|
// https://bugzilla.mozilla.org/show_bug.cgi?id=355178
|
|
|
|
// to get an impression how complex this is.
|
|
|
|
if (isHardHyphenOrApostrophe(pos))
|
|
|
|
return false;
|
|
|
|
char_type const c = d->text_[pos];
|
|
|
|
// We want to pass the escape chars to the spellchecker
|
|
|
|
docstring const escape_chars = from_utf8(lyxrc.spellchecker_esc_chars);
|
|
|
|
return !isLetterChar(c) && !isDigitASCII(c) && !contains(escape_chars, c);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool Paragraph::isHardHyphenOrApostrophe(pos_type pos) const
|
|
|
|
{
|
|
|
|
pos_type const psize = size();
|
|
|
|
if (pos >= psize)
|
|
|
|
return false;
|
|
|
|
char_type const c = d->text_[pos];
|
|
|
|
if (c != '-' && c != '\'')
|
|
|
|
return false;
|
|
|
|
int nextpos = pos + 1;
|
|
|
|
int prevpos = pos > 0 ? pos - 1 : 0;
|
|
|
|
if ((nextpos == psize || isSpace(nextpos))
|
|
|
|
&& (pos == 0 || isSpace(prevpos)))
|
|
|
|
return false;
|
|
|
|
return c == '\''
|
|
|
|
|| ((nextpos == psize || d->text_[nextpos] != '-')
|
|
|
|
&& (pos == 0 || d->text_[prevpos] != '-'));
|
1999-11-15 12:01:38 +00:00
|
|
|
}
|
2000-02-22 00:36:17 +00:00
|
|
|
|
2000-04-10 21:40:13 +00:00
|
|
|
|
2010-12-22 07:29:16 +00:00
|
|
|
bool Paragraph::isSameSpellRange(pos_type pos1, pos_type pos2) const
|
|
|
|
{
|
|
|
|
return pos1 == pos2
|
|
|
|
|| d->speller_state_.getRange(pos1) == d->speller_state_.getRange(pos2);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-06-24 09:19:52 +00:00
|
|
|
bool Paragraph::isChar(pos_type pos) const
|
|
|
|
{
|
|
|
|
if (Inset const * inset = getInset(pos))
|
|
|
|
return inset->isChar();
|
|
|
|
char_type const c = d->text_[pos];
|
2010-12-07 00:13:19 +00:00
|
|
|
return !isLetterChar(c) && !isDigitASCII(c) && !lyx::isSpace(c);
|
2008-07-01 14:42:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool Paragraph::isSpace(pos_type pos) const
|
|
|
|
{
|
|
|
|
if (Inset const * inset = getInset(pos))
|
|
|
|
return inset->isSpace();
|
|
|
|
char_type const c = d->text_[pos];
|
|
|
|
return lyx::isSpace(c);
|
2008-06-24 09:19:52 +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
|
|
|
{
|
2003-07-27 21:59:06 +00:00
|
|
|
if (!empty())
|
2006-02-05 13:20:16 +00:00
|
|
|
return getFirstFontSettings(bparams).language();
|
2007-08-10 11:47:12 +00:00
|
|
|
// FIXME: we should check the prev par as well (Lgb)
|
2003-07-27 21:59:06 +00:00
|
|
|
return bparams.language;
|
2000-03-17 10:14:46 +00:00
|
|
|
}
|
|
|
|
|
2000-04-10 21:40:13 +00:00
|
|
|
|
2007-09-04 10:27:55 +00:00
|
|
|
bool Paragraph::isRTL(BufferParams const & bparams) const
|
2000-03-17 10:14:46 +00:00
|
|
|
{
|
2000-07-21 18:47:54 +00:00
|
|
|
return lyxrc.rtl_support
|
2006-04-09 00:26:19 +00:00
|
|
|
&& getParLanguage(bparams)->rightToLeft()
|
2009-07-16 10:08:13 +00:00
|
|
|
&& !inInset().getLayout().forceLTR();
|
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
|
|
|
{
|
2006-11-12 17:02:43 +00:00
|
|
|
// change language including dummy font change at the end
|
|
|
|
for (pos_type i = 0; i <= size(); ++i) {
|
2007-04-29 18:17:15 +00:00
|
|
|
Font 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);
|
2011-08-20 13:54:02 +00:00
|
|
|
d->requestSpellCheck(i);
|
2000-04-10 21:40:13 +00:00
|
|
|
}
|
|
|
|
}
|
2000-02-22 00:36:17 +00:00
|
|
|
}
|
|
|
|
|
2000-04-10 21:40:13 +00:00
|
|
|
|
2004-02-25 12:00:53 +00:00
|
|
|
bool Paragraph::isMultiLingual(BufferParams const & bparams) const
|
2000-02-22 00:36:17 +00:00
|
|
|
{
|
2010-02-08 17:15:00 +00:00
|
|
|
Language const * doc_language = bparams.language;
|
2007-10-19 08:57:22 +00:00
|
|
|
FontList::const_iterator cit = d->fontlist_.begin();
|
|
|
|
FontList::const_iterator end = d->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 &&
|
2003-07-31 13:38:06 +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
|
|
|
|
|
|
|
|
2010-02-08 17:15:00 +00:00
|
|
|
void Paragraph::getLanguages(std::set<Language const *> & languages) const
|
|
|
|
{
|
|
|
|
FontList::const_iterator cit = d->fontlist_.begin();
|
|
|
|
FontList::const_iterator end = d->fontlist_.end();
|
|
|
|
|
|
|
|
for (; cit != end; ++cit) {
|
|
|
|
Language const * lang = cit->font().language();
|
|
|
|
if (lang != ignore_language &&
|
|
|
|
lang != latex_language)
|
|
|
|
languages.insert(lang);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-05-22 14:01:33 +00:00
|
|
|
docstring Paragraph::asString(int options) const
|
2008-05-22 10:14:20 +00:00
|
|
|
{
|
2008-05-22 14:01:33 +00:00
|
|
|
return asString(0, size(), options);
|
2000-05-19 16:46:01 +00:00
|
|
|
}
|
2000-05-20 21:37:05 +00:00
|
|
|
|
|
|
|
|
2008-05-22 14:01:33 +00:00
|
|
|
docstring Paragraph::asString(pos_type beg, pos_type end, int options) const
|
2000-05-20 21:37:05 +00:00
|
|
|
{
|
2007-01-19 16:23:13 +00:00
|
|
|
odocstringstream os;
|
2000-07-19 17:16:27 +00:00
|
|
|
|
2010-09-14 14:00:29 +00:00
|
|
|
if (beg == 0
|
2010-02-09 16:24:01 +00:00
|
|
|
&& options & AS_STR_LABEL
|
|
|
|
&& !d->params_.labelString().empty())
|
2008-02-20 10:21:00 +00:00
|
|
|
os << d->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) {
|
2010-09-29 19:31:16 +00:00
|
|
|
if ((options & AS_STR_SKIPDELETE) && isDeleted(i))
|
|
|
|
continue;
|
2007-10-24 07:08:55 +00:00
|
|
|
char_type const c = d->text_[i];
|
2008-10-19 20:55:54 +00:00
|
|
|
if (isPrintable(c) || c == '\t'
|
2009-08-04 09:26:46 +00:00
|
|
|
|| (c == '\n' && (options & AS_STR_NEWLINES)))
|
2006-10-11 19:40:50 +00:00
|
|
|
os.put(c);
|
2009-08-04 09:26:46 +00:00
|
|
|
else if (c == META_INSET && (options & AS_STR_INSETS)) {
|
2010-12-20 21:55:09 +00:00
|
|
|
getInset(i)->toString(os);
|
|
|
|
if (getInset(i)->asInsetMath())
|
2009-08-01 21:54:13 +00:00
|
|
|
os << " ";
|
|
|
|
}
|
2000-05-20 21:37:05 +00:00
|
|
|
}
|
|
|
|
|
2003-09-15 11:00:00 +00:00
|
|
|
return os.str();
|
2000-05-20 21:37:05 +00:00
|
|
|
}
|
2000-06-23 15:02:46 +00:00
|
|
|
|
|
|
|
|
2010-12-20 21:55:09 +00:00
|
|
|
void Paragraph::forToc(docstring & os, size_t maxlen) const
|
|
|
|
{
|
2011-01-06 01:12:38 +00:00
|
|
|
if (!d->params_.labelString().empty())
|
|
|
|
os += d->params_.labelString() + ' ';
|
2010-12-20 21:55:09 +00:00
|
|
|
for (pos_type i = 0; i < size() && os.length() < maxlen; ++i) {
|
|
|
|
if (isDeleted(i))
|
|
|
|
continue;
|
|
|
|
char_type const c = d->text_[i];
|
|
|
|
if (isPrintable(c))
|
|
|
|
os += c;
|
|
|
|
else if (c == '\t' || c == '\n')
|
|
|
|
os += ' ';
|
|
|
|
else if (c == META_INSET)
|
|
|
|
getInset(i)->forToc(os, maxlen);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-12-20 16:00:47 +00:00
|
|
|
docstring Paragraph::stringify(pos_type beg, pos_type end, int options, OutputParams & runparams) const
|
|
|
|
{
|
|
|
|
odocstringstream os;
|
|
|
|
|
2010-09-14 14:00:29 +00:00
|
|
|
if (beg == 0
|
2008-12-20 16:00:47 +00:00
|
|
|
&& options & AS_STR_LABEL
|
|
|
|
&& !d->params_.labelString().empty())
|
|
|
|
os << d->params_.labelString() << ' ';
|
|
|
|
|
|
|
|
for (pos_type i = beg; i < end; ++i) {
|
|
|
|
char_type const c = d->text_[i];
|
|
|
|
if (isPrintable(c) || c == '\t'
|
2009-08-04 09:26:46 +00:00
|
|
|
|| (c == '\n' && (options & AS_STR_NEWLINES)))
|
2008-12-20 16:00:47 +00:00
|
|
|
os.put(c);
|
2009-08-04 09:26:46 +00:00
|
|
|
else if (c == META_INSET && (options & AS_STR_INSETS)) {
|
2008-12-20 16:00:47 +00:00
|
|
|
getInset(i)->plaintext(os, runparams);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return os.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-09-13 17:01:54 +00:00
|
|
|
void Paragraph::setInsetOwner(Inset const * inset)
|
2000-06-23 15:02:46 +00:00
|
|
|
{
|
2007-10-19 08:57:22 +00:00
|
|
|
d->inset_owner_ = inset;
|
2003-02-08 19:18:01 +00:00
|
|
|
}
|
|
|
|
|
2003-03-03 21:15:49 +00:00
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
int Paragraph::id() const
|
|
|
|
{
|
2007-10-19 08:57:22 +00:00
|
|
|
return d->id_;
|
2001-06-25 00:06:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-01-05 13:16:55 +00:00
|
|
|
void Paragraph::setId(int id)
|
|
|
|
{
|
|
|
|
d->id_ = id;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-03-06 21:31:27 +00:00
|
|
|
Layout const & Paragraph::layout() const
|
2002-03-02 16:39:54 +00:00
|
|
|
{
|
2008-03-06 22:06:24 +00:00
|
|
|
return *d->layout_;
|
2002-03-02 16:39:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-03-06 21:31:27 +00:00
|
|
|
void Paragraph::setLayout(Layout const & layout)
|
2001-06-25 00:06:33 +00:00
|
|
|
{
|
2008-03-06 22:06:24 +00:00
|
|
|
d->layout_ = &layout;
|
2008-02-23 16:45:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-10-28 14:11:24 +00:00
|
|
|
void Paragraph::setDefaultLayout(DocumentClass const & tc)
|
2010-09-14 14:00:29 +00:00
|
|
|
{
|
|
|
|
setLayout(tc.defaultLayout());
|
2008-10-28 14:11:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Paragraph::setPlainLayout(DocumentClass const & tc)
|
2010-09-14 14:00:29 +00:00
|
|
|
{
|
|
|
|
setLayout(tc.plainLayout());
|
2008-10-28 14:11:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-07-10 17:41:52 +00:00
|
|
|
void Paragraph::setPlainOrDefaultLayout(DocumentClass const & tclass)
|
2008-02-23 16:45:38 +00:00
|
|
|
{
|
2008-07-10 17:41:52 +00:00
|
|
|
if (usePlainLayout())
|
2008-10-28 14:11:24 +00:00
|
|
|
setPlainLayout(tclass);
|
2008-02-23 16:45:38 +00:00
|
|
|
else
|
2008-10-28 14:11:24 +00:00
|
|
|
setDefaultLayout(tclass);
|
2001-06-25 00:06:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-09-13 17:01:54 +00:00
|
|
|
Inset const & Paragraph::inInset() const
|
2001-02-16 09:25:43 +00:00
|
|
|
{
|
2008-09-13 17:12:01 +00:00
|
|
|
LASSERT(d->inset_owner_, throw ExceptionMessage(BufferException,
|
2008-11-12 20:24:08 +00:00
|
|
|
_("Memory problem"), _("Paragraph not properly initialized")));
|
2008-09-13 17:01:54 +00:00
|
|
|
return *d->inset_owner_;
|
2001-02-16 09:25:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
ParagraphParameters & Paragraph::params()
|
|
|
|
{
|
2007-10-19 08:57:22 +00:00
|
|
|
return d->params_;
|
2001-06-25 00:06:33 +00:00
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
2007-10-19 08:57:22 +00:00
|
|
|
return d->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
|
|
|
|
{
|
2008-03-06 22:06:24 +00:00
|
|
|
if (d->layout_->free_spacing)
|
2003-06-07 17:45:43 +00:00
|
|
|
return true;
|
2007-10-25 09:19:26 +00:00
|
|
|
return d->inset_owner_ && d->inset_owner_->isFreeSpacing();
|
2001-11-29 16:29:30 +00:00
|
|
|
}
|
2003-05-27 20:59:03 +00:00
|
|
|
|
|
|
|
|
2003-06-07 17:45:43 +00:00
|
|
|
bool Paragraph::allowEmpty() const
|
|
|
|
{
|
2008-03-06 22:06:24 +00:00
|
|
|
if (d->layout_->keepempty)
|
2003-06-07 17:45:43 +00:00
|
|
|
return true;
|
2007-10-25 09:19:26 +00:00
|
|
|
return d->inset_owner_ && d->inset_owner_->allowEmpty();
|
2003-06-07 17:45:43 +00:00
|
|
|
}
|
2003-10-24 09:45:07 +00:00
|
|
|
|
|
|
|
|
2006-08-13 22:54:59 +00:00
|
|
|
char_type Paragraph::transformChar(char_type c, pos_type pos) const
|
2003-10-27 12:41:26 +00:00
|
|
|
{
|
2008-03-21 21:47:37 +00:00
|
|
|
if (!Encodings::isArabicChar(c))
|
2007-03-26 08:24:38 +00:00
|
|
|
return c;
|
2003-10-27 12:41:26 +00:00
|
|
|
|
2007-10-24 07:08:55 +00:00
|
|
|
char_type prev_char = ' ';
|
|
|
|
char_type next_char = ' ';
|
2003-10-27 12:41:26 +00:00
|
|
|
|
2007-04-27 20:37:57 +00:00
|
|
|
for (pos_type i = pos - 1; i >= 0; --i) {
|
2007-10-24 07:08:55 +00:00
|
|
|
char_type const par_char = d->text_[i];
|
2008-03-21 21:47:37 +00:00
|
|
|
if (!Encodings::isArabicComposeChar(par_char)) {
|
2007-04-27 20:37:57 +00:00
|
|
|
prev_char = par_char;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-10-27 12:41:26 +00:00
|
|
|
for (pos_type i = pos + 1, end = size(); i < end; ++i) {
|
2007-10-24 07:08:55 +00:00
|
|
|
char_type const par_char = d->text_[i];
|
2008-03-21 21:47:37 +00:00
|
|
|
if (!Encodings::isArabicComposeChar(par_char)) {
|
2003-10-27 12:41:26 +00:00
|
|
|
next_char = par_char;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-03-21 21:47:37 +00:00
|
|
|
if (Encodings::isArabicChar(next_char)) {
|
|
|
|
if (Encodings::isArabicChar(prev_char) &&
|
|
|
|
!Encodings::isArabicSpecialChar(prev_char))
|
2006-04-09 00:26:19 +00:00
|
|
|
return Encodings::transformChar(c, Encodings::FORM_MEDIAL);
|
2003-10-27 12:41:26 +00:00
|
|
|
else
|
2006-04-09 00:26:19 +00:00
|
|
|
return Encodings::transformChar(c, Encodings::FORM_INITIAL);
|
2003-10-27 12:41:26 +00:00
|
|
|
} else {
|
2008-03-21 21:47:37 +00:00
|
|
|
if (Encodings::isArabicChar(prev_char) &&
|
|
|
|
!Encodings::isArabicSpecialChar(prev_char))
|
2006-04-09 00:26:19 +00:00
|
|
|
return Encodings::transformChar(c, Encodings::FORM_FINAL);
|
2003-10-27 12:41:26 +00:00
|
|
|
else
|
2006-04-09 00:26:19 +00:00
|
|
|
return Encodings::transformChar(c, Encodings::FORM_ISOLATED);
|
2003-10-27 12:41:26 +00:00
|
|
|
}
|
|
|
|
}
|
2004-11-30 01:59:49 +00:00
|
|
|
|
|
|
|
|
2008-02-27 20:43:16 +00:00
|
|
|
int Paragraph::checkBiblio(Buffer const & buffer)
|
2006-12-29 23:54:48 +00:00
|
|
|
{
|
2008-02-27 20:43:16 +00:00
|
|
|
// FIXME From JS:
|
|
|
|
// This is getting more and more a mess. ...We really should clean
|
2010-11-26 18:09:03 +00:00
|
|
|
// up this bibitem issue for 1.6.
|
2007-05-19 19:29:50 +00:00
|
|
|
|
2006-12-29 23:54:48 +00:00
|
|
|
// Add bibitem insets if necessary
|
2008-03-06 22:06:24 +00:00
|
|
|
if (d->layout_->labeltype != LABEL_BIBLIO)
|
2007-05-19 19:29:50 +00:00
|
|
|
return 0;
|
2006-12-29 23:54:48 +00:00
|
|
|
|
2007-10-19 08:57:22 +00:00
|
|
|
bool hasbibitem = !d->insetlist_.empty()
|
2006-12-29 23:54:48 +00:00
|
|
|
// Insist on it being in pos 0
|
2007-10-24 07:08:55 +00:00
|
|
|
&& d->text_[0] == META_INSET
|
2007-10-19 08:57:22 +00:00
|
|
|
&& d->insetlist_.begin()->inset->lyxCode() == BIBITEM_CODE;
|
2006-12-29 23:54:48 +00:00
|
|
|
|
2008-02-27 20:43:16 +00:00
|
|
|
bool track_changes = buffer.params().trackChanges;
|
|
|
|
|
2007-05-14 09:24:17 +00:00
|
|
|
docstring oldkey;
|
|
|
|
docstring oldlabel;
|
|
|
|
|
2007-05-19 19:29:50 +00:00
|
|
|
// remove a bibitem in pos != 0
|
|
|
|
// restore it later in pos 0 if necessary
|
2007-05-14 09:24:17 +00:00
|
|
|
// (e.g. if a user inserts contents _before_ the item)
|
2007-05-19 19:29:50 +00:00
|
|
|
// we're assuming there's only one of these, which there
|
|
|
|
// should be.
|
|
|
|
int erasedInsetPosition = -1;
|
2007-10-19 08:57:22 +00:00
|
|
|
InsetList::iterator it = d->insetlist_.begin();
|
|
|
|
InsetList::iterator end = d->insetlist_.end();
|
2007-05-14 09:24:17 +00:00
|
|
|
for (; it != end; ++it)
|
2007-10-13 09:04:52 +00:00
|
|
|
if (it->inset->lyxCode() == BIBITEM_CODE
|
2010-10-26 16:45:21 +00:00
|
|
|
&& it->pos > 0) {
|
|
|
|
InsetCommand * olditem = it->inset->asInsetCommand();
|
2007-05-14 09:24:17 +00:00
|
|
|
oldkey = olditem->getParam("key");
|
|
|
|
oldlabel = olditem->getParam("label");
|
2007-05-19 19:29:50 +00:00
|
|
|
erasedInsetPosition = it->pos;
|
|
|
|
eraseChar(erasedInsetPosition, track_changes);
|
|
|
|
break;
|
2007-05-14 09:24:17 +00:00
|
|
|
}
|
|
|
|
|
2008-02-27 20:43:16 +00:00
|
|
|
// There was an InsetBibitem at the beginning, and we didn't
|
|
|
|
// have to erase one.
|
2007-05-19 19:29:50 +00:00
|
|
|
if (hasbibitem && erasedInsetPosition < 0)
|
|
|
|
return 0;
|
2007-05-28 22:27:45 +00:00
|
|
|
|
2008-02-27 20:43:16 +00:00
|
|
|
// There was an InsetBibitem at the beginning and we did have to
|
|
|
|
// erase one. So we give its properties to the beginning inset.
|
2007-05-19 19:29:50 +00:00
|
|
|
if (hasbibitem) {
|
2010-10-26 16:45:21 +00:00
|
|
|
InsetCommand * inset = d->insetlist_.begin()->inset->asInsetCommand();
|
2007-05-19 19:29:50 +00:00
|
|
|
if (!oldkey.empty())
|
|
|
|
inset->setParam("key", oldkey);
|
|
|
|
inset->setParam("label", oldlabel);
|
|
|
|
return -erasedInsetPosition;
|
|
|
|
}
|
2007-05-28 22:27:45 +00:00
|
|
|
|
2008-02-27 20:43:16 +00:00
|
|
|
// There was no inset at the beginning, so we need to create one with
|
|
|
|
// the key and label of the one we erased.
|
2010-09-14 14:00:29 +00:00
|
|
|
InsetBibitem * inset =
|
2009-11-08 15:53:21 +00:00
|
|
|
new InsetBibitem(const_cast<Buffer *>(&buffer), InsetCommandParams(BIBITEM_CODE));
|
2007-05-14 09:24:17 +00:00
|
|
|
// restore values of previously deleted item in this par.
|
|
|
|
if (!oldkey.empty())
|
|
|
|
inset->setParam("key", oldkey);
|
2007-05-19 19:29:50 +00:00
|
|
|
inset->setParam("label", oldlabel);
|
2010-10-26 16:45:21 +00:00
|
|
|
insertInset(0, inset,
|
2007-05-14 09:24:17 +00:00
|
|
|
Change(track_changes ? Change::INSERTED : Change::UNCHANGED));
|
2006-12-29 23:54:48 +00:00
|
|
|
|
2007-05-19 19:29:50 +00:00
|
|
|
return 1;
|
2006-12-29 23:54:48 +00:00
|
|
|
}
|
|
|
|
|
2007-07-09 20:52:34 +00:00
|
|
|
|
|
|
|
void Paragraph::checkAuthors(AuthorList const & authorList)
|
|
|
|
{
|
2007-10-19 08:57:22 +00:00
|
|
|
d->changes_.checkAuthors(authorList);
|
2007-07-09 20:52:34 +00:00
|
|
|
}
|
|
|
|
|
2007-10-18 15:29:51 +00:00
|
|
|
|
2009-08-04 22:44:23 +00:00
|
|
|
bool Paragraph::isChanged(pos_type pos) const
|
2007-10-18 15:29:51 +00:00
|
|
|
{
|
2009-08-04 22:44:23 +00:00
|
|
|
return lookupChange(pos).changed();
|
2007-10-18 15:29:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool Paragraph::isInserted(pos_type pos) const
|
|
|
|
{
|
2009-08-04 22:15:17 +00:00
|
|
|
return lookupChange(pos).inserted();
|
2007-10-18 15:29:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool Paragraph::isDeleted(pos_type pos) const
|
|
|
|
{
|
2009-08-04 22:15:17 +00:00
|
|
|
return lookupChange(pos).deleted();
|
2007-10-18 15:29:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
InsetList const & Paragraph::insetList() const
|
|
|
|
{
|
2007-10-19 08:57:22 +00:00
|
|
|
return d->insetlist_;
|
2007-10-18 15:29:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-07-23 12:49:22 +00:00
|
|
|
void Paragraph::setBuffer(Buffer & b)
|
|
|
|
{
|
|
|
|
d->insetlist_.setBuffer(b);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-18 15:29:51 +00:00
|
|
|
Inset * Paragraph::releaseInset(pos_type pos)
|
|
|
|
{
|
2007-10-19 08:57:22 +00:00
|
|
|
Inset * inset = d->insetlist_.release(pos);
|
2007-10-18 15:29:51 +00:00
|
|
|
/// does not honour change tracking!
|
|
|
|
eraseChar(pos, false);
|
|
|
|
return inset;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Inset * Paragraph::getInset(pos_type pos)
|
|
|
|
{
|
2008-02-11 08:31:14 +00:00
|
|
|
return (pos < pos_type(d->text_.size()) && d->text_[pos] == META_INSET)
|
2008-02-09 10:41:49 +00:00
|
|
|
? d->insetlist_.get(pos) : 0;
|
2007-10-18 15:29:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Inset const * Paragraph::getInset(pos_type pos) const
|
|
|
|
{
|
2008-02-11 08:31:14 +00:00
|
|
|
return (pos < pos_type(d->text_.size()) && d->text_[pos] == META_INSET)
|
2008-02-09 10:41:49 +00:00
|
|
|
? d->insetlist_.get(pos) : 0;
|
2007-10-18 15:29:51 +00:00
|
|
|
}
|
|
|
|
|
2007-10-21 10:50:56 +00:00
|
|
|
|
2007-10-24 07:49:24 +00:00
|
|
|
void Paragraph::changeCase(BufferParams const & bparams, pos_type pos,
|
2008-01-28 10:50:24 +00:00
|
|
|
pos_type & right, TextCase action)
|
2007-10-24 07:49:24 +00:00
|
|
|
{
|
|
|
|
// process sequences of modified characters; in change
|
|
|
|
// tracking mode, this approach results in much better
|
|
|
|
// usability than changing case on a char-by-char basis
|
|
|
|
docstring changes;
|
|
|
|
|
|
|
|
bool const trackChanges = bparams.trackChanges;
|
|
|
|
|
|
|
|
bool capitalize = true;
|
|
|
|
|
|
|
|
for (; pos < right; ++pos) {
|
|
|
|
char_type oldChar = d->text_[pos];
|
|
|
|
char_type newChar = oldChar;
|
|
|
|
|
|
|
|
// ignore insets and don't play with deleted text!
|
2007-10-24 11:24:53 +00:00
|
|
|
if (oldChar != META_INSET && !isDeleted(pos)) {
|
2007-10-24 07:49:24 +00:00
|
|
|
switch (action) {
|
|
|
|
case text_lowercase:
|
|
|
|
newChar = lowercase(oldChar);
|
|
|
|
break;
|
|
|
|
case text_capitalization:
|
|
|
|
if (capitalize) {
|
|
|
|
newChar = uppercase(oldChar);
|
|
|
|
capitalize = false;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case text_uppercase:
|
|
|
|
newChar = uppercase(oldChar);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-21 14:30:57 +00:00
|
|
|
if (isWordSeparator(pos) || isDeleted(pos)) {
|
2007-10-24 07:49:24 +00:00
|
|
|
// permit capitalization again
|
|
|
|
capitalize = true;
|
|
|
|
}
|
|
|
|
|
2009-06-22 16:38:11 +00:00
|
|
|
if (oldChar != newChar) {
|
2007-10-24 07:49:24 +00:00
|
|
|
changes += newChar;
|
2009-06-22 16:38:11 +00:00
|
|
|
if (pos != right - 1)
|
|
|
|
continue;
|
|
|
|
// step behind the changing area
|
|
|
|
pos++;
|
|
|
|
}
|
2007-10-24 07:49:24 +00:00
|
|
|
|
2009-06-22 16:38:11 +00:00
|
|
|
int erasePos = pos - changes.size();
|
|
|
|
for (size_t i = 0; i < changes.size(); i++) {
|
|
|
|
insertChar(pos, changes[i],
|
|
|
|
getFontSettings(bparams,
|
|
|
|
erasePos),
|
|
|
|
trackChanges);
|
|
|
|
if (!eraseChar(erasePos, trackChanges)) {
|
|
|
|
++erasePos;
|
|
|
|
++pos; // advance
|
|
|
|
++right; // expand selection
|
2007-10-24 07:49:24 +00:00
|
|
|
}
|
|
|
|
}
|
2009-06-22 16:38:11 +00:00
|
|
|
changes.clear();
|
2007-10-24 07:49:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-10-24 08:22:26 +00:00
|
|
|
|
2010-11-22 07:50:34 +00:00
|
|
|
int Paragraph::find(docstring const & str, bool cs, bool mw,
|
|
|
|
pos_type start_pos, bool del) const
|
2007-10-24 08:22:26 +00:00
|
|
|
{
|
2010-11-22 07:50:34 +00:00
|
|
|
pos_type pos = start_pos;
|
2007-10-24 08:22:26 +00:00
|
|
|
int const strsize = str.length();
|
|
|
|
int i = 0;
|
|
|
|
pos_type const parsize = d->text_.size();
|
2010-11-22 07:50:34 +00:00
|
|
|
for (i = 0; i < strsize && pos < parsize; ++i, ++pos) {
|
2011-03-15 13:19:55 +00:00
|
|
|
// Ignore "invisible" letters such as ligature breaks
|
|
|
|
// and hyphenation chars while searching
|
2010-11-22 07:50:34 +00:00
|
|
|
while (pos < parsize - 1 && isInset(pos)) {
|
2011-03-15 13:36:48 +00:00
|
|
|
odocstringstream os;
|
2011-03-15 13:19:55 +00:00
|
|
|
getInset(pos)->toString(os);
|
|
|
|
if (!getInset(pos)->isLetter() || !os.str().empty())
|
2010-11-22 07:50:34 +00:00
|
|
|
break;
|
|
|
|
pos++;
|
|
|
|
}
|
|
|
|
if (cs && str[i] != d->text_[pos])
|
2007-10-24 08:22:26 +00:00
|
|
|
break;
|
2010-11-22 07:50:34 +00:00
|
|
|
if (!cs && uppercase(str[i]) != uppercase(d->text_[pos]))
|
2007-10-24 08:22:26 +00:00
|
|
|
break;
|
2010-11-22 07:50:34 +00:00
|
|
|
if (!del && isDeleted(pos))
|
2007-10-24 08:22:26 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i != strsize)
|
2010-11-22 07:50:34 +00:00
|
|
|
return 0;
|
2007-10-24 08:22:26 +00:00
|
|
|
|
|
|
|
// if necessary, check whether string matches word
|
|
|
|
if (mw) {
|
2010-11-22 07:50:34 +00:00
|
|
|
if (start_pos > 0 && !isWordSeparator(start_pos - 1))
|
|
|
|
return 0;
|
|
|
|
if (pos < parsize
|
|
|
|
&& !isWordSeparator(pos))
|
|
|
|
return 0;
|
2007-10-24 08:22:26 +00:00
|
|
|
}
|
|
|
|
|
2010-11-22 07:50:34 +00:00
|
|
|
return pos - start_pos;
|
2007-10-24 08:22:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-24 07:08:55 +00:00
|
|
|
char_type Paragraph::getChar(pos_type pos) const
|
|
|
|
{
|
|
|
|
return d->text_[pos];
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
pos_type Paragraph::size() const
|
|
|
|
{
|
|
|
|
return d->text_.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool Paragraph::empty() const
|
|
|
|
{
|
|
|
|
return d->text_.empty();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool Paragraph::isInset(pos_type pos) const
|
|
|
|
{
|
|
|
|
return d->text_[pos] == META_INSET;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool Paragraph::isSeparator(pos_type pos) const
|
|
|
|
{
|
|
|
|
//FIXME: Are we sure this can be the only separator?
|
|
|
|
return d->text_[pos] == ' ';
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-26 13:07:59 +00:00
|
|
|
void Paragraph::deregisterWords()
|
|
|
|
{
|
2010-06-09 21:02:47 +00:00
|
|
|
Private::LangWordsMap::const_iterator itl = d->words_.begin();
|
|
|
|
Private::LangWordsMap::const_iterator ite = d->words_.end();
|
2010-06-09 20:56:42 +00:00
|
|
|
for (; itl != ite; ++itl) {
|
2009-12-18 14:48:56 +00:00
|
|
|
WordList * wl = theWordList(itl->first);
|
2010-06-09 20:56:42 +00:00
|
|
|
Private::Words::const_iterator it = (itl->second).begin();
|
|
|
|
Private::Words::const_iterator et = (itl->second).end();
|
|
|
|
for (; it != et; ++it)
|
2009-12-18 14:48:56 +00:00
|
|
|
wl->remove(*it);
|
|
|
|
}
|
2008-02-26 13:07:59 +00:00
|
|
|
d->words_.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-05-01 07:26:12 +00:00
|
|
|
void Paragraph::locateWord(pos_type & from, pos_type & to,
|
|
|
|
word_location const loc) const
|
|
|
|
{
|
|
|
|
switch (loc) {
|
|
|
|
case WHOLE_WORD_STRICT:
|
|
|
|
if (from == 0 || from == size()
|
2009-06-21 14:30:57 +00:00
|
|
|
|| isWordSeparator(from)
|
|
|
|
|| isWordSeparator(from - 1)) {
|
2009-05-01 07:26:12 +00:00
|
|
|
to = from;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// no break here, we go to the next
|
|
|
|
|
|
|
|
case WHOLE_WORD:
|
|
|
|
// If we are already at the beginning of a word, do nothing
|
2009-06-21 14:30:57 +00:00
|
|
|
if (!from || isWordSeparator(from - 1))
|
2009-05-01 07:26:12 +00:00
|
|
|
break;
|
|
|
|
// no break here, we go to the next
|
|
|
|
|
|
|
|
case PREVIOUS_WORD:
|
|
|
|
// always move the cursor to the beginning of previous word
|
2009-06-21 14:30:57 +00:00
|
|
|
while (from && !isWordSeparator(from - 1))
|
2009-05-01 07:26:12 +00:00
|
|
|
--from;
|
|
|
|
break;
|
|
|
|
case NEXT_WORD:
|
|
|
|
LYXERR0("Paragraph::locateWord: NEXT_WORD not implemented yet");
|
|
|
|
break;
|
|
|
|
case PARTIAL_WORD:
|
|
|
|
// no need to move the 'from' cursor
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
to = from;
|
2009-06-21 14:30:57 +00:00
|
|
|
while (to < size() && !isWordSeparator(to))
|
2009-05-01 07:26:12 +00:00
|
|
|
++to;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-05-01 09:56:20 +00:00
|
|
|
void Paragraph::collectWords()
|
2008-02-26 13:07:59 +00:00
|
|
|
{
|
|
|
|
pos_type n = size();
|
2009-05-01 07:26:12 +00:00
|
|
|
for (pos_type pos = 0; pos < n; ++pos) {
|
2009-06-21 14:30:57 +00:00
|
|
|
if (isWordSeparator(pos))
|
2008-02-26 13:07:59 +00:00
|
|
|
continue;
|
2009-05-01 07:26:12 +00:00
|
|
|
pos_type from = pos;
|
|
|
|
locateWord(from, pos, WHOLE_WORD);
|
2012-01-02 22:47:04 +00:00
|
|
|
if ((pos - from) >= (int)lyxrc.completion_minlength) {
|
2009-06-23 08:54:21 +00:00
|
|
|
docstring word = asString(from, pos, AS_STR_NONE);
|
2009-12-18 14:48:56 +00:00
|
|
|
FontList::const_iterator cit = d->fontlist_.fontIterator(pos);
|
|
|
|
if (cit == d->fontlist_.end())
|
|
|
|
return;
|
|
|
|
Language const * lang = cit->font().language();
|
|
|
|
d->words_[*lang].insert(word);
|
2009-06-23 08:54:21 +00:00
|
|
|
}
|
2008-02-26 13:07:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Paragraph::registerWords()
|
|
|
|
{
|
2010-06-09 21:02:47 +00:00
|
|
|
Private::LangWordsMap::const_iterator itl = d->words_.begin();
|
|
|
|
Private::LangWordsMap::const_iterator ite = d->words_.end();
|
|
|
|
for (; itl != ite; ++itl) {
|
2009-12-18 14:48:56 +00:00
|
|
|
WordList * wl = theWordList(itl->first);
|
2010-06-09 21:02:47 +00:00
|
|
|
Private::Words::const_iterator it = (itl->second).begin();
|
|
|
|
Private::Words::const_iterator et = (itl->second).end();
|
|
|
|
for (; it != et; ++it)
|
2009-12-18 14:48:56 +00:00
|
|
|
wl->insert(*it);
|
|
|
|
}
|
2008-02-26 13:07:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-05-01 09:56:20 +00:00
|
|
|
void Paragraph::updateWords()
|
2008-02-26 13:07:59 +00:00
|
|
|
{
|
|
|
|
deregisterWords();
|
2009-05-01 09:56:20 +00:00
|
|
|
collectWords();
|
2008-02-26 13:07:59 +00:00
|
|
|
registerWords();
|
|
|
|
}
|
|
|
|
|
2009-05-06 23:39:17 +00:00
|
|
|
|
2010-09-29 19:31:16 +00:00
|
|
|
void Paragraph::Private::appendSkipPosition(SkipPositions & skips, pos_type const pos) const
|
|
|
|
{
|
|
|
|
SkipPositionsIterator begin = skips.begin();
|
|
|
|
SkipPositions::iterator end = skips.end();
|
|
|
|
if (pos > 0 && begin < end) {
|
|
|
|
--end;
|
|
|
|
if (end->last == pos - 1) {
|
|
|
|
end->last = pos;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
skips.insert(end, FontSpan(pos, pos));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-09-14 05:24:04 +00:00
|
|
|
Language * Paragraph::Private::locateSpellRange(
|
|
|
|
pos_type & from, pos_type & to,
|
2010-09-29 19:31:16 +00:00
|
|
|
SkipPositions & skips) const
|
2009-05-06 23:39:17 +00:00
|
|
|
{
|
2010-09-14 05:24:04 +00:00
|
|
|
// skip leading white space
|
|
|
|
while (from < to && owner_->isWordSeparator(from))
|
|
|
|
++from;
|
|
|
|
// don't check empty range
|
|
|
|
if (from >= to)
|
|
|
|
return 0;
|
|
|
|
// get current language
|
|
|
|
Language * lang = getSpellLanguage(from);
|
|
|
|
pos_type last = from;
|
|
|
|
bool samelang = true;
|
|
|
|
bool sameinset = true;
|
|
|
|
while (last < to && samelang && sameinset) {
|
|
|
|
// hop to end of word
|
|
|
|
while (last < to && !owner_->isWordSeparator(last)) {
|
|
|
|
if (owner_->getInset(last)) {
|
2010-09-29 19:31:16 +00:00
|
|
|
appendSkipPosition(skips, last);
|
|
|
|
} else if (owner_->isDeleted(last)) {
|
|
|
|
appendSkipPosition(skips, last);
|
2010-09-14 05:24:04 +00:00
|
|
|
}
|
|
|
|
++last;
|
|
|
|
}
|
|
|
|
// hop to next word while checking for insets
|
|
|
|
while (sameinset && last < to && owner_->isWordSeparator(last)) {
|
|
|
|
if (Inset const * inset = owner_->getInset(last))
|
|
|
|
sameinset = inset->isChar() && inset->isLetter();
|
2010-09-29 19:31:16 +00:00
|
|
|
if (sameinset && owner_->isDeleted(last)) {
|
|
|
|
appendSkipPosition(skips, last);
|
|
|
|
}
|
2010-09-14 05:24:04 +00:00
|
|
|
if (sameinset)
|
|
|
|
last++;
|
|
|
|
}
|
|
|
|
if (sameinset && last < to) {
|
|
|
|
// now check for language change
|
|
|
|
samelang = lang == getSpellLanguage(last);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// if language change detected backstep is needed
|
|
|
|
if (!samelang)
|
|
|
|
--last;
|
|
|
|
to = last;
|
|
|
|
return lang;
|
|
|
|
}
|
2009-06-22 16:38:11 +00:00
|
|
|
|
2010-02-13 15:44:17 +00:00
|
|
|
|
2010-09-14 05:24:04 +00:00
|
|
|
Language * Paragraph::Private::getSpellLanguage(pos_type const from) const
|
|
|
|
{
|
|
|
|
Language * lang =
|
|
|
|
const_cast<Language *>(owner_->getFontSettings(
|
|
|
|
inset_owner_->buffer().params(), from).language());
|
|
|
|
if (lang == inset_owner_->buffer().params().language
|
|
|
|
&& !lyxrc.spellchecker_alt_lang.empty()) {
|
2010-02-09 11:26:49 +00:00
|
|
|
string lang_code;
|
|
|
|
string const lang_variety =
|
|
|
|
split(lyxrc.spellchecker_alt_lang, lang_code, '-');
|
|
|
|
lang->setCode(lang_code);
|
|
|
|
lang->setVariety(lang_variety);
|
|
|
|
}
|
2010-09-14 05:24:04 +00:00
|
|
|
return lang;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Paragraph::requestSpellCheck(pos_type pos)
|
|
|
|
{
|
2011-08-20 13:48:19 +00:00
|
|
|
d->requestSpellCheck(pos);
|
2010-09-14 05:24:04 +00:00
|
|
|
}
|
2009-05-06 23:39:17 +00:00
|
|
|
|
2009-06-22 16:38:11 +00:00
|
|
|
|
2010-09-14 05:24:04 +00:00
|
|
|
bool Paragraph::needsSpellCheck() const
|
|
|
|
{
|
|
|
|
SpellChecker::ChangeNumber speller_change_number = 0;
|
|
|
|
if (theSpellChecker())
|
|
|
|
speller_change_number = theSpellChecker()->changeNumber();
|
|
|
|
if (speller_change_number > d->speller_state_.currentChangeNumber()) {
|
|
|
|
d->speller_state_.needsCompleteRefresh(speller_change_number);
|
|
|
|
}
|
|
|
|
return d->needsSpellCheck();
|
|
|
|
}
|
|
|
|
|
2009-06-22 16:38:11 +00:00
|
|
|
|
2010-12-07 00:13:19 +00:00
|
|
|
bool Paragraph::Private::ignoreWord(docstring const & word) const
|
|
|
|
{
|
|
|
|
// Ignore words with digits
|
|
|
|
// FIXME: make this customizable
|
|
|
|
// (note that some checkers ignore words with digits by default)
|
|
|
|
docstring::const_iterator cit = word.begin();
|
|
|
|
docstring::const_iterator const end = word.end();
|
|
|
|
for (; cit != end; ++cit) {
|
|
|
|
if (isNumber((*cit)))
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-09-14 05:24:04 +00:00
|
|
|
SpellChecker::Result Paragraph::spellCheck(pos_type & from, pos_type & to,
|
|
|
|
WordLangTuple & wl, docstring_list & suggestions,
|
|
|
|
bool do_suggestion, bool check_learned) const
|
|
|
|
{
|
|
|
|
SpellChecker::Result result = SpellChecker::WORD_OK;
|
|
|
|
SpellChecker * speller = theSpellChecker();
|
|
|
|
if (!speller)
|
|
|
|
return result;
|
|
|
|
|
|
|
|
if (!d->layout_->spellcheck || !inInset().allowSpellCheck())
|
|
|
|
return result;
|
|
|
|
|
|
|
|
locateWord(from, to, WHOLE_WORD);
|
2010-09-19 11:49:10 +00:00
|
|
|
if (from == to || from >= size())
|
2010-09-14 05:24:04 +00:00
|
|
|
return result;
|
|
|
|
|
2010-12-20 19:18:56 +00:00
|
|
|
docstring word = asString(from, to, AS_STR_INSETS | AS_STR_SKIPDELETE);
|
2010-09-14 05:24:04 +00:00
|
|
|
Language * lang = d->getSpellLanguage(from);
|
|
|
|
|
|
|
|
wl = WordLangTuple(word, lang);
|
2010-09-14 14:00:29 +00:00
|
|
|
|
2010-09-14 05:24:04 +00:00
|
|
|
if (!word.size())
|
|
|
|
return result;
|
|
|
|
|
|
|
|
if (needsSpellCheck() || check_learned) {
|
2011-03-29 10:37:21 +00:00
|
|
|
pos_type end = to;
|
2010-12-07 00:13:19 +00:00
|
|
|
if (!d->ignoreWord(word)) {
|
2010-09-17 17:39:18 +00:00
|
|
|
bool const trailing_dot = to < size() && d->text_[to] == '.';
|
2010-09-14 05:24:04 +00:00
|
|
|
result = speller->check(wl);
|
2010-09-17 17:39:18 +00:00
|
|
|
if (SpellChecker::misspelled(result) && trailing_dot) {
|
2010-09-19 16:00:32 +00:00
|
|
|
wl = WordLangTuple(word.append(from_ascii(".")), lang);
|
2010-09-17 17:39:18 +00:00
|
|
|
result = speller->check(wl);
|
2010-09-19 11:49:10 +00:00
|
|
|
if (!SpellChecker::misspelled(result)) {
|
2010-09-19 16:00:32 +00:00
|
|
|
LYXERR(Debug::GUI, "misspelled word is correct with dot: \"" <<
|
2010-09-19 11:49:10 +00:00
|
|
|
word << "\" [" <<
|
|
|
|
from << ".." << to << "]");
|
2011-01-02 11:31:28 +00:00
|
|
|
} else {
|
2011-03-29 10:37:21 +00:00
|
|
|
// spell check with dot appended failed too
|
2011-01-02 11:31:28 +00:00
|
|
|
// restore original word/lang value
|
|
|
|
word = asString(from, to, AS_STR_INSETS | AS_STR_SKIPDELETE);
|
|
|
|
wl = WordLangTuple(word, lang);
|
2010-09-19 11:49:10 +00:00
|
|
|
}
|
2010-09-17 17:39:18 +00:00
|
|
|
}
|
|
|
|
}
|
2011-03-29 10:37:21 +00:00
|
|
|
if (!SpellChecker::misspelled(result)) {
|
|
|
|
// area up to the begin of the next word is not misspelled
|
|
|
|
while (end < size() && isWordSeparator(end))
|
|
|
|
++end;
|
|
|
|
}
|
|
|
|
d->setMisspelled(from, end, result);
|
2010-09-14 05:24:04 +00:00
|
|
|
} else {
|
|
|
|
result = d->speller_state_.getState(from);
|
|
|
|
}
|
2010-09-14 14:00:29 +00:00
|
|
|
|
2011-03-29 10:37:21 +00:00
|
|
|
if (do_suggestion)
|
|
|
|
suggestions.clear();
|
|
|
|
|
|
|
|
if (SpellChecker::misspelled(result)) {
|
2010-09-14 05:24:04 +00:00
|
|
|
LYXERR(Debug::GUI, "misspelled word: \"" <<
|
|
|
|
word << "\" [" <<
|
|
|
|
from << ".." << to << "]");
|
2011-03-29 10:37:21 +00:00
|
|
|
if (do_suggestion)
|
|
|
|
speller->suggest(wl, suggestions);
|
|
|
|
}
|
2010-09-14 05:24:04 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Paragraph::Private::markMisspelledWords(
|
|
|
|
pos_type const & first, pos_type const & last,
|
|
|
|
SpellChecker::Result result,
|
|
|
|
docstring const & word,
|
2010-09-29 19:31:16 +00:00
|
|
|
SkipPositions const & skips)
|
2010-09-14 05:24:04 +00:00
|
|
|
{
|
2010-09-14 12:48:03 +00:00
|
|
|
if (!SpellChecker::misspelled(result)) {
|
|
|
|
setMisspelled(first, last, SpellChecker::WORD_OK);
|
|
|
|
return;
|
|
|
|
}
|
2010-09-14 14:01:44 +00:00
|
|
|
int snext = first;
|
2010-09-14 12:48:03 +00:00
|
|
|
SpellChecker * speller = theSpellChecker();
|
|
|
|
// locate and enumerate the error positions
|
|
|
|
int nerrors = speller->numMisspelledWords();
|
2010-09-29 19:31:16 +00:00
|
|
|
int numskipped = 0;
|
|
|
|
SkipPositionsIterator it = skips.begin();
|
|
|
|
SkipPositionsIterator et = skips.end();
|
2010-09-14 12:48:03 +00:00
|
|
|
for (int index = 0; index < nerrors; ++index) {
|
|
|
|
int wstart;
|
|
|
|
int wlen = 0;
|
|
|
|
speller->misspelledWord(index, wstart, wlen);
|
|
|
|
/// should not happen if speller supports range checks
|
|
|
|
if (!wlen) continue;
|
|
|
|
docstring const misspelled = word.substr(wstart, wlen);
|
2010-09-29 19:31:16 +00:00
|
|
|
wstart += first + numskipped;
|
2010-09-14 12:48:03 +00:00
|
|
|
if (snext < wstart) {
|
|
|
|
/// mark the range of correct spelling
|
2010-09-29 19:31:16 +00:00
|
|
|
numskipped += countSkips(it, et, wstart);
|
2010-09-14 12:48:03 +00:00
|
|
|
setMisspelled(snext,
|
|
|
|
wstart - 1, SpellChecker::WORD_OK);
|
|
|
|
}
|
|
|
|
snext = wstart + wlen;
|
2010-09-29 19:31:16 +00:00
|
|
|
numskipped += countSkips(it, et, snext);
|
2010-09-14 12:48:03 +00:00
|
|
|
/// mark the range of misspelling
|
|
|
|
setMisspelled(wstart, snext, result);
|
|
|
|
LYXERR(Debug::GUI, "misspelled word: \"" <<
|
|
|
|
misspelled << "\" [" <<
|
|
|
|
wstart << ".." << (snext-1) << "]");
|
|
|
|
++snext;
|
2010-09-14 05:24:04 +00:00
|
|
|
}
|
|
|
|
if (snext <= last) {
|
2010-09-14 12:48:03 +00:00
|
|
|
/// mark the range of correct spelling at end
|
2010-09-14 05:24:04 +00:00
|
|
|
setMisspelled(snext, last, SpellChecker::WORD_OK);
|
|
|
|
}
|
2009-05-06 23:39:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-09-14 05:24:04 +00:00
|
|
|
void Paragraph::spellCheck() const
|
|
|
|
{
|
|
|
|
SpellChecker * speller = theSpellChecker();
|
|
|
|
if (!speller || !size() ||!needsSpellCheck())
|
|
|
|
return;
|
|
|
|
pos_type start;
|
|
|
|
pos_type endpos;
|
|
|
|
d->rangeOfSpellCheck(start, endpos);
|
|
|
|
if (speller->canCheckParagraph()) {
|
2010-09-14 12:48:03 +00:00
|
|
|
// loop until we leave the range
|
2010-09-14 05:24:04 +00:00
|
|
|
for (pos_type first = start; first < endpos; ) {
|
|
|
|
pos_type last = endpos;
|
2010-09-29 19:31:16 +00:00
|
|
|
Private::SkipPositions skips;
|
|
|
|
Language * lang = d->locateSpellRange(first, last, skips);
|
2010-09-14 05:24:04 +00:00
|
|
|
if (first >= endpos)
|
|
|
|
break;
|
|
|
|
// start the spell checker on the unit of meaning
|
2010-09-29 19:31:16 +00:00
|
|
|
docstring word = asString(first, last, AS_STR_INSETS + AS_STR_SKIPDELETE);
|
2010-09-14 05:24:04 +00:00
|
|
|
WordLangTuple wl = WordLangTuple(word, lang);
|
|
|
|
SpellChecker::Result result = word.size() ?
|
|
|
|
speller->check(wl) : SpellChecker::WORD_OK;
|
2010-09-29 19:31:16 +00:00
|
|
|
d->markMisspelledWords(first, last, result, word, skips);
|
2010-09-14 05:24:04 +00:00
|
|
|
first = ++last;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
static docstring_list suggestions;
|
|
|
|
pos_type to = endpos;
|
|
|
|
while (start < endpos) {
|
|
|
|
WordLangTuple wl;
|
|
|
|
spellCheck(start, to, wl, suggestions, false);
|
|
|
|
start = to + 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
d->readySpellCheck();
|
|
|
|
}
|
|
|
|
|
2010-09-14 14:00:29 +00:00
|
|
|
|
2011-01-29 12:28:02 +00:00
|
|
|
bool Paragraph::isMisspelled(pos_type pos, bool check_boundary) const
|
2009-06-22 16:38:11 +00:00
|
|
|
{
|
2011-01-29 12:28:02 +00:00
|
|
|
bool result = SpellChecker::misspelled(d->speller_state_.getState(pos));
|
2011-04-02 14:03:35 +00:00
|
|
|
if (result || pos <= 0 || pos > size())
|
2011-01-30 07:17:48 +00:00
|
|
|
return result;
|
2011-04-02 14:03:35 +00:00
|
|
|
if (check_boundary && (pos == size() || isWordSeparator(pos)))
|
2011-01-29 12:28:02 +00:00
|
|
|
result = SpellChecker::misspelled(d->speller_state_.getState(pos - 1));
|
|
|
|
return result;
|
2009-06-22 16:38:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-12-10 20:03:35 +00:00
|
|
|
string Paragraph::magicLabel() const
|
|
|
|
{
|
|
|
|
stringstream ss;
|
|
|
|
ss << "magicparlabel-" << id();
|
|
|
|
return ss.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
} // namespace lyx
|