mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
cbf599b911
* src/output_latex.{cpp,h}: - (latexParagraphs, TeXEnvironment, TeXOnePar, TeXDeeper): pass Text element instead of ParagraphList. This is necessary to detect whether we are in the main text. - check if we are in the main text for language switches, if needed. * src/Buffer.cpp: * src/insets/InsetEnvironment.cpp: * src/insets/InsetText.cpp: * src/mathed/InsetMathMBox.cpp: - adapt to new latexParagraphs definition. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@22666 a592a061-630c-0410-9148-cb99ea01b6c8
99 lines
1.9 KiB
C++
99 lines
1.9 KiB
C++
/**
|
|
* \file InsetEnvironment.cpp
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author André Pönitz
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "InsetEnvironment.h"
|
|
|
|
#include "BufferParams.h"
|
|
#include "support/gettext.h"
|
|
#include "Layout.h"
|
|
#include "OutputParams.h"
|
|
#include "output_latex.h"
|
|
#include "TexRow.h"
|
|
#include "TextClass.h"
|
|
|
|
using namespace std;
|
|
|
|
namespace lyx {
|
|
|
|
|
|
InsetEnvironment::InsetEnvironment
|
|
(BufferParams const & bp, docstring const & name)
|
|
: InsetText(bp), layout_(bp.getTextClass()[name]), name_(name)
|
|
{
|
|
setAutoBreakRows(true);
|
|
setDrawFrame(true);
|
|
}
|
|
|
|
|
|
InsetEnvironment::InsetEnvironment(InsetEnvironment const & in)
|
|
: InsetText(in), layout_(in.layout_)
|
|
{}
|
|
|
|
|
|
Inset * InsetEnvironment::clone() const
|
|
{
|
|
return new InsetEnvironment(*this);
|
|
}
|
|
|
|
|
|
void InsetEnvironment::write(Buffer const & buf, ostream & os) const
|
|
{
|
|
os << "Environment " << to_utf8(name()) << "\n";
|
|
InsetText::write(buf, os);
|
|
}
|
|
|
|
|
|
void InsetEnvironment::read(Buffer const & buf, Lexer & lex)
|
|
{
|
|
InsetText::read(buf, lex);
|
|
}
|
|
|
|
|
|
docstring const InsetEnvironment::editMessage() const
|
|
{
|
|
return _("Opened Environment Inset: ") + name();
|
|
}
|
|
|
|
|
|
int InsetEnvironment::latex(Buffer const & buf, odocstream & os,
|
|
OutputParams const & runparams) const
|
|
{
|
|
// FIXME UNICODE
|
|
os << from_utf8(layout_->latexheader);
|
|
TexRow texrow;
|
|
latexParagraphs(buf, text_, os, texrow, runparams,
|
|
layout_->latexparagraph);
|
|
// FIXME UNICODE
|
|
os << from_utf8(layout_->latexfooter);
|
|
return texrow.rows();
|
|
}
|
|
|
|
|
|
int InsetEnvironment::plaintext(Buffer const & buf, odocstream & os,
|
|
OutputParams const & runparams) const
|
|
{
|
|
os << '[' << to_utf8(name()) << ":\n";
|
|
InsetText::plaintext(buf, os, runparams);
|
|
os << "\n]";
|
|
|
|
return PLAINTEXT_NEWLINE + 1; // one char on a separate line
|
|
}
|
|
|
|
|
|
LayoutPtr const & InsetEnvironment::layout() const
|
|
{
|
|
return layout_;
|
|
}
|
|
|
|
|
|
} // namespace lyx
|