mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-06 11:23:45 +00:00
afed7d06fa
* TexRow now computes rows from a DocIterator. In practice, the cursor highlighting is now correct inside insets, it is no longer restricted to the topmost level. It certainly also makes forward-search more precise. * Added the option to disable a texrow when not needed, for perf. * Fixed a bug where the last paragraph was not properly highlighted. Limitations: * TexRow still does not handle: math (e.g. multi-cell), sub-captions, inset arguments.
76 lines
2.2 KiB
C++
76 lines
2.2 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file output_latex.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Lars Gullik Bjønnes
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef OUTPUT_LATEX_H
|
|
#define OUTPUT_LATEX_H
|
|
|
|
#include <utility>
|
|
|
|
#include "support/docstream.h"
|
|
#include "Layout.h"
|
|
#include "ParagraphList.h"
|
|
|
|
|
|
namespace lyx {
|
|
|
|
class Buffer;
|
|
class BufferParams;
|
|
class Encoding;
|
|
class Layout;
|
|
class Paragraph;
|
|
class OutputParams;
|
|
class Text;
|
|
|
|
/** Export optional and required arguments of the paragraph \p par.
|
|
Non-existing required arguments are output empty: {}.
|
|
*/
|
|
void latexArgInsets(Paragraph const & par,
|
|
otexstream & os, OutputParams const & runparams,
|
|
Layout::LaTeXArgMap const & latexargs,
|
|
std::string const & prefix = std::string());
|
|
/// Same for multi-par sequences (e.g. merged environments or InsetLayouts)
|
|
void latexArgInsets(ParagraphList const & pars, ParagraphList::const_iterator pit,
|
|
otexstream & os, OutputParams const & runparams,
|
|
Layout::LaTeXArgMap const & latexargs,
|
|
std::string const & prefix = std::string());
|
|
/** Export \p paragraphs of buffer \p buf to LaTeX.
|
|
Don't use a temporary stringstream for \p os if the final output is
|
|
supposed to go to a file.
|
|
\sa Buffer::writeLaTeXSource for the reason.
|
|
*/
|
|
void latexParagraphs(Buffer const & buf,
|
|
Text const & text,
|
|
otexstream & ofs,
|
|
OutputParams const &,
|
|
std::string const & everypar = std::string());
|
|
|
|
/** Switch the encoding of \p os from runparams.encoding to \p newEnc if needed.
|
|
\p force forces this also within non-default or -auto encodings.
|
|
\return (did the encoding change?, number of characters written to \p os)
|
|
*/
|
|
std::pair<bool, int> switchEncoding(odocstream & os,
|
|
BufferParams const & bparams,
|
|
OutputParams const &, Encoding const & newEnc,
|
|
bool force = false);
|
|
|
|
/// FIXME: this should not be visible.
|
|
void TeXOnePar(Buffer const & buf,
|
|
Text const & text,
|
|
pit_type pit,
|
|
otexstream & os,
|
|
OutputParams const & runparams,
|
|
std::string const & everypar = std::string(),
|
|
int start_pos = -1, int end_pos = -1);
|
|
|
|
} // namespace lyx
|
|
|
|
#endif
|