]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetERT.h
Improve handling of top and bottom margin
[lyx.git] / src / insets / InsetERT.h
index fb67bc14716fa2a4434f2ce658acbcb9e8473e5d..b24c93d628e16ae8a40c34a24e73364de049cf61 100644 (file)
@@ -28,18 +28,12 @@ namespace lyx {
 
 class Language;
 
-namespace support {
-       class TempFile;
-}
-
 class InsetERT : public InsetCollapsible {
 public:
        ///
        InsetERT(Buffer *, CollapseStatus status = Open);
-       ///
-       InsetERT(InsetERT const &);
        ///
-       InsetERT & operator=(InsetERT const &);
+       InsetERT(InsetERT const & old);
        ///
        static CollapseStatus string2params(std::string const &);
        ///
@@ -58,22 +52,18 @@ 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;
        ///
-       bool editable() const;
-       ///
-       bool descendable(BufferView const &) const;
-       ///
        Inset * clone() const { return new InsetERT(*this); }
        ///
        docstring const buttonLabel(BufferView const & bv) const;
@@ -81,8 +71,6 @@ private:
        bool allowSpellCheck() const { return false; }
        ///
        bool insetAllowed(InsetCode code) const { return code == QUOTE_CODE; }
-       ///
-       unique_ptr<support::TempFile> tempfile_;
 };