2002-06-24 20:28:12 +00:00
|
|
|
#include <config.h>
|
2002-06-24 15:51:35 +00:00
|
|
|
|
|
|
|
#include "ref_inset.h"
|
|
|
|
#include "math_cursor.h"
|
2002-08-07 08:11:41 +00:00
|
|
|
#include "funcrequest.h"
|
2002-06-24 15:51:35 +00:00
|
|
|
#include "formulabase.h"
|
|
|
|
#include "BufferView.h"
|
|
|
|
#include "frontends/LyXView.h"
|
|
|
|
#include "frontends/Painter.h"
|
|
|
|
#include "frontends/Dialogs.h"
|
|
|
|
#include "lyxfunc.h"
|
|
|
|
#include "gettext.h"
|
|
|
|
#include "LaTeXFeatures.h"
|
2002-06-24 20:28:12 +00:00
|
|
|
#include "debug.h"
|
|
|
|
|
2002-06-24 15:51:35 +00:00
|
|
|
|
|
|
|
RefInset::RefInset()
|
|
|
|
: CommandInset("ref")
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
|
|
RefInset::RefInset(string const & data)
|
|
|
|
: CommandInset(data)
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
|
|
MathInset * RefInset::clone() const
|
|
|
|
{
|
|
|
|
return new RefInset(*this);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void RefInset::infoize(std::ostream & os) const
|
|
|
|
{
|
|
|
|
os << "Ref: " << cell(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-08-12 09:53:04 +00:00
|
|
|
int RefInset::dispatch(FuncRequest const & cmd, idx_type, pos_type)
|
2002-06-24 15:51:35 +00:00
|
|
|
{
|
2002-08-12 09:53:04 +00:00
|
|
|
switch (cmd.action) {
|
|
|
|
case LFUN_MOUSE_RELEASE:
|
|
|
|
if (cmd.extra == 3) {
|
|
|
|
lyxerr << "trying to goto ref" << cell(0) << "\n";
|
2002-08-13 14:40:38 +00:00
|
|
|
mathcursor->formula()->view()->owner()->getLyXFunc().
|
2002-08-12 09:53:04 +00:00
|
|
|
dispatch(FuncRequest(LFUN_REF_GOTO, asString(cell(0))));
|
|
|
|
return 1; // dispatched
|
|
|
|
}
|
|
|
|
if (cmd.extra == 1) {
|
|
|
|
lyxerr << "trying to open ref" << cell(0) << "\n";
|
|
|
|
// Eventually trigger dialog with button 3 not 1
|
|
|
|
// mathcursor->formula()->view()->owner()->getDialogs()
|
|
|
|
// ->showRef(this);
|
|
|
|
return 1; // dispatched
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case LFUN_MOUSE_PRESS:
|
|
|
|
case LFUN_MOUSE_MOTION:
|
|
|
|
// eat other mouse commands
|
|
|
|
return 1;
|
|
|
|
default:
|
|
|
|
break;
|
2002-06-24 15:51:35 +00:00
|
|
|
}
|
2002-08-12 09:53:04 +00:00
|
|
|
// not our business
|
|
|
|
return 0;
|
2002-06-24 15:51:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
string RefInset::screenLabel() const
|
|
|
|
{
|
|
|
|
string str;
|
|
|
|
for (int i = 0; !types[i].latex_name.empty(); ++i)
|
|
|
|
if (name_ == types[i].latex_name) {
|
|
|
|
str = _(types[i].short_gui_name);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
str += asString(cell(0));
|
|
|
|
|
|
|
|
//if (/* !isLatex && */ !cell(0).empty()) {
|
|
|
|
// str += "||";
|
|
|
|
// str += asString(cell(1));
|
|
|
|
//}
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void RefInset::validate(LaTeXFeatures & features) const
|
|
|
|
{
|
|
|
|
if (name_ == "vref" || name_ == "vpageref")
|
|
|
|
features.require("varioref");
|
|
|
|
else if (name_ == "prettyref")
|
|
|
|
features.require("prettyref");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int RefInset::ascii(std::ostream & os, int) const
|
|
|
|
{
|
|
|
|
os << "[" << asString(cell(0)) << "]";
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int RefInset::linuxdoc(std::ostream & os) const
|
|
|
|
{
|
|
|
|
os << "<ref id=\"" << asString(cell(0))
|
|
|
|
<< "\" name=\"" << asString(cell(1)) << "\" >";
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int RefInset::docbook(std::ostream & os, bool) const
|
|
|
|
{
|
|
|
|
if (cell(1).empty()) {
|
|
|
|
os << "<xref linkend=\"" << asString(cell(0)) << "\">";
|
|
|
|
} else {
|
|
|
|
os << "<link linkend=\"" << asString(cell(0))
|
|
|
|
<< "\">" << asString(cell(1)) << "</link>";
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2002-06-24 20:28:12 +00:00
|
|
|
|
2002-06-24 15:51:35 +00:00
|
|
|
RefInset::type_info RefInset::types[] = {
|
|
|
|
{ "ref", N_("Standard"), N_("Ref: ")},
|
|
|
|
{ "pageref", N_("Page Number"), N_("Page: ")},
|
|
|
|
{ "vpageref", N_("Textual Page Number"), N_("TextPage: ")},
|
|
|
|
{ "vref", N_("Standard+Textual Page"), N_("Ref+Text: ")},
|
|
|
|
{ "prettyref", N_("PrettyRef"), N_("PrettyRef: ")},
|
|
|
|
{ "", "", "" }
|
|
|
|
};
|