]> git.lyx.org Git - lyx.git/blob - src/Floating.cpp
Translations for listings insets
[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 & refPrefix,
35                    string const & htmlTag, string const & htmlAttrib, 
36                    string const & htmlStyle, bool usesfloat, bool ispredefined)
37         : floattype_(type), placement_(placement), ext_(ext), within_(within),
38           style_(style), name_(name), listname_(listName), listcommand_(listCmd),
39           refprefix_(refPrefix), usesfloatpkg_(usesfloat),
40           ispredefined_(ispredefined), html_tag_(htmlTag),
41           html_attrib_(htmlAttrib), html_style_(htmlStyle)
42 {}
43
44
45 string const & Floating::htmlAttrib() const
46 {
47         if (html_attrib_.empty())
48                 html_attrib_ = "class='float " + defaultCSSClass() + "'";
49         return html_attrib_;
50 }
51
52
53 string const & Floating::htmlTag() const
54 {
55         if (html_tag_.empty())
56                 html_tag_ = "div";
57         return html_tag_;
58 }
59
60
61 string Floating::defaultCSSClass() const
62
63         if (!defaultcssclass_.empty())
64                 return defaultcssclass_;
65         string d;
66         string n = floattype_;
67         string::const_iterator it = n.begin();
68         string::const_iterator en = n.end();
69         for (; it != en; ++it) {
70                 if (!isalpha(*it))
71                         d += "_";
72                 else if (islower(*it))
73                         d += *it;
74                 else
75                         d += support::lowercase(*it);
76         }
77         // are there other characters we need to remove?
78         defaultcssclass_ = "float-" + d;
79         return defaultcssclass_;
80 }
81
82
83 } // namespace lyx