]> git.lyx.org Git - lyx.git/blob - src/insets/insetref.C
Output docbook as utf8. Probably quite a bit more work needed, but then help form...
[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 using lyx::docstring;
28 using lyx::odocstream;
29 using lyx::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, getContents()));
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         // FIXME UNICODE
77         temp += lyx::from_utf8(getContents());
78
79         if (!isLatex && !getOptions().empty()) {
80                 temp += "||";
81                 // FIXME UNICODE
82                 temp += lyx::from_utf8(getOptions());
83         }
84         return temp;
85 }
86
87
88 int InsetRef::latex(Buffer const &, odocstream & os,
89                     OutputParams const &) const
90 {
91         // Don't output p_["name"], this is only used in docbook
92         InsetCommandParams p(getCmdName());
93         p["reference"] = getParam("reference");
94         os << escape(p.getCommand());
95         return 0;
96 }
97
98
99 int InsetRef::plaintext(Buffer const &, odocstream & os,
100                     OutputParams const &) const
101 {
102         // FIXME UNICODE
103         os << '[' << lyx::from_utf8(getContents()) << ']';
104         return 0;
105 }
106
107
108 int InsetRef::docbook(Buffer const & buf, odocstream & os,
109                       OutputParams const & runparams) const
110 {
111         // FIXME UNICODE
112         if (getOptions().empty() && runparams.flavor == OutputParams::XML) {
113                 os << "<xref linkend=\""
114                    << lyx::from_ascii(sgml::cleanID(buf, runparams, getContents()))
115                    << "\" />";
116         } else if (getOptions().empty()) {
117                 os << "<xref linkend=\""
118                    << lyx::from_ascii(sgml::cleanID(buf, runparams, getContents()))
119                    << "\">";
120         } else {
121                 os << "<link linkend=\""
122                    << lyx::from_ascii(sgml::cleanID(buf, runparams, getContents()))
123                    << "\">"
124                    << lyx::from_ascii(getOptions())
125                    << "</link>";
126         }
127
128         return 0;
129 }
130
131
132 int InsetRef::textString(Buffer const & buf, odocstream & os,
133                        OutputParams const & op) const
134 {
135         return plaintext(buf, os, op);
136 }
137
138
139 void InsetRef::validate(LaTeXFeatures & features) const
140 {
141         if (getCmdName() == "vref" || getCmdName() == "vpageref")
142                 features.require("varioref");
143         else if (getCmdName() == "prettyref")
144                 features.require("prettyref");
145         else if (getCmdName() == "eqref")
146                 features.require("amsmath");
147 }
148
149
150 InsetRef::type_info InsetRef::types[] = {
151         { "ref",       N_("Standard"),              N_("Ref: ")},
152         { "eqref",     N_("Equation"),              N_("EqRef: ")},
153         { "pageref",   N_("Page Number"),           N_("Page: ")},
154         { "vpageref",  N_("Textual Page Number"),   N_("TextPage: ")},
155         { "vref",      N_("Standard+Textual Page"), N_("Ref+Text: ")},
156         { "prettyref", N_("PrettyRef"),             N_("PrettyRef: ")},
157         { "", "", "" }
158 };
159
160
161 int InsetRef::getType(string const & name)
162 {
163         for (int i = 0; !types[i].latex_name.empty(); ++i)
164                 if (name == types[i].latex_name)
165                         return i;
166         return 0;
167 }
168
169
170 string const & InsetRef::getName(int type)
171 {
172         return types[type].latex_name;
173 }