]> git.lyx.org Git - lyx.git/blobdiff - src/Floating.h
Routines for calculating numerical labels for BibTeX citations.
[lyx.git] / src / Floating.h
index 50c94af53ad684763db02a400d2a36e9bea61f27..096379a03388589e5e52db4ff5c35f67bf4dcb3e 100644 (file)
@@ -51,12 +51,14 @@ public:
        /// style information, for preamble
        std::string const & htmlStyle() const;
        /// class, for css, defaults to "float-" + type()
-       std::string const & htmlClass() const;
+       std::string const & htmlAttrib() const;
        /// tag type, defaults to "div"
        std::string const & htmlTag() const;
        ///
        bool builtin() const;
 private:
+       ///
+       std::string defaultCSSClass() const;
        ///
        std::string type_;
        ///
@@ -74,7 +76,9 @@ private:
        /// 
        mutable std::string html_tag_;
        /// 
-       mutable std::string html_class_;
+       mutable std::string html_attrib_;
+       ///
+       mutable std::string defaultcssclass_;
        /// 
        std::string html_style_;
        ///