]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetERT.h
New DocBook support
[lyx.git] / src / insets / InsetERT.h
index eb6ab9178d01a5af3daa852a531918a379daebb2..b24c93d628e16ae8a40c34a24e73364de049cf61 100644 (file)
@@ -13,8 +13,7 @@
 #ifndef INSETERT_H
 #define INSETERT_H
 
-#include "InsetCollapsable.h"
-
+#include "InsetCollapsible.h"
 
 namespace lyx {
 
@@ -29,11 +28,13 @@ namespace lyx {
 
 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);
@@ -51,23 +52,25 @@ private:
        int plaintext(odocstringstream & ods, OutputParams const & op,
                      size_t max_length = INT_MAX) const;
        ///
-       int docbook(odocstream &, OutputParams const &) const;
+       void docbook(XMLStream &, OutputParams const &) const;
        ///
-       docstring xhtml(XHTMLStream &, OutputParams const &) const;
+       docstring xhtml(XMLStream &, OutputParams const &) const;
        ///
        void validate(LaTeXFeatures &) const {}
-       /// should paragraph indendation be omitted in any case?
+       /// should paragraph indentation be omitted in any case?
        bool neverIndent() const { return true; }
        ///
        void doDispatch(Cursor & cur, FuncRequest & cmd);
        ///
        bool getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus &) const;
-       ///
+       ///
        Inset * clone() const { return new InsetERT(*this); }
        ///
        docstring const buttonLabel(BufferView const & bv) const;
        ///
        bool allowSpellCheck() const { return false; }
+       ///
+       bool insetAllowed(InsetCode code) const { return code == QUOTE_CODE; }
 };