mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
b99433e73b
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@21157 a592a061-630c-0410-9148-cb99ea01b6c8
63 lines
1.4 KiB
C++
63 lines
1.4 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file InsetEnvironment.h
|
|
* 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.
|
|
*/
|
|
|
|
#ifndef INSETENVIRONMENT_H
|
|
#define INSETENVIRONMENT_H
|
|
|
|
#include "InsetText.h"
|
|
#include "LayoutPtr.h"
|
|
|
|
|
|
namespace lyx {
|
|
|
|
class InsetEnvironment : public InsetText {
|
|
public:
|
|
///
|
|
InsetEnvironment(BufferParams const &, docstring const & name);
|
|
///
|
|
docstring name() const { return name_; }
|
|
///
|
|
void write(Buffer const & buf, std::ostream & os) const;
|
|
///
|
|
void read(Buffer const & buf, Lexer & lex);
|
|
///
|
|
InsetCode lyxCode() const { return ENVIRONMENT_CODE; }
|
|
///
|
|
int latex(Buffer const &, odocstream &,
|
|
OutputParams const &) const;
|
|
///
|
|
int plaintext(Buffer const &, odocstream &,
|
|
OutputParams const &) const;
|
|
///
|
|
virtual docstring const editMessage() const;
|
|
///
|
|
Inset::EDITABLE editable() const { return HIGHLY_EDITABLE; }
|
|
///
|
|
LayoutPtr const & layout() const;
|
|
/** returns true if, when outputing LaTeX, font changes should
|
|
be closed before generating this inset. This is needed for
|
|
insets that may contain several paragraphs */
|
|
bool noFontChange() const { return true; }
|
|
protected:
|
|
InsetEnvironment(InsetEnvironment const &);
|
|
private:
|
|
virtual Inset * clone() const;
|
|
/// the layout
|
|
LayoutPtr layout_;
|
|
///
|
|
docstring name_;
|
|
};
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
#endif
|