X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FFloating.h;h=096379a03388589e5e52db4ff5c35f67bf4dcb3e;hb=2098f1d8c20d51e63e670bcdc9da8996068975bf;hp=acb98f7e8a2c9dcb7ba007b191468288f1c780e9;hpb=d88e9655be4a8b390ed0b4b90bd22c77ae1755d3;p=lyx.git diff --git a/src/Floating.h b/src/Floating.h index acb98f7e8a..096379a033 100644 --- a/src/Floating.h +++ b/src/Floating.h @@ -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_; };