]> git.lyx.org Git - lyx.git/blob - src/Floating.cpp
Micro-optimization.
[lyx.git] / src / Floating.cpp
1 /**
2  * \file Floating.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Lars Gullik Bjønnes
7  * \author Jean-Marc Lasgouttes
8  * \author Angus Leeming
9  *
10  * Full author contact details are available in file CREDITS.
11  */
12
13 #include <config.h>
14
15 #include "Floating.h"
16
17 #include "support/debug.h"
18 #include "support/lstrings.h"
19
20 using namespace std;
21
22
23 namespace lyx {
24
25
26 Floating::Floating()
27 {}
28
29
30 Floating::Floating(string const & type, string const & placement,
31                    string const & ext, string const & within,
32                    string const & style, string const & name,
33                    string const & listName, std::string const & listCmd, 
34                          string const & htmlTag, string const & htmlAttrib, 
35                          string const & htmlStyle, bool needsfloat)
36         : floattype_(type), placement_(placement), ext_(ext), within_(within),
37           style_(style), name_(name), listname_(listName), listcommand_(listCmd),
38           needsfloatpkg_(needsfloat), html_tag_(htmlTag), html_attrib_(htmlAttrib), 
39           html_style_(htmlStyle)
40 {}
41
42
43 string const & Floating::htmlAttrib() const
44 {
45         if (html_attrib_.empty())
46                 html_attrib_ = "class='float " + defaultCSSClass() + "'";
47         return html_attrib_;
48 }
49
50
51 string const & Floating::htmlTag() const
52 {
53         if (html_tag_.empty())
54                 html_tag_ = "div";
55         return html_tag_;
56 }
57
58
59 string Floating::defaultCSSClass() const
60
61         if (!defaultcssclass_.empty())
62                 return defaultcssclass_;
63         string d;
64         string n = floattype_;
65         string::const_iterator it = n.begin();
66         string::const_iterator en = n.end();
67         for (; it != en; ++it) {
68                 if (!isalpha(*it))
69                         d += "_";
70                 else if (islower(*it))
71                         d += *it;
72                 else
73                         d += support::lowercase(*it);
74         }
75         // are there other characters we need to remove?
76         defaultcssclass_ = "float-" + d;
77         return defaultcssclass_;
78 }
79
80
81 } // namespace lyx