mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-07 12:32:26 +00:00
6d425078a7
Currently, if an inset outputs a newline, the new latex row is still associated with a previous id/pos. Now, if a latex error occurs before this newline, we would still highlight everything associated to that id/pos, even if it is extraneous to the error. This is avoided by associating the new latex row with the id/pos in effect right before entering the inset. If an inset does not output a newline, it is not excluded from the selection, consistent with the fact that the text of the inset does appear in the error description. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@37903 a592a061-630c-0410-9148-cb99ea01b6c8
59 lines
1.5 KiB
C++
59 lines
1.5 KiB
C++
/**
|
|
* \file OutputParams.cpp
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Angus Leeming
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "OutputParams.h"
|
|
#include "Exporter.h"
|
|
#include "Encoding.h"
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
|
OutputParams::OutputParams(Encoding const * enc)
|
|
: flavor(LATEX), math_flavor(NotApplicable), nice(false), moving_arg(false),
|
|
inulemcmd(false), local_font(0), master_language(0), encoding(enc),
|
|
free_spacing(false), use_babel(false), use_polyglossia(false),
|
|
use_indices(false), use_japanese(false), linelen(0), depth(0),
|
|
exportdata(new ExportData),
|
|
inComment(false), inTableCell(NO), inFloat(NONFLOAT),
|
|
inIndexEntry(false), inDeletedInset(0),
|
|
changeOfDeletedInset(Change::UNCHANGED),
|
|
par_begin(0), par_end(0), lastid(-1), lastpos(-1), isLastPar(false),
|
|
dryrun(false), pass_thru(false),
|
|
html_disable_captions(false), html_in_par(false),
|
|
html_make_pars(true), for_toc(false), includeall(false)
|
|
{
|
|
// Note: in PreviewLoader::Impl::dumpPreamble
|
|
// OutputParams runparams(0);
|
|
if (enc && enc->package() == Encoding::japanese)
|
|
use_japanese = true;
|
|
}
|
|
|
|
|
|
OutputParams::~OutputParams()
|
|
{}
|
|
|
|
|
|
bool OutputParams::isLaTeX() const
|
|
{
|
|
return flavor == LATEX || flavor == LUATEX
|
|
|| flavor == PDFLATEX || flavor == XETEX;
|
|
}
|
|
|
|
|
|
bool OutputParams::isFullUnicode() const
|
|
{
|
|
return flavor == LUATEX || flavor == XETEX;
|
|
}
|
|
|
|
} // namespace lyx
|