]> git.lyx.org Git - features.git/blobdiff - src/insets/InsetERT.h
Completion: handle undo in insets' insertCompletion methods
[features.git] / src / insets / InsetERT.h
index eb6ab9178d01a5af3daa852a531918a379daebb2..72220d07d0c7aeec383533c681a6071fd63cb9ce 100644 (file)
@@ -13,8 +13,7 @@
 #ifndef INSETERT_H
 #define INSETERT_H
 
-#include "InsetCollapsable.h"
-
+#include "InsetCollapsible.h"
 
 namespace lyx {
 
@@ -27,47 +26,49 @@ namespace lyx {
   versions of this inset.
 */
 
-class Language;
-
-class InsetERT : public InsetCollapsable {
+class InsetERT : public InsetCollapsible {
 public:
        ///
        InsetERT(Buffer *, CollapseStatus status = Open);
        ///
+       InsetERT(InsetERT const & old);
+       ///
        static CollapseStatus string2params(std::string const &);
        ///
        static std::string params2string(CollapseStatus);
 
-       std::string contextMenuName() const
+       std::string contextMenuName() const override
                { return "context-ert"; }
 private:
        ///
-       InsetCode lyxCode() const { return ERT_CODE; }
+       InsetCode lyxCode() const override { return ERT_CODE; }
        ///
-       docstring layoutName() const { return from_ascii("ERT"); }
+       docstring layoutName() const override { return from_ascii("ERT"); }
        ///
-       void write(std::ostream & os) const;
+       void write(std::ostream & os) const override;
        ///
        int plaintext(odocstringstream & ods, OutputParams const & op,
-                     size_t max_length = INT_MAX) const;
+                     size_t max_length = INT_MAX) const override;
        ///
-       int docbook(odocstream &, OutputParams const &) const;
+       void docbook(XMLStream &, OutputParams const &) const override;
        ///
-       docstring xhtml(XHTMLStream &, OutputParams const &) const;
+       docstring xhtml(XMLStream &, OutputParams const &) const override;
        ///
-       void validate(LaTeXFeatures &) 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; }
 };