X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetenv.h;h=0925a20ad39a05d4dc42f4d146fbb15211fe2c4c;hb=e28331ed63062dea10d0a21b9ec12034b4b17b9a;hp=8aa9079cb97e002f515e22ed6ff8693bdaaee452;hpb=cd424d78530c9e38502ee7f989ef5c426c97ad61;p=lyx.git diff --git a/src/insets/insetenv.h b/src/insets/insetenv.h index 8aa9079cb9..0925a20ad3 100644 --- a/src/insets/insetenv.h +++ b/src/insets/insetenv.h @@ -15,39 +15,41 @@ #include "insettext.h" #include "lyxlayout_ptr_fwd.h" + +namespace lyx { + class InsetEnvironment : public InsetText { public: /// InsetEnvironment(BufferParams const &, std::string const & name); /// - InsetEnvironment(InsetEnvironment const &); - /// void write(Buffer const & buf, std::ostream & os) const; /// void read(Buffer const & buf, LyXLex & lex); /// - virtual std::auto_ptr clone() const; - /// - InsetOld::Code lyxCode() const { return InsetOld::ENVIRONMENT_CODE; } + InsetBase::Code lyxCode() const { return InsetBase::ENVIRONMENT_CODE; } /// - int latex(Buffer const &, std::ostream &, + int latex(Buffer const &, odocstream &, OutputParams const &) const; /// - std::string const editMessage() const; + virtual docstring const editMessage() const; /// - InsetOld::EDITABLE editable() const { return HIGHLY_EDITABLE; } - /// - bool isTextInset() const { return true; } + InsetBase::EDITABLE editable() const { return HIGHLY_EDITABLE; } /// LyXLayout_ptr 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 */ + 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 std::auto_ptr doClone() const; /// the layout LyXLayout_ptr layout_; }; + +} // namespace lyx + #endif