]> git.lyx.org Git - lyx.git/blob - src/Floating.cpp
DocBook: implement achemso.
[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 #include <set>
15
16 #include "Floating.h"
17
18 #include "support/debug.h"
19 #include "support/lstrings.h"
20 #include "support/textutils.h"
21
22 using namespace std;
23
24
25 namespace lyx {
26
27
28 Floating::Floating(string const & type, string const & placement,
29                    string const & ext, string const & within,
30                    string const & style, string const & name,
31                    string const & listName, std::string const & listCmd,
32                    string const & refPrefix, std::string const & allowedplacement,
33                    string const & htmlTag, string const & htmlAttrib,
34                    docstring const & htmlStyle,
35                    string const & docbookAttr, string const & docbookTagType,
36            string const & required, bool usesfloat, bool ispredefined,
37                    bool allowswide, bool allowssideways)
38         : floattype_(type), placement_(placement), ext_(ext), within_(within),
39           style_(style), name_(name), listname_(listName), listcommand_(listCmd),
40           refprefix_(refPrefix), allowedplacement_(allowedplacement), required_(required),
41           usesfloatpkg_(usesfloat), ispredefined_(ispredefined),
42           allowswide_(allowswide), allowssideways_(allowssideways),
43           html_tag_(htmlTag), html_attrib_(htmlAttrib), html_style_(htmlStyle),
44           docbook_attr_(docbookAttr), docbook_tag_type_(docbookTagType)
45 {}
46
47
48 std::string Floating::docbookFloatType() const
49 {
50         // TODO: configure this in the layouts?
51         if (floattype_ == "figure" || floattype_ == "graph" ||
52                         floattype_ == "chart" || floattype_ == "scheme")  {
53                 return "figure";
54         } else if (floattype_ == "table" || floattype_ == "tableau") {
55                 return "table";
56         } else if (floattype_ == "algorithm") {
57                 return "algorithm";
58         } else {
59                 // If nothing matches, return something that will not be valid.
60                 LYXERR0("Unrecognised float type: " + floattype_);
61                 return "unknown";
62         }
63 }
64
65
66 string const & Floating::htmlAttrib() const
67 {
68         if (html_attrib_.empty())
69                 html_attrib_ = "class='" + defaultCSSClass() + "'";
70         return html_attrib_;
71 }
72
73
74 string const & Floating::htmlTag() const
75 {
76         if (html_tag_.empty())
77                 html_tag_ = "div";
78         return html_tag_;
79 }
80
81
82 string Floating::defaultCSSClass() const
83 {
84         if (!defaultcssclass_.empty())
85                 return defaultcssclass_;
86         string d;
87         string n = floattype_;
88         string::const_iterator it = n.begin();
89         string::const_iterator en = n.end();
90         for (; it != en; ++it) {
91                 if (!isAlphaASCII(*it))
92                         d += "_";
93                 else if (isLower(*it))
94                         d += *it;
95                 else
96                         d += support::lowercase(*it);
97         }
98         // are there other characters we need to remove?
99         defaultcssclass_ = "float-" + d;
100         return defaultcssclass_;
101 }
102
103
104 string Floating::docbookAttr() const
105 {
106         std::set<std::string> achemso = { "chart", "graph", "scheme" };
107         // For algorithms, a type attribute must be mentioned, if not already present in docbook_attr_.
108         if (docbookFloatType() == "algorithm" && docbook_attr_.find("type=") != std::string::npos)
109                 return docbook_attr_ + " type='algorithm'";
110         // Specific floats for achemso.
111         else if (docbookFloatType() == "figure" && achemso.find(floattype_) != achemso.end())
112                 return docbook_attr_ + " type='" + floattype_ + "'";
113         else
114                 return docbook_attr_;
115 }
116
117
118 string Floating::docbookTag(bool hasTitle) const
119 {
120         // TODO: configure this in the layouts?
121         if (docbookFloatType() == "figure" || docbookFloatType() == "algorithm") {
122                 return hasTitle ? "figure" : "informalfigure";
123         } else if (docbookFloatType() == "table") {
124                 return hasTitle ? "table" : "informaltable";
125         } else {
126                 // If nothing matches, return something that will not be valid.
127                 LYXERR0("Unrecognised float type: " + floattype());
128                 return "float";
129         }
130 }
131
132
133 string const & Floating::docbookTagType() const
134 {
135         if (docbook_tag_type_ != "block" && docbook_tag_type_ != "paragraph" && docbook_tag_type_ != "inline")
136                 docbook_tag_type_ = "block";
137         return docbook_tag_type_;
138 }
139
140
141 string const & Floating::docbookCaption() const
142 {
143         docbook_caption_ = "";
144         if (floattype_ == "figure" || floattype_ == "algorithm")
145                 docbook_caption_ = "title";
146         else if (floattype_ == "table" || floattype_ == "tableau")
147                 docbook_caption_ = "caption";
148         return docbook_caption_;
149 }
150
151
152 } // namespace lyx