]> git.lyx.org Git - lyx.git/blob - src/insets/InsetRef.cpp
Rename XHTMLStream to XMLStream, move it to another file, and prepare for DocBook...
[lyx.git] / src / insets / InsetRef.cpp
1 /**
2  * \file InsetRef.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author José Matos
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10 #include <config.h>
11
12 #include "InsetRef.h"
13
14 #include "Buffer.h"
15 #include "BufferParams.h"
16 #include "Cursor.h"
17 #include "DispatchResult.h"
18 #include "FuncStatus.h"
19 #include "InsetLabel.h"
20 #include "Language.h"
21 #include "LaTeXFeatures.h"
22 #include "LyX.h"
23 #include "OutputParams.h"
24 #include "output_xhtml.h"
25 #include "Paragraph.h"
26 #include "ParIterator.h"
27 #include "xml.h"
28 #include "texstream.h"
29 #include "TocBackend.h"
30
31 #include "support/debug.h"
32 #include "support/docstream.h"
33 #include "support/gettext.h"
34 #include "support/lstrings.h"
35 #include "support/textutils.h"
36
37 using namespace lyx::support;
38 using namespace std;
39
40 namespace lyx {
41
42
43 InsetRef::InsetRef(Buffer * buf, InsetCommandParams const & p)
44         : InsetCommand(buf, p), broken_(false), active_(true)
45 {}
46
47
48 InsetRef::InsetRef(InsetRef const & ir)
49         : InsetCommand(ir), broken_(false), active_(true)
50 {}
51
52
53 bool InsetRef::isCompatibleCommand(string const & s) {
54         //FIXME This is likely not the best way to handle this.
55         //But this stuff is hardcoded elsewhere already.
56         return s == "ref"
57                 || s == "pageref"
58                 || s == "vref"
59                 || s == "vpageref"
60                 || s == "formatted"
61                 || s == "prettyref" // for InsetMathRef FIXME
62                 || s == "eqref"
63                 || s == "nameref"
64                 || s == "labelonly";
65 }
66
67
68 ParamInfo const & InsetRef::findInfo(string const & /* cmdName */)
69 {
70         static ParamInfo param_info_;
71         if (param_info_.empty()) {
72                 param_info_.add("name", ParamInfo::LATEX_OPTIONAL);
73                 param_info_.add("reference", ParamInfo::LATEX_REQUIRED,
74                                 ParamInfo::HANDLING_ESCAPE);
75                 param_info_.add("plural", ParamInfo::LYX_INTERNAL);
76                 param_info_.add("caps", ParamInfo::LYX_INTERNAL);
77                 param_info_.add("noprefix", ParamInfo::LYX_INTERNAL);
78         }
79         return param_info_;
80 }
81
82
83 docstring InsetRef::layoutName() const
84 {
85         return from_ascii("Ref");
86 }
87
88
89 void InsetRef::changeTarget(docstring const & new_label)
90 {
91         // With change tracking, we insert a new ref
92         // and delete the old one
93         if (buffer().masterParams().track_changes) {
94                 InsetCommandParams icp(REF_CODE, "ref");
95                 icp["reference"] = new_label;
96                 string const data = InsetCommand::params2string(icp);
97                 lyx::dispatch(FuncRequest(LFUN_INSET_INSERT, data));
98                 lyx::dispatch(FuncRequest(LFUN_CHAR_DELETE_FORWARD));
99         } else
100                 setParam("reference", new_label);
101 }
102
103
104
105 void InsetRef::doDispatch(Cursor & cur, FuncRequest & cmd)
106 {
107         string const inset = cmd.getArg(0);
108         string const arg   = cmd.getArg(1);
109         string pstring;
110         if (cmd.action() == LFUN_INSET_MODIFY && inset == "ref") {
111                 if (arg == "toggle-plural")
112                         pstring = "plural";
113                 else if (arg == "toggle-caps")
114                         pstring = "caps";
115                 else if (arg == "toggle-noprefix")
116                         pstring = "noprefix";
117                 else if (arg == "changetarget") {
118                         string const oldtarget = cmd.getArg(2);
119                         string const newtarget = cmd.getArg(3);
120                         if (!oldtarget.empty() && !newtarget.empty()
121                             && getParam("reference") == from_utf8(oldtarget))
122                                 changeTarget(from_utf8(newtarget));
123                         cur.forceBufferUpdate();
124                         return;
125                 }
126         }
127         // otherwise not for us
128         if (pstring.empty())
129                 return InsetCommand::doDispatch(cur, cmd);
130
131         bool const isSet = (getParam(pstring) == "true");
132         setParam(pstring, from_ascii(isSet ? "false"  : "true"));
133 }
134
135
136 bool InsetRef::getStatus(Cursor & cur, FuncRequest const & cmd,
137         FuncStatus & status) const
138 {
139         if (cmd.action() != LFUN_INSET_MODIFY)
140                 return InsetCommand::getStatus(cur, cmd, status);
141         if (cmd.getArg(0) != "ref")
142                 return InsetCommand::getStatus(cur, cmd, status);
143
144         string const arg = cmd.getArg(1);
145         string pstring;
146         if (arg == "changetarget")
147                 return true;
148         if (arg == "toggle-plural")
149                 pstring = "plural";
150         else if (arg == "toggle-caps")
151                 pstring = "caps";
152         if (!pstring.empty()) {
153                 status.setEnabled(buffer().params().use_refstyle &&
154                         params().getCmdName() == "formatted");
155                 bool const isSet = (getParam(pstring) == "true");
156                 status.setOnOff(isSet);
157                 return true;
158         }
159         if (arg == "toggle-noprefix") {
160                 status.setEnabled(params().getCmdName() == "labelonly");
161                 bool const isSet = (getParam("noprefix") == "true");
162                 status.setOnOff(isSet);
163                 return true;
164         }
165         // otherwise not for us
166         return InsetCommand::getStatus(cur, cmd, status);
167 }
168
169
170 namespace {
171
172 void capitalize(docstring & s) {
173         char_type t = uppercase(s[0]);
174         s[0] = t;
175 }
176
177 } // namespace
178
179
180 // the ref argument is the label name we are referencing.
181 // we expect ref to be in the form: pfx:suffix.
182 //
183 // if it isn't, then we can't produce a formatted reference,
184 // so we return "\ref" and put ref into label.
185 //
186 // for refstyle, we return "\pfxcmd", and put suffix into
187 // label and pfx into prefix. this is because refstyle expects
188 // the command: \pfxcmd{suffix}.
189 //
190 // for prettyref, we return "\prettyref" and put ref into label
191 // and pfx into prefix. this is because prettyref uses the whole
192 // label, thus: \prettyref{pfx:suffix}.
193 //
194 docstring InsetRef::getFormattedCmd(docstring const & ref,
195         docstring & label, docstring & prefix, docstring const & caps) const
196 {
197         static docstring const defcmd = from_ascii("\\ref");
198         static docstring const prtcmd = from_ascii("\\prettyref");
199
200         label = split(ref, prefix, ':');
201
202         // we have to have xxx:xxxxx...
203         if (label.empty()) {
204                 LYXERR0("Label `" << ref << "' contains no `:' separator.");
205                 label = ref;
206                 prefix = from_ascii("");
207                 return defcmd;
208         }
209
210         if (prefix.empty()) {
211                 // we have ":xxxx"
212                 label = ref;
213                 return defcmd;
214         }
215
216         if (!buffer().params().use_refstyle) {
217                 // \prettyref uses the whole label
218                 label = ref;
219                 return prtcmd;
220         }
221
222         // make sure the prefix is legal for a latex command
223         int const len = prefix.size();
224         for (int i = 0; i < len; i++) {
225                 char_type const c = prefix[i];
226                 if (!isAlphaASCII(c)) {
227                         LYXERR0("Prefix `" << prefix << "' is invalid for LaTeX.");
228                         // restore the label
229                         label = ref;
230                         return defcmd;
231                 }
232         }
233         if (caps == "true") {
234                 capitalize(prefix);
235         }
236         return from_ascii("\\") + prefix + from_ascii("ref");
237 }
238
239
240 docstring InsetRef::getEscapedLabel(OutputParams const & rp) const
241 {
242         InsetCommandParams const & p = params();
243         ParamInfo const & pi = p.info();
244         ParamInfo::ParamData const & pd = pi["reference"];
245         return p.prepareCommand(rp, getParam("reference"), pd.handling());
246 }
247
248
249 void InsetRef::latex(otexstream & os, OutputParams const & rp) const
250 {
251         string const & cmd = getCmdName();
252         docstring const & data = getEscapedLabel(rp);
253
254         if (rp.inulemcmd > 0)
255                 os << "\\mbox{";
256
257         if (cmd == "eqref" && buffer().params().use_refstyle) {
258                 // we advertise this as printing "(n)", so we'll do that, at least
259                 // for refstyle, since refstlye's own \eqref prints, by default,
260                 // "equation n". if one wants \eqref, one can get it by using a
261                 // formatted label in this case.
262                 os << '(' << from_ascii("\\ref{") << data << from_ascii("})");
263         }
264         else if (cmd == "formatted") {
265                 docstring label;
266                 docstring prefix;
267                 docstring const fcmd =
268                         getFormattedCmd(data, label, prefix, getParam("caps"));
269                 os << fcmd;
270                 if (buffer().params().use_refstyle && getParam("plural") == "true")
271                     os << "[s]";
272                 os << '{' << label << '}';
273         }
274         else if (cmd == "labelonly") {
275                 docstring const & ref = getParam("reference");
276                 if (getParam("noprefix") != "true")
277                         os << ref;
278                 else {
279                         docstring prefix;
280                         docstring suffix = split(ref, prefix, ':');
281                         if (suffix.empty()) {
282                     LYXERR0("Label `" << ref << "' contains no `:' separator.");
283                                 os << ref;
284                         } else {
285                                 os << suffix;
286                         }
287                 }
288         }
289         else {
290                 // We don't want to output p_["name"], since that is only used
291                 // in docbook. So we construct new params, without it, and use that.
292                 InsetCommandParams p(REF_CODE, cmd);
293                 docstring const ref = getParam("reference");
294                 p["reference"] = ref;
295                 os << p.getCommand(rp);
296         }
297
298         if (rp.inulemcmd > 0)
299                 os << "}";
300 }
301
302
303 int InsetRef::plaintext(odocstringstream & os,
304         OutputParams const &, size_t) const
305 {
306         docstring const str = getParam("reference");
307         os << '[' << str << ']';
308         return 2 + str.size();
309 }
310
311
312 int InsetRef::docbook(odocstream & os, OutputParams const & runparams) const
313 {
314         docstring const & name = getParam("name");
315         if (name.empty()) {
316                 if (runparams.flavor == OutputParams::XML) {
317                         os << "<xref linkend=\""
318                            << xml::cleanID(getParam("reference"))
319                            << "\" />";
320                 } else {
321                         os << "<xref linkend=\""
322                            << xml::cleanID(getParam("reference"))
323                            << "\">";
324                 }
325         } else {
326                 os << "<link linkend=\""
327                    << xml::cleanID(getParam("reference"))
328                    << "\">"
329                    << getParam("name")
330                    << "</link>";
331         }
332
333         return 0;
334 }
335
336
337 docstring InsetRef::xhtml(XMLStream & xs, OutputParams const & op) const
338 {
339         docstring const & ref = getParam("reference");
340         InsetLabel const * il = buffer().insetLabel(ref, true);
341         string const & cmd = params().getCmdName();
342         docstring display_string;
343
344         if (il && !il->counterValue().empty()) {
345                 // Try to construct a label from the InsetLabel we reference.
346                 docstring const & value = il->counterValue();
347                 if (cmd == "ref")
348                         display_string = value;
349                 else if (cmd == "vref")
350                         // normally, would be "ref on page #", but we have no pages
351                         display_string = value;
352                 else if (cmd == "pageref" || cmd == "vpageref")
353                         // normally would be "on page #", but we have no pages.
354                         display_string = translateIfPossible(from_ascii("elsewhere"),
355                                 op.local_font->language()->lang());
356                 else if (cmd == "eqref")
357                         display_string = '(' + value + ')';
358                 else if (cmd == "formatted") {
359                         display_string = il->prettyCounter();
360                         if (buffer().params().use_refstyle && getParam("caps") == "true")
361                                 capitalize(display_string);
362                         // it is hard to see what to do about plurals...
363                 }
364                 else if (cmd == "nameref")
365                         // FIXME We don't really have the ability to handle these
366                         // properly in XHTML output yet (bug #8599).
367                         // It might not be that hard to do. We have the InsetLabel,
368                         // and we can presumably find its paragraph using the TOC.
369                         // But the label might be referencing a section, yet not be
370                         // in that section. So this is not trivial.
371                         display_string = il->prettyCounter();
372         } else
373                         display_string = ref;
374
375         // FIXME What we'd really like to do is to be able to output some
376         // appropriate sort of text here. But to do that, we need to associate
377         // some sort of counter with the label, and we don't have that yet.
378         docstring const attr = "href=\"#" + xml::cleanAttr(ref) + '"';
379         xs << xml::StartTag("a", to_utf8(attr));
380         xs << display_string;
381         xs << xml::EndTag("a");
382         return docstring();
383 }
384
385
386 void InsetRef::toString(odocstream & os) const
387 {
388         odocstringstream ods;
389         plaintext(ods, OutputParams(0));
390         os << ods.str();
391 }
392
393
394 void InsetRef::forOutliner(docstring & os, size_t const, bool const) const
395 {
396         // There's no need for details in the TOC, and a long label
397         // will just get in the way.
398         os += '#';
399 }
400
401
402 void InsetRef::updateBuffer(ParIterator const & it, UpdateType, bool const /*deleted*/)
403 {
404         docstring const & ref = getParam("reference");
405
406         // Check if this one is active (i.e., neither deleted with change-tracking
407         // nor in an inset that does not produce output, such as notes or inactive branches)
408         Paragraph const & para = it.paragraph();
409         active_ = !para.isDeleted(it.pos()) && para.inInset().producesOutput();
410         // If not, check whether we are in a deleted/non-outputting inset
411         if (active_) {
412                 for (size_type sl = 0 ; sl < it.depth() ; ++sl) {
413                         Paragraph const & outer_par = it[sl].paragraph();
414                         if (outer_par.isDeleted(it[sl].pos())
415                             || !outer_par.inInset().producesOutput()) {
416                                 active_ = false;
417                                 break;
418                         }
419                 }
420         }
421
422         // register this inset into the buffer reference cache.
423         buffer().addReference(ref, this, it);
424
425         docstring label;
426         string const & cmd = getCmdName();
427         for (int i = 0; !types[i].latex_name.empty(); ++i) {
428                 if (cmd == types[i].latex_name) {
429                         label = _(types[i].short_gui_name);
430                         break;
431                 }
432         }
433
434         if (cmd != "labelonly")
435                 label += ref;
436         else {
437                 if (getParam("noprefix") != "true")
438                         label += ref;
439                 else {
440                         docstring prefix;
441                         docstring suffix = split(ref, prefix, ':');
442                         if (suffix.empty()) {
443                                 label += ref;
444                         } else {
445                                 label += suffix;
446                         }
447                 }
448         }
449
450         if (!buffer().params().isLatex() && !getParam("name").empty()) {
451                 label += "||";
452                 label += getParam("name");
453         }
454
455         unsigned int const maxLabelChars = 24;
456         if (label.size() > maxLabelChars) {
457                 tooltip_ = label;
458                 support::truncateWithEllipsis(label, maxLabelChars);
459         } else
460                 tooltip_ = from_ascii("");
461
462         screen_label_ = label;
463         broken_ = false;
464         setBroken(broken_);
465 }
466
467
468 docstring InsetRef::screenLabel() const
469 {
470         return (broken_ ? _("BROKEN: ") : docstring()) + screen_label_;
471 }
472
473
474 void InsetRef::addToToc(DocIterator const & cpit, bool output_active,
475                         UpdateType, TocBackend & backend) const
476 {
477         active_ = output_active;
478         docstring const & label = getParam("reference");
479         if (buffer().insetLabel(label)) {
480                 broken_ = !buffer().activeLabel(label);
481                 setBroken(broken_);
482                 if (broken_ && output_active) {
483                         shared_ptr<Toc> toc2 = backend.toc("brokenrefs");
484                         toc2->push_back(TocItem(cpit, 0, screenLabel(), output_active));
485                 }
486                 // This InsetRef has already been taken care of in InsetLabel::addToToc().
487                 return;
488         }
489
490         // It seems that this reference does not point to any valid label.
491         broken_ = true;
492         setBroken(broken_);
493         shared_ptr<Toc> toc = backend.toc("label");
494         toc->push_back(TocItem(cpit, 0, screenLabel(), output_active));
495         shared_ptr<Toc> toc2 = backend.toc("brokenrefs");
496         toc2->push_back(TocItem(cpit, 0, screenLabel(), output_active));
497 }
498
499
500 void InsetRef::validate(LaTeXFeatures & features) const
501 {
502         string const cmd = getCmdName();
503         if (cmd == "vref" || cmd == "vpageref")
504                 features.require("varioref");
505         else if (cmd == "formatted") {
506                 docstring const data = getEscapedLabel(features.runparams());
507                 docstring label;
508                 docstring prefix;
509                 docstring const fcmd =
510                         getFormattedCmd(data, label, prefix, getParam("caps"));
511                 if (buffer().params().use_refstyle) {
512                         features.require("refstyle");
513                         if (prefix == "cha")
514                                 features.addPreambleSnippet(from_ascii("\\let\\charef=\\chapref"));
515                         else if (!prefix.empty()) {
516                                 docstring lcmd = "\\AtBeginDocument{\\providecommand" +
517                                                 fcmd + "[1]{\\ref{" + prefix + ":#1}}}";
518                                 features.addPreambleSnippet(lcmd);
519                         }
520                 } else {
521                         features.require("prettyref");
522                         // prettyref uses "cha" for chapters, so we provide a kind of
523                         // translation.
524                         if (prefix == "chap")
525                                 features.addPreambleSnippet(from_ascii("\\let\\pr@chap=\\pr@cha"));
526                 }
527         } else if (cmd == "eqref" && !buffer().params().use_refstyle)
528                 // with refstyle, we simply output "(\ref{label})"
529                 features.require("amsmath");
530         else if (cmd == "nameref")
531                 features.require("nameref");
532 }
533
534 bool InsetRef::forceLTR(OutputParams const & rp) const
535 {
536         // We force LTR for references. However,
537         // * Namerefs are output in the scripts direction
538         //   at least with fontspec/bidi and luabidi, though (see #11518).
539         // * Parentheses are automatically swapped with XeTeX/bidi 
540         //   [not with LuaTeX/luabidi] (see #11626).
541         // FIXME: Re-Audit all other RTL cases.
542         if (rp.useBidiPackage())
543                 return false;
544         return (getCmdName() != "nameref" || !buffer().masterParams().useNonTeXFonts);
545 }
546
547
548 InsetRef::type_info const InsetRef::types[] = {
549         { "ref",       N_("Standard"),              N_("Ref: ")},
550         { "eqref",     N_("Equation"),              N_("EqRef: ")},
551         { "pageref",   N_("Page Number"),           N_("Page: ")},
552         { "vpageref",  N_("Textual Page Number"),   N_("TextPage: ")},
553         { "vref",      N_("Standard+Textual Page"), N_("Ref+Text: ")},
554         { "nameref",   N_("Reference to Name"),     N_("NameRef: ")},
555         { "formatted", N_("Formatted"),             N_("Format: ")},
556         { "labelonly", N_("Label Only"),            N_("Label: ")},
557         { "", "", "" }
558 };
559
560
561 docstring InsetRef::getTOCString() const
562 {
563         docstring const & label = getParam("reference");
564         if (buffer().insetLabel(label))
565                 broken_ = !buffer().activeLabel(label) && active_;
566         else 
567                 broken_ = active_;
568         return tooltip_.empty() ? screenLabel() : tooltip_;
569 }
570
571 } // namespace lyx