X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FFloating.h;h=096379a03388589e5e52db4ff5c35f67bf4dcb3e;hb=2098f1d8c20d51e63e670bcdc9da8996068975bf;hp=51c3dfb170cb00e504ca7faf4092c10e19ded38d;hpb=44cd0fc9a1687cc63911c7f98d978594458e7813;p=lyx.git diff --git a/src/Floating.h b/src/Floating.h index 51c3dfb170..096379a033 100644 --- a/src/Floating.h +++ b/src/Floating.h @@ -4,7 +4,7 @@ * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * - * \author Lars Gullik Bjønnes + * \author Lars Gullik Bjønnes * * Full author contact details are available in file CREDITS. */ @@ -14,12 +14,15 @@ #include + +namespace lyx { + /** This is a "float layout" object. It contains the parameters for how to - handle the different kinds of floats, default ones and user created ones. - Objects of this class is stored in a container in FloatList. The different - InsetFloat(s) have a pointer/reference through the name of the Floating - so that it knows how the different floats should be handled. -*/ + * handle the different kinds of floats, default ones and user created ones. + * Objects of this class is stored in a container in FloatList. The different + * InsetFloat(s) have a pointer/reference through the name of the Floating + * so that it knows how the different floats should be handled. + */ class Floating { public: /// @@ -28,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; /// @@ -43,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_; /// @@ -60,8 +73,19 @@ 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_; }; + +} // namespace lyx + #endif