]> git.lyx.org Git - lyx.git/blobdiff - src/Floating.h
Add a fixme, in effect, about dots.
[lyx.git] / src / Floating.h
index ae1a95f87be0a7e91dc05d2b9d2715eb0d8f4d3b..50c94af53ad684763db02a400d2a36e9bea61f27 100644 (file)
@@ -50,10 +50,10 @@ public:
        std::string const & listName() const;
        /// style information, for preamble
        std::string const & htmlStyle() const;
-       /// class, for css
+       /// class, for css, defaults to "float-" + type()
        std::string const & htmlClass() const;
-       /// tag type
-       std::string const & htmlType() const;
+       /// tag type, defaults to "div"
+       std::string const & htmlTag() const;
        ///
        bool builtin() const;
 private:
@@ -71,12 +71,12 @@ private:
        std::string name_;
        ///
        std::string listName_;
-       /// HTML Element type, usually div
-       std::string htmlType_;
-       /// class attribute, e.g., float-table, for CSS
-       std::string htmlClass_;
-       /// CSS information for this element
-       std::string htmlStyle_;
+       /// 
+       mutable std::string html_tag_;
+       /// 
+       mutable std::string html_class_;
+       /// 
+       std::string html_style_;
        ///
        bool builtin_;
 };