]> git.lyx.org Git - features.git/blob - src/insets/InsetRef.cpp
Introduce a labels&references cache at buffer level. This cache uses the already...
[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 "Cursor.h"
16 #include "DispatchResult.h"
17 #include "FuncRequest.h"
18 #include "LaTeXFeatures.h"
19 #include "LyXFunc.h"
20 #include "OutputParams.h"
21 #include "ParIterator.h"
22 #include "sgml.h"
23 #include "TocBackend.h"
24
25 #include "support/docstream.h"
26 #include "support/gettext.h"
27 #include "support/lstrings.h"
28
29 using namespace lyx::support;
30 using namespace std;
31
32 namespace lyx {
33
34
35 InsetRef::InsetRef(InsetCommandParams const & p, Buffer const & buf)
36         : InsetCommand(p, "ref"), isLatex(buf.isLatex())
37 {}
38
39
40 InsetRef::InsetRef(InsetRef const & ir)
41         : InsetCommand(ir), isLatex(ir.isLatex)
42 {}
43
44
45 bool InsetRef::isCompatibleCommand(string const & s) {
46         //FIXME This is likely not the best way to handle this.
47         //But this stuff is hardcoded elsewhere already.
48         return s == "ref" 
49                 || s == "pageref"
50                 || s == "vref" 
51                 || s == "vpageref"
52                 || s == "prettyref"
53                 || s == "eqref";
54 }
55
56
57 ParamInfo const & InsetRef::findInfo(string const & /* cmdName */)
58 {
59         static ParamInfo param_info_;
60         if (param_info_.empty()) {
61                 param_info_.add("name", ParamInfo::LATEX_OPTIONAL);
62                 param_info_.add("reference", ParamInfo::LATEX_REQUIRED);
63         }
64         return param_info_;
65 }
66
67
68 void InsetRef::doDispatch(Cursor & cur, FuncRequest & cmd)
69 {
70         switch (cmd.action) {
71         case LFUN_MOUSE_RELEASE:
72                 // Eventually trigger dialog with button 3 not 1
73                 if (cmd.button() == mouse_button::button3)
74                         lyx::dispatch(FuncRequest(LFUN_LABEL_GOTO,
75                                                   getParam("reference")));
76                 else
77                         InsetCommand::doDispatch(cur, cmd);
78                 break;
79
80         default:
81                 InsetCommand::doDispatch(cur, cmd);
82         }
83 }
84
85
86 docstring InsetRef::screenLabel() const
87 {
88         docstring temp;
89         for (int i = 0; !types[i].latex_name.empty(); ++i) {
90                 if (getCmdName() == types[i].latex_name) {
91                         temp = _(types[i].short_gui_name);
92                         break;
93                 }
94         }
95         temp += getParam("reference");
96
97         if (!isLatex && !getParam("name").empty()) {
98                 temp += "||";
99                 temp += getParam("name");
100         }
101         return temp;
102 }
103
104
105 int InsetRef::latex(odocstream & os, OutputParams const &) const
106 {
107         // We don't want to output p_["name"], since that is only used 
108         // in docbook. So we construct new params, without it, and use that.
109         InsetCommandParams p(REF_CODE, getCmdName());
110         p["reference"] = getParam("reference");
111         os << escape(p.getCommand());
112         return 0;
113 }
114
115
116 int InsetRef::plaintext(odocstream & os, OutputParams const &) const
117 {
118         docstring const str = getParam("reference");
119         os << '[' << str << ']';
120         return 2 + str.size();
121 }
122
123
124 int InsetRef::docbook(odocstream & os, OutputParams const & runparams) const
125 {
126         docstring const & name = getParam("name");
127         if (name.empty()) {
128                 if (runparams.flavor == OutputParams::XML) {
129                         os << "<xref linkend=\""
130                            << sgml::cleanID(buffer(), runparams, getParam("reference"))
131                            << "\" />";
132                 } else {
133                         os << "<xref linkend=\""
134                            << sgml::cleanID(buffer(), runparams, getParam("reference"))
135                            << "\">";
136                 }
137         } else {
138                 os << "<link linkend=\""
139                    << sgml::cleanID(buffer(), runparams, getParam("reference"))
140                    << "\">"
141                    << getParam("name")
142                    << "</link>";
143         }
144
145         return 0;
146 }
147
148
149 void InsetRef::textString(odocstream & os) const
150 {
151         plaintext(os, OutputParams(0));
152 }
153
154
155 void InsetRef::updateLabels(ParIterator const & it)
156 {
157         docstring const & label = getParam("reference");
158         buffer().references(label).push_back(make_pair(this, it));
159 }
160
161
162 void InsetRef::addToToc(ParConstIterator const & cpit) const
163 {
164         docstring const & label = getParam("reference");
165         if (buffer().insetLabel(label))
166                 // This InsetRef has already been taken care of in InsetLabel::addToToc().
167                 return;
168
169         Toc & toc = buffer().tocBackend().toc("label");
170         docstring const reflabel = _("BROKEN: ") + screenLabel();
171         toc.push_back(TocItem(cpit, 0, reflabel));
172 }
173
174
175 void InsetRef::validate(LaTeXFeatures & features) const
176 {
177         if (getCmdName() == "vref" || getCmdName() == "vpageref")
178                 features.require("varioref");
179         else if (getCmdName() == "prettyref")
180                 features.require("prettyref");
181         else if (getCmdName() == "eqref")
182                 features.require("amsmath");
183 }
184
185
186 InsetRef::type_info InsetRef::types[] = {
187         { "ref",       N_("Standard"),              N_("Ref: ")},
188         { "eqref",     N_("Equation"),              N_("EqRef: ")},
189         { "pageref",   N_("Page Number"),           N_("Page: ")},
190         { "vpageref",  N_("Textual Page Number"),   N_("TextPage: ")},
191         { "vref",      N_("Standard+Textual Page"), N_("Ref+Text: ")},
192         { "prettyref", N_("PrettyRef"),             N_("FormatRef: ")},
193         { "", "", "" }
194 };
195
196
197 int InsetRef::getType(string const & name)
198 {
199         for (int i = 0; !types[i].latex_name.empty(); ++i)
200                 if (name == types[i].latex_name)
201                         return i;
202         return 0;
203 }
204
205
206 string const & InsetRef::getName(int type)
207 {
208         return types[type].latex_name;
209 }
210
211
212 } // namespace lyx