]> git.lyx.org Git - lyx.git/blobdiff - src/Floating.h
Routines for calculating numerical labels for BibTeX citations.
[lyx.git] / src / Floating.h
index acb98f7e8a2c9dcb7ba007b191468288f1c780e9..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_;
        ///
@@ -72,11 +74,13 @@ private:
        ///
        std::string listName_;
        /// 
-       mutable std::string htmlTag_;
+       mutable std::string html_tag_;
        /// 
-       mutable std::string htmlClass_;
+       mutable std::string html_attrib_;
+       ///
+       mutable std::string defaultcssclass_;
        /// 
-       std::string htmlStyle_;
+       std::string html_style_;
        ///
        bool builtin_;
 };