]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetFlex.h
Remove all BufferParam arguments in InsetXXX methods (since insets know about their...
[lyx.git] / src / insets / InsetFlex.h
index 665dfa6f4e770f40ca29bded0d6911968bf01b02..239ced831fe62fd0148b4f8cd0d42730d50a91ca 100644 (file)
@@ -26,40 +26,22 @@ public:
        InsetFlex(Buffer const &, std::string const & layoutName);
        ///
        docstring name() const { return from_utf8(name_); }
-
        ///
        docstring editMessage() const;
        ///
        InsetCode lyxCode() const { return FLEX_CODE; }
        ///
        void write(std::ostream &) const;
-       ///
-       void read(Lexer & lex);
-
-       ///
-       int plaintext(odocstream &, OutputParams const &) const;
-       ///
-       int docbook(odocstream &, OutputParams const &) const;
-       /// the string that is passed to the TOC
-       void textString(odocstream &) const;
-
        /// should paragraph indendation be ommitted in any case?
        bool neverIndent() const { return true; }
+       ///
+       bool hasSettings() const { return false; }
 
 protected:
        InsetFlex(InsetFlex const &);
 
 private:
        Inset * clone() const { return new InsetFlex(*this); }
-       /// should paragraphs be forced to use the empty layout?
-       //FIXME: this is not always correct. We need a layout tag that indicates
-       // whether layout changes are allowed or not
-       virtual bool forcePlainLayout(idx_type = 0) const { return !allowMultiPar(); }
-       /// should the user be allowed to customize alignment, etc.?
-       //FIXME: this is not always correct. We need a layout tag that indicates
-       // whether paragraph customization is allowed or not
-       virtual bool allowParagraphCustomization(idx_type = 0) const { return allowMultiPar(); }
-
        ///
        std::string name_;
 };