]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetfloat.h
fix compilation pb ; update eu.po
[lyx.git] / src / insets / insetfloat.h
index 821fd7409fd2eb96b29c26ae8c3a6768ff9cfee2..63fcf57dd84eceeaa44a03c24e2d083719d65b6c 100644 (file)
@@ -34,12 +34,14 @@ public:
        ///
        void Validate(LaTeXFeatures & features) const;
        ///
-       Inset * Clone() const;
+       Inset * Clone(Buffer const &) const;
        ///
        Inset::Code LyxCode() const { return Inset::FLOAT_CODE; }
        ///
        int Latex(Buffer const *, std::ostream &, bool fragile, bool fp) const;
        ///
+       int DocBook(Buffer const *, std::ostream &) const;
+       ///
        string const EditMessage() const;
        ///
        bool InsertInsetAllowed(Inset * inset) const;
@@ -48,14 +50,18 @@ public:
        ///
        string const & type() const;
        ///
+       void placement(string const & p);
+       ///
+       string const & placement() const;
+       ///
        void wide(bool w);
        ///
        bool wide() const;
 private:
        ///
-       string floatType;
+       string floatType_;
        ///
-       string floatPlacement;
+       string floatPlacement_;
        ///
        bool wide_;
 };