]> git.lyx.org Git - lyx.git/blobdiff - src/Floating.h
Routines for calculating numerical labels for BibTeX citations.
[lyx.git] / src / Floating.h
index 51c3dfb170cb00e504ca7faf4092c10e19ded38d..096379a03388589e5e52db4ff5c35f67bf4dcb3e 100644 (file)
@@ -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.
  */
 
 #include <string>
 
+
+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