2003-03-13 10:06:11 +00:00
|
|
|
|
// -*- C++ -*-
|
|
|
|
|
/**
|
|
|
|
|
* \file insetenv.h
|
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
|
*
|
|
|
|
|
* \author Andr<EFBFBD> P<EFBFBD>nitz
|
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
|
* Full author contact details are available in file CREDITS.
|
2003-03-13 10:06:11 +00:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef INSETENVIRONMENT_H
|
|
|
|
|
#define INSETENVIRONMENT_H
|
|
|
|
|
|
2003-04-25 15:28:41 +00:00
|
|
|
|
#include "insettext.h"
|
2003-05-19 07:12:09 +00:00
|
|
|
|
#include "lyxlayout_ptr_fwd.h"
|
2003-03-13 10:06:11 +00:00
|
|
|
|
|
2004-02-11 14:45:44 +00:00
|
|
|
|
|
2003-04-25 15:28:41 +00:00
|
|
|
|
class InsetEnvironment : public InsetText {
|
2003-03-13 10:06:11 +00:00
|
|
|
|
public:
|
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
|
InsetEnvironment(BufferParams const &, std::string const & name);
|
2003-03-13 10:06:11 +00:00
|
|
|
|
///
|
2003-08-28 07:41:31 +00:00
|
|
|
|
void write(Buffer const & buf, std::ostream & os) const;
|
2003-03-13 10:06:11 +00:00
|
|
|
|
///
|
2003-08-28 07:41:31 +00:00
|
|
|
|
void read(Buffer const & buf, LyXLex & lex);
|
2003-03-13 10:06:11 +00:00
|
|
|
|
///
|
2004-11-25 19:13:07 +00:00
|
|
|
|
InsetBase::Code lyxCode() const { return InsetBase::ENVIRONMENT_CODE; }
|
2003-03-13 10:06:11 +00:00
|
|
|
|
///
|
2003-08-28 07:41:31 +00:00
|
|
|
|
int latex(Buffer const &, std::ostream &,
|
2003-11-05 12:06:20 +00:00
|
|
|
|
OutputParams const &) const;
|
2003-03-13 10:06:11 +00:00
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
|
std::string const editMessage() const;
|
2003-03-13 10:06:11 +00:00
|
|
|
|
///
|
2004-11-25 19:13:07 +00:00
|
|
|
|
InsetBase::EDITABLE editable() const { return HIGHLY_EDITABLE; }
|
2003-04-25 15:28:41 +00:00
|
|
|
|
///
|
|
|
|
|
bool isTextInset() const { return true; }
|
|
|
|
|
///
|
2003-05-19 07:12:09 +00:00
|
|
|
|
LyXLayout_ptr const & layout() const;
|
2003-03-13 10:06:11 +00:00
|
|
|
|
/** 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; }
|
2004-11-23 23:04:52 +00:00
|
|
|
|
protected:
|
|
|
|
|
InsetEnvironment(InsetEnvironment const &);
|
2003-03-13 10:06:11 +00:00
|
|
|
|
private:
|
2004-11-23 23:04:52 +00:00
|
|
|
|
virtual std::auto_ptr<InsetBase> doClone() const;
|
2003-05-19 07:12:09 +00:00
|
|
|
|
/// the layout
|
|
|
|
|
LyXLayout_ptr layout_;
|
2003-03-13 10:06:11 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|