]> git.lyx.org Git - lyx.git/blob - src/insets/insetref.C
* src/LyXAction.C: mark goto-clear-bookmark as working without buffer
[lyx.git] / src / insets / insetref.C
1 /**
2  * \file insetref.C
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 "gettext.h"
19 #include "LaTeXFeatures.h"
20 #include "lyxfunc.h"
21 #include "outputparams.h"
22 #include "sgml.h"
23
24 #include "support/lstrings.h"
25
26
27 namespace lyx {
28
29 using support::escape;
30
31 using std::string;
32 using std::ostream;
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 void InsetRef::doDispatch(LCursor & cur, FuncRequest & cmd)
46 {
47         switch (cmd.action) {
48         case LFUN_MOUSE_PRESS:
49                 // Eventually trigger dialog with button 3 not 1
50                 if (cmd.button() == mouse_button::button3)
51                         lyx::dispatch(FuncRequest(LFUN_LABEL_GOTO, getParam("reference")));
52                 else {
53                         InsetCommandMailer("ref", *this).showDialog(&cur.bv());
54                         cur.undispatched();
55                 }
56                 return;
57
58         case LFUN_MOUSE_RELEASE:
59                 return;
60
61         default:
62                 return InsetCommand::doDispatch(cur, cmd);
63         }
64 }
65
66
67 docstring const InsetRef::getScreenLabel(Buffer const &) const
68 {
69         docstring temp;
70         for (int i = 0; !types[i].latex_name.empty(); ++i) {
71                 if (getCmdName() == types[i].latex_name) {
72                         temp = _(types[i].short_gui_name);
73                         break;
74                 }
75         }
76         temp += getParam("reference");
77
78         if (!isLatex && !getParam("name").empty()) {
79                 temp += "||";
80                 temp += getParam("name");
81         }
82         return temp;
83 }
84
85
86 int InsetRef::latex(Buffer const &, odocstream & os,
87                     OutputParams const &) const
88 {
89         // Don't output p_["name"], this is only used in docbook
90         InsetCommandParams p(getCmdName());
91         p["reference"] = getParam("reference");
92         os << escape(p.getCommand());
93         return 0;
94 }
95
96
97 int InsetRef::plaintext(Buffer const &, odocstream & os,
98                     OutputParams const &) const
99 {
100         os << '[' << getParam("reference") << ']';
101         return 0;
102 }
103
104
105 int InsetRef::docbook(Buffer const & buf, odocstream & os,
106                       OutputParams const & runparams) const
107 {
108         docstring const & name = getParam("name");
109         if (name.empty()) {
110                 if (runparams.flavor == OutputParams::XML) {
111                         os << "<xref linkend=\"" 
112                            << sgml::cleanID(buf, runparams, getParam("reference")) 
113                            << "\" />";
114                 } else {
115                         os << "<xref linkend=\"" 
116                            << sgml::cleanID(buf, runparams, getParam("reference")) 
117                            << "\">";
118                 }
119         } else {
120                 os << "<link linkend=\"" 
121                    << sgml::cleanID(buf, runparams, getParam("reference"))
122                    << "\">" 
123                    << getParam("name")
124                    << "</link>";
125         }
126
127         return 0;
128 }
129
130
131 int InsetRef::textString(Buffer const & buf, odocstream & os,
132                        OutputParams const & op) const
133 {
134         return plaintext(buf, os, op);
135 }
136
137
138 void InsetRef::validate(LaTeXFeatures & features) const
139 {
140         if (getCmdName() == "vref" || getCmdName() == "vpageref")
141                 features.require("varioref");
142         else if (getCmdName() == "prettyref")
143                 features.require("prettyref");
144         else if (getCmdName() == "eqref")
145                 features.require("amsmath");
146 }
147
148
149 InsetRef::type_info InsetRef::types[] = {
150         { "ref",       N_("Standard"),              N_("Ref: ")},
151         { "eqref",     N_("Equation"),              N_("EqRef: ")},
152         { "pageref",   N_("Page Number"),           N_("Page: ")},
153         { "vpageref",  N_("Textual Page Number"),   N_("TextPage: ")},
154         { "vref",      N_("Standard+Textual Page"), N_("Ref+Text: ")},
155         { "prettyref", N_("PrettyRef"),             N_("PrettyRef: ")},
156         { "", "", "" }
157 };
158
159
160 int InsetRef::getType(string const & name)
161 {
162         for (int i = 0; !types[i].latex_name.empty(); ++i)
163                 if (name == types[i].latex_name)
164                         return i;
165         return 0;
166 }
167
168
169 string const & InsetRef::getName(int type)
170 {
171         return types[type].latex_name;
172 }
173
174
175 } // namespace lyx