]> git.lyx.org Git - lyx.git/blobdiff - src/Floating.h
cleanup error messages
[lyx.git] / src / Floating.h
index e050195c7d50efdccbfd6e7311507bb5050c235f..50c94af53ad684763db02a400d2a36e9bea61f27 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,6 +48,12 @@ 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 & htmlClass() const;
+       /// tag type, defaults to "div"
+       std::string const & htmlTag() const;
        ///
        bool builtin() const;
 private:
@@ -63,6 +71,12 @@ private:
        std::string name_;
        ///
        std::string listName_;
+       /// 
+       mutable std::string html_tag_;
+       /// 
+       mutable std::string html_class_;
+       /// 
+       std::string html_style_;
        ///
        bool builtin_;
 };