]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetERT.h
Allow row-breaking after some insets
[lyx.git] / src / insets / InsetERT.h
index ba62977d09301ab0889ae4c60eda9533435cf856..6ef43760d9f053019dbc0eddab6c36d6bb431359 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 &);
        ///
@@ -60,7 +54,7 @@ private:
        ///
        int docbook(odocstream &, 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?
@@ -70,19 +64,13 @@ private:
        ///
        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;
        ///
        bool allowSpellCheck() const { return false; }
        ///
-       bool insetAllowed(InsetCode /* code */) const { return false; }
-       ///
-       unique_ptr<support::TempFile> tempfile_;
+       bool insetAllowed(InsetCode code) const { return code == QUOTE_CODE; }
 };