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