]> git.lyx.org Git - lyx.git/blob - src/insets/InsetNomencl.cpp
Fix bug #6315: counters in insets that don't produce output have ghost values.
[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                 setParams(p);
179                 break;
180         }
181
182         default:
183                 InsetCommand::doDispatch(cur, cmd);
184                 break;
185         }
186 }
187
188
189 bool InsetPrintNomencl::getStatus(Cursor & cur, FuncRequest const & cmd,
190         FuncStatus & status) const
191 {
192         switch (cmd.action()) {
193
194         case LFUN_INSET_DIALOG_UPDATE:
195         case LFUN_INSET_MODIFY:
196                 status.setEnabled(true);
197                 return true;
198
199         default:
200                 return InsetCommand::getStatus(cur, cmd, status);
201         }
202 }
203
204
205 docstring InsetPrintNomencl::xhtml(XHTMLStream &, OutputParams const &) const
206 {
207         return docstring();
208 }
209
210
211 int InsetPrintNomencl::docbook(odocstream & os, OutputParams const &) const
212 {
213         os << "<glossary>\n";
214         int newlines = 2;
215         InsetIterator it = inset_iterator_begin(buffer().inset());
216         while (it) {
217                 if (it->lyxCode() == NOMENCL_CODE) {
218                         newlines += static_cast<InsetNomencl const &>(*it).docbookGlossary(os);
219                         ++it;
220                 } else if (!it->producesOutput()) {
221                         // Ignore contents of insets that are not in output
222                         size_t const depth = it.depth();
223                         ++it;
224                         while (it.depth() > depth)
225                                 ++it;
226                 } else {
227                         ++it;
228                 }
229         }
230         os << "</glossary>\n";
231         return newlines;
232 }
233
234
235 namespace {
236 docstring nomenclWidest(Buffer const & buffer, OutputParams const & runparams)
237 {
238         // nomenclWidest() determines and returns the widest used
239         // nomenclature symbol in the document
240
241         int w = 0;
242         docstring symb;
243         InsetNomencl const * nomencl = 0;
244         ParagraphList::const_iterator it = buffer.paragraphs().begin();
245         ParagraphList::const_iterator end = buffer.paragraphs().end();
246
247         for (; it != end; ++it) {
248                 if (it->insetList().empty())
249                         continue;
250                 InsetList::const_iterator iit = it->insetList().begin();
251                 InsetList::const_iterator eend = it->insetList().end();
252                 for (; iit != eend; ++iit) {
253                         Inset * inset = iit->inset;
254                         if (inset->lyxCode() != NOMENCL_CODE)
255                                 continue;
256                         nomencl = static_cast<InsetNomencl const *>(inset);
257                         docstring const symbol =
258                                 nomencl->getParam("symbol");
259                         // This is only an approximation,
260                         // but the best we can get.
261                         int const wx = use_gui ?
262                                 theFontMetrics(Font()).width(symbol) :
263                                 symbol.size();
264                         if (wx > w) {
265                                 w = wx;
266                                 symb = symbol;
267                         }
268                 }
269         }
270         // return the widest (or an empty) string
271         if (symb.empty())
272                 return symb;
273
274         // we have to encode the string properly
275         docstring latex_symb;
276         for (size_t n = 0; n < symb.size(); ++n) {
277                 try {
278                         latex_symb += runparams.encoding->latexChar(symb[n]);
279                 } catch (EncodingException & /* e */) {
280                         if (runparams.dryrun) {
281                                 latex_symb += "<" + _("LyX Warning: ")
282                                            + _("uncodable character") + " '";
283                                 latex_symb += docstring(1, symb[n]);
284                                 latex_symb += "'>";
285                         }
286                 }
287         }
288         return latex_symb;
289 }
290 } // namespace anon
291
292
293 int InsetPrintNomencl::latex(odocstream & os, OutputParams const & runparams_in) const
294 {
295         OutputParams runparams = runparams_in;
296         int lines = 0;
297         if (getParam("set_width") == "auto") {
298                 docstring widest = nomenclWidest(buffer(), runparams);
299                 // Set the label width via nomencl's command \nomlabelwidth.
300                 // This must be output before the command \printnomenclature
301                 if (!widest.empty()) {
302                         os << "\\settowidth{\\nomlabelwidth}{"
303                            << widest
304                            << "}\n";
305                         ++lines;
306                 }
307         } else if (getParam("set_width") == "custom") {
308                 // custom length as optional arg of \printnomenclature
309                 string const width =
310                         Length(to_ascii(getParam("width"))).asLatexString();
311                 os << '\\'
312                    << from_ascii(getCmdName())
313                    << '['
314                    << from_ascii(width)
315                    << "]{}";
316                 return lines;
317         }
318         // output the command \printnomenclature
319         os << getCommand(runparams);
320         return lines;
321 }
322
323
324 void InsetPrintNomencl::validate(LaTeXFeatures & features) const
325 {
326         features.require("nomencl");
327 }
328
329
330 InsetCode InsetPrintNomencl::lyxCode() const
331 {
332         return NOMENCL_PRINT_CODE;
333 }
334
335
336 docstring InsetPrintNomencl::contextMenu(BufferView const &, int, int) const
337 {
338         return from_ascii("context-nomenclprint");
339 }
340
341
342 } // namespace lyx