]> git.lyx.org Git - lyx.git/blobdiff - src/Floating.h
Routines for calculating numerical labels for BibTeX citations.
[lyx.git] / src / Floating.h
index e050195c7d50efdccbfd6e7311507bb5050c235f..096379a03388589e5e52db4ff5c35f67bf4dcb3e 100644 (file)
@@ -31,7 +31,9 @@ public:
        Floating(std::string const & type, std::string const & placement,
                 std::string const & ext, std::string const & within,
                 std::string const & style, std::string const & name,
-                std::string const & listName, bool builtin = false);
+                std::string const & listName, std::string const & htmlType,
+                std::string const & htmlClass, std::string const & htmlStyle,
+                bool builtin = false);
        ///
        std::string const & type() const;
        ///
@@ -46,9 +48,17 @@ public:
        std::string const & name() const;
        ///
        std::string const & listName() const;
+       /// style information, for preamble
+       std::string const & htmlStyle() const;
+       /// class, for css, defaults to "float-" + type()
+       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_;
        ///
@@ -63,6 +73,14 @@ private:
        std::string name_;
        ///
        std::string listName_;
+       /// 
+       mutable std::string html_tag_;
+       /// 
+       mutable std::string html_attrib_;
+       ///
+       mutable std::string defaultcssclass_;
+       /// 
+       std::string html_style_;
        ///
        bool builtin_;
 };