]> git.lyx.org Git - lyx.git/blob - src/insets/InsetNomencl.cpp
fix compiler warnings in pedantic mode: remove trailing comma after last enum member
[lyx.git] / src / insets / InsetNomencl.cpp
1 /**
2  * \file InsetNomencl.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 O. U. Baran
8  * \author Uwe Stöhr
9  * \author Jürgen Spitzmüller
10  *
11  * Full author contact details are available in file CREDITS.
12  */
13 #include <config.h>
14
15 #include "InsetNomencl.h"
16 #include "InsetNote.h"
17
18 #include "Buffer.h"
19 #include "Cursor.h"
20 #include "DispatchResult.h"
21 #include "Font.h"
22 #include "Encoding.h"
23 #include "FuncRequest.h"
24 #include "FuncStatus.h"
25 #include "InsetIterator.h"
26 #include "InsetList.h"
27 #include "LaTeXFeatures.h"
28 #include "Length.h"
29 #include "LyX.h"
30 #include "OutputParams.h"
31 #include "output_xhtml.h"
32 #include "sgml.h"
33
34 #include "frontends/FontMetrics.h"
35
36 #include "support/docstream.h"
37 #include "support/gettext.h"
38 #include "support/lstrings.h"
39
40 using namespace std;
41 using namespace lyx::support;
42
43 namespace lyx {
44
45
46 /////////////////////////////////////////////////////////////////////
47 //
48 // InsetNomencl
49 //
50 /////////////////////////////////////////////////////////////////////
51
52 InsetNomencl::InsetNomencl(Buffer * buf, InsetCommandParams const & p)
53         : InsetCommand(buf, p),
54           nomenclature_entry_id(sgml::uniqueID(from_ascii("nomen")))
55 {}
56
57
58 ParamInfo const & InsetNomencl::findInfo(string const & /* cmdName */)
59 {
60         static ParamInfo param_info_;
61         if (param_info_.empty()) {
62                 param_info_.add("prefix", ParamInfo::LATEX_OPTIONAL);
63                 param_info_.add("symbol", ParamInfo::LATEX_REQUIRED,
64                                 ParamInfo::HANDLING_LATEXIFY);
65                 param_info_.add("description", ParamInfo::LATEX_REQUIRED,
66                                 ParamInfo::HANDLING_LATEXIFY);
67         }
68         return param_info_;
69 }
70
71
72 docstring InsetNomencl::screenLabel() const
73 {
74         size_t const maxLabelChars = 25;
75
76         docstring label = _("Nom: ") + getParam("symbol");
77         if (label.size() > maxLabelChars) {
78                 label.erase(maxLabelChars - 3);
79                 label += "...";
80         }
81         return label;
82 }
83
84
85 docstring InsetNomencl::toolTip(BufferView const & /*bv*/, int /*x*/, int /*y*/) const
86 {
87         docstring tip = _("Nomenclature Symbol: ") + getParam("symbol") + "\n";
88         tip += _("Description: ") + "\t"
89                 + subst(getParam("description"), from_ascii("\\\\"), from_ascii("\n\t"));
90         if (!getParam("prefix").empty())
91                 tip += "\n" + _("Sorting: ") + getParam("prefix");
92         return tip;
93 }
94
95
96
97 int InsetNomencl::docbook(odocstream & os, OutputParams const &) const
98 {
99         os << "<glossterm linkend=\"" << nomenclature_entry_id << "\">"
100            << sgml::escapeString(getParam("symbol"))
101            << "</glossterm>";
102         return 0;
103 }
104
105
106 docstring InsetNomencl::xhtml(XHTMLStream &, OutputParams const &) const
107 {
108         return docstring();
109 }
110
111
112 int InsetNomencl::docbookGlossary(odocstream & os) const
113 {
114         os << "<glossentry id=\"" << nomenclature_entry_id << "\">\n"
115            << "<glossterm>"
116            << sgml::escapeString(getParam("symbol"))
117            << "</glossterm>\n"
118            << "<glossdef><para>"
119            << sgml::escapeString(getParam("description"))
120            << "</para></glossdef>\n"
121            <<"</glossentry>\n";
122         return 4;
123 }
124
125
126 void InsetNomencl::validate(LaTeXFeatures & features) const
127 {
128         features.require("nomencl");
129 }
130
131
132 /////////////////////////////////////////////////////////////////////
133 //
134 // InsetPrintNomencl
135 //
136 /////////////////////////////////////////////////////////////////////
137
138 InsetPrintNomencl::InsetPrintNomencl(Buffer * buf, InsetCommandParams const & p)
139         : InsetCommand(buf, p)
140 {}
141
142
143 ParamInfo const & InsetPrintNomencl::findInfo(string const & /* cmdName */)
144 {
145         // The symbol width is set via nomencl's \nomlabelwidth in 
146         // InsetPrintNomencl::latex and not as optional parameter of
147         // \printnomenclature
148         static ParamInfo param_info_;
149         if (param_info_.empty()) {
150                 // how is the width set?
151                 // values: none|auto|custom
152                 param_info_.add("set_width", ParamInfo::LYX_INTERNAL);
153                 // custom width
154                 param_info_.add("width", ParamInfo::LYX_INTERNAL);
155         }
156         return param_info_;
157 }
158
159
160 docstring InsetPrintNomencl::screenLabel() const
161 {
162         return _("Nomenclature");
163 }
164
165
166 void InsetPrintNomencl::doDispatch(Cursor & cur, FuncRequest & cmd)
167 {
168         switch (cmd.action()) {
169
170         case LFUN_INSET_MODIFY: {
171                 InsetCommandParams p(NOMENCL_PRINT_CODE);
172                 // FIXME UNICODE
173                 InsetCommand::string2params(to_utf8(cmd.argument()), p);
174                 if (p.getCmdName().empty()) {
175                         cur.noScreenUpdate();
176                         break;
177                 }
178
179                 cur.recordUndo();
180                 setParams(p);
181                 break;
182         }
183
184         default:
185                 InsetCommand::doDispatch(cur, cmd);
186                 break;
187         }
188 }
189
190
191 bool InsetPrintNomencl::getStatus(Cursor & cur, FuncRequest const & cmd,
192         FuncStatus & status) const
193 {
194         switch (cmd.action()) {
195
196         case LFUN_INSET_DIALOG_UPDATE:
197         case LFUN_INSET_MODIFY:
198                 status.setEnabled(true);
199                 return true;
200
201         default:
202                 return InsetCommand::getStatus(cur, cmd, status);
203         }
204 }
205
206
207 docstring InsetPrintNomencl::xhtml(XHTMLStream &, OutputParams const &) const
208 {
209         return docstring();
210 }
211
212
213 int InsetPrintNomencl::docbook(odocstream & os, OutputParams const &) const
214 {
215         os << "<glossary>\n";
216         int newlines = 2;
217         InsetIterator it = inset_iterator_begin(buffer().inset());
218         while (it) {
219                 if (it->lyxCode() == NOMENCL_CODE) {
220                         newlines += static_cast<InsetNomencl const &>(*it).docbookGlossary(os);
221                         ++it;
222                 } else if (!it->producesOutput()) {
223                         // Ignore contents of insets that are not in output
224                         size_t const depth = it.depth();
225                         ++it;
226                         while (it.depth() > depth)
227                                 ++it;
228                 } else {
229                         ++it;
230                 }
231         }
232         os << "</glossary>\n";
233         return newlines;
234 }
235
236
237 namespace {
238 docstring nomenclWidest(Buffer const & buffer, OutputParams const & runparams)
239 {
240         // nomenclWidest() determines and returns the widest used
241         // nomenclature symbol in the document
242
243         int w = 0;
244         docstring symb;
245         InsetNomencl const * nomencl = 0;
246         ParagraphList::const_iterator it = buffer.paragraphs().begin();
247         ParagraphList::const_iterator end = buffer.paragraphs().end();
248
249         for (; it != end; ++it) {
250                 if (it->insetList().empty())
251                         continue;
252                 InsetList::const_iterator iit = it->insetList().begin();
253                 InsetList::const_iterator eend = it->insetList().end();
254                 for (; iit != eend; ++iit) {
255                         Inset * inset = iit->inset;
256                         if (inset->lyxCode() != NOMENCL_CODE)
257                                 continue;
258                         nomencl = static_cast<InsetNomencl const *>(inset);
259                         docstring const symbol =
260                                 nomencl->getParam("symbol");
261                         // This is only an approximation,
262                         // but the best we can get.
263                         int const wx = use_gui ?
264                                 theFontMetrics(Font()).width(symbol) :
265                                 symbol.size();
266                         if (wx > w) {
267                                 w = wx;
268                                 symb = symbol;
269                         }
270                 }
271         }
272         // return the widest (or an empty) string
273         if (symb.empty())
274                 return symb;
275
276         // we have to encode the string properly
277         docstring latex_symb;
278         for (size_t n = 0; n < symb.size(); ++n) {
279                 try {
280                         latex_symb += runparams.encoding->latexChar(symb[n]);
281                 } catch (EncodingException & /* e */) {
282                         if (runparams.dryrun) {
283                                 latex_symb += "<" + _("LyX Warning: ")
284                                            + _("uncodable character") + " '";
285                                 latex_symb += docstring(1, symb[n]);
286                                 latex_symb += "'>";
287                         }
288                 }
289         }
290         return latex_symb;
291 }
292 } // namespace anon
293
294
295 int InsetPrintNomencl::latex(odocstream & os, OutputParams const & runparams_in) const
296 {
297         OutputParams runparams = runparams_in;
298         int lines = 0;
299         if (getParam("set_width") == "auto") {
300                 docstring widest = nomenclWidest(buffer(), runparams);
301                 // Set the label width via nomencl's command \nomlabelwidth.
302                 // This must be output before the command \printnomenclature
303                 if (!widest.empty()) {
304                         os << "\\settowidth{\\nomlabelwidth}{"
305                            << widest
306                            << "}\n";
307                         ++lines;
308                 }
309         } else if (getParam("set_width") == "custom") {
310                 // custom length as optional arg of \printnomenclature
311                 string const width =
312                         Length(to_ascii(getParam("width"))).asLatexString();
313                 os << '\\'
314                    << from_ascii(getCmdName())
315                    << '['
316                    << from_ascii(width)
317                    << "]{}";
318                 return lines;
319         }
320         // output the command \printnomenclature
321         os << getCommand(runparams);
322         return lines;
323 }
324
325
326 void InsetPrintNomencl::validate(LaTeXFeatures & features) const
327 {
328         features.require("nomencl");
329 }
330
331
332 InsetCode InsetPrintNomencl::lyxCode() const
333 {
334         return NOMENCL_PRINT_CODE;
335 }
336
337
338 docstring InsetPrintNomencl::contextMenuName() const
339 {
340         return from_ascii("context-nomenclprint");
341 }
342
343
344 } // namespace lyx