]> 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 a246c1400ba8e590ebd8eca1d919d94480d3a0ba..239ced831fe62fd0148b4f8cd0d42730d50a91ca 100644 (file)
 
 #include "InsetCollapsable.h"
 
-using std::string;
-
 namespace lyx {
 
-
 /** The Flex inset, e.g., CharStyle, Custom inset or XML short element
 
 */
 class InsetFlex : public InsetCollapsable {
 public:
        ///
-       InsetFlex(BufferParams const &,TextClassPtr tc, 
-                       string const & layoutName);
+       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);
-       ///
-       virtual bool allowParagraphCustomization(idx_type) const { return false; }
-
-       ///
-       int plaintext(odocstream &, OutputParams const &) const;
-       ///
-       int docbook(odocstream &, OutputParams const &) const;
-       /// the string that is passed to the TOC
-       void textString(odocstream &) const;
-       ///
-       void validate(LaTeXFeatures &) const;
-
        /// should paragraph indendation be ommitted in any case?
        bool neverIndent() const { return true; }
+       ///
+       bool hasSettings() const { return false; }
 
 protected:
        InsetFlex(InsetFlex const &);
 
 private:
-       virtual Inset * clone() const;
-
+       Inset * clone() const { return new InsetFlex(*this); }
        ///
        std::string name_;
-       ///
-       std::set<std::string> packages_;
-       ///
-       std::string preamble_;
 };