]> git.lyx.org Git - lyx.git/blob - src/insets/InsetRef.cpp
02fc0b9355b27a889cc0955c9e58e3813f5d1cee
[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 "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 std;
30 using namespace lyx::support;
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::addToToc(ParConstIterator const & cpit) const
156 {
157         docstring const & label = getParam("reference");
158         Toc & toc = buffer().tocBackend().toc("label");
159         Toc::iterator it = toc.begin();
160         Toc::iterator end = toc.end();
161         for (; it != end; ++it) {
162                 if (it->str() == label)
163                         break;
164         }
165
166         docstring const reflabel = screenLabel();
167         if (it == end) {
168                 // This label has not been parsed yet so we just add it temporarily.
169                 // InsetLabel::addTocToc() will fix that later.
170                 toc.push_back(TocItem(cpit, 0, label));
171                 toc.push_back(TocItem(cpit, 1, reflabel));
172                 return;
173         }
174
175         // The Toc item for this label already exists so let's add
176         // this inset to this node.
177         ++it;
178         while (it != end && it->str() == reflabel)
179                 ++it;
180         toc.insert(it, TocItem(cpit, 1, reflabel));
181 }
182
183
184 void InsetRef::validate(LaTeXFeatures & features) const
185 {
186         if (getCmdName() == "vref" || getCmdName() == "vpageref")
187                 features.require("varioref");
188         else if (getCmdName() == "prettyref")
189                 features.require("prettyref");
190         else if (getCmdName() == "eqref")
191                 features.require("amsmath");
192 }
193
194
195 InsetRef::type_info InsetRef::types[] = {
196         { "ref",       N_("Standard"),              N_("Ref: ")},
197         { "eqref",     N_("Equation"),              N_("EqRef: ")},
198         { "pageref",   N_("Page Number"),           N_("Page: ")},
199         { "vpageref",  N_("Textual Page Number"),   N_("TextPage: ")},
200         { "vref",      N_("Standard+Textual Page"), N_("Ref+Text: ")},
201         { "prettyref", N_("PrettyRef"),             N_("FormatRef: ")},
202         { "", "", "" }
203 };
204
205
206 int InsetRef::getType(string const & name)
207 {
208         for (int i = 0; !types[i].latex_name.empty(); ++i)
209                 if (name == types[i].latex_name)
210                         return i;
211         return 0;
212 }
213
214
215 string const & InsetRef::getName(int type)
216 {
217         return types[type].latex_name;
218 }
219
220
221 } // namespace lyx