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