]> git.lyx.org Git - features.git/blobdiff - src/insets/InsetERT.h
Typo
[features.git] / src / insets / InsetERT.h
index 1e02fc8d9fb565d5f8fbf3a515076dfca6ce1113..72220d07d0c7aeec383533c681a6071fd63cb9ce 100644 (file)
 #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.
@@ -27,53 +26,49 @@ namespace lyx {
   versions of this inset.
 */
 
-class Language;
-
-class InsetERT : public InsetCollapsable {
+class InsetERT : public InsetCollapsible {
 public:
        ///
-       InsetERT(Buffer const &, CollapseStatus status = Open);
+       InsetERT(Buffer *, CollapseStatus status = Open);
        ///
-       ~InsetERT();
+       InsetERT(InsetERT const & old);
        ///
        static CollapseStatus string2params(std::string const &);
        ///
        static std::string params2string(CollapseStatus);
+
+       std::string contextMenuName() const override
+               { return "context-ert"; }
 private:
        ///
-       InsetCode lyxCode() const { return ERT_CODE; }
-       ///
-       docstring name() const { return from_ascii("ERT"); }
-       ///
-       void write(std::ostream & os) const;
-       ///
-       docstring editMessage() const;
-       ///
-       bool insetAllowed(InsetCode code) const;
+       InsetCode lyxCode() const override { return ERT_CODE; }
        ///
-       int latex(odocstream &, OutputParams const &) const;
+       docstring layoutName() const override { return from_ascii("ERT"); }
        ///
-       int plaintext(odocstream &, OutputParams const &) const;
+       void write(std::ostream & os) const override;
        ///
-       int docbook(odocstream &, OutputParams const &) const;
+       int plaintext(odocstringstream & ods, OutputParams const & op,
+                     size_t max_length = INT_MAX) const override;
        ///
-       docstring xhtml(odocstream &, OutputParams const &) const;
+       void docbook(XMLStream &, OutputParams const &) const override;
        ///
-       void validate(LaTeXFeatures &) const {}
+       docstring xhtml(XMLStream &, OutputParams const &) const override;
        ///
-       bool showInsetDialog(BufferView *) const;
-       /// should paragraph indendation be omitted in any case?
-       bool neverIndent() const { return true; }
+       void validate(LaTeXFeatures &) const override {}
+       /// should paragraph indentation be omitted in any case?
+       bool neverIndent() const override { return true; }
        ///
-       void doDispatch(Cursor & cur, FuncRequest & cmd);
+       void doDispatch(Cursor & cur, FuncRequest & cmd) override;
        ///
-       bool getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus &) const;
+       bool getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus &) const override;
+       ///
+       Inset * clone() const override { return new InsetERT(*this); }
        ///
-       Inset * clone() const { return new InsetERT(*this); }
+       docstring const buttonLabel(BufferView const & bv) const override;
        ///
-       docstring const buttonLabel(BufferView const & bv) const;
+       bool allowSpellCheck() const override { return false; }
        ///
-       bool allowSpellCheck() const { return false; }
+       bool insetAllowed(InsetCode code) const override { return code == QUOTE_CODE; }
 };