X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetERT.h;h=87ed11616a302e8be87e7d399a4ced83d024c205;hb=00e00b32fd1df4e3c90a63ff067400f0f7153dee;hp=2df001b3e0972615b10418bb6f67fa2c78425ef3;hpb=aedfb81808d837df00947e8ac86f8941045e538c;p=lyx.git diff --git a/src/insets/InsetERT.h b/src/insets/InsetERT.h index 2df001b3e0..87ed11616a 100644 --- a/src/insets/InsetERT.h +++ b/src/insets/InsetERT.h @@ -13,12 +13,12 @@ #ifndef INSETERT_H #define INSETERT_H -#include "InsetCollapsable.h" +#include "InsetCollapsible.h" namespace lyx { -/** A collapsable text inset for LaTeX insertions. +/** A collapsible text inset for LaTeX insertions. To write full ert (including styles and other insets) in a given space. @@ -29,37 +29,33 @@ namespace lyx { class Language; -class InsetERT : public InsetCollapsable { +class InsetERT : public InsetCollapsible { public: /// - InsetERT(Buffer const &, CollapseStatus status = Open); - /// - ~InsetERT(); + InsetERT(Buffer *, CollapseStatus status = Open); /// static CollapseStatus string2params(std::string const &); /// static std::string params2string(CollapseStatus); + + std::string contextMenuName() const + { return "context-ert"; } private: /// InsetCode lyxCode() const { return ERT_CODE; } /// - docstring name() const { return from_ascii("ERT"); } + docstring layoutName() const { return from_ascii("ERT"); } /// void write(std::ostream & os) const; /// - docstring editMessage() const; - /// - bool insetAllowed(InsetCode code) const; - /// - int latex(odocstream &, OutputParams const &) const; - /// - int plaintext(odocstream &, OutputParams const &) const; + int plaintext(odocstringstream & ods, OutputParams const & op, + size_t max_length = INT_MAX) const; /// int docbook(odocstream &, OutputParams const &) const; /// - void validate(LaTeXFeatures &) const {} + docstring xhtml(XHTMLStream &, OutputParams const &) const; /// - bool showInsetDialog(BufferView *) const; + void validate(LaTeXFeatures &) const {} /// should paragraph indendation be omitted in any case? bool neverIndent() const { return true; } /// @@ -69,7 +65,7 @@ private: /// Inset * clone() const { return new InsetERT(*this); } /// - void setButtonLabel(BufferView const & bv); + docstring const buttonLabel(BufferView const & bv) const; /// bool allowSpellCheck() const { return false; } };