mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
897436efbb
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18550 a592a061-630c-0410-9148-cb99ea01b6c8
198 lines
4.5 KiB
C++
198 lines
4.5 KiB
C++
/**
|
|
* \file InsetMathRef.cpp
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author André Pönitz
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "InsetMathRef.h"
|
|
|
|
#include "BufferView.h"
|
|
#include "LaTeXFeatures.h"
|
|
#include "Buffer.h"
|
|
#include "Cursor.h"
|
|
#include "debug.h"
|
|
#include "FuncRequest.h"
|
|
#include "FuncStatus.h"
|
|
#include "gettext.h"
|
|
#include "MathData.h"
|
|
#include "MathFactory.h"
|
|
#include "MathSupport.h"
|
|
#include "OutputParams.h"
|
|
#include "sgml.h"
|
|
|
|
#include "insets/InsetCommand.h"
|
|
|
|
|
|
namespace lyx {
|
|
|
|
using std::string;
|
|
using std::auto_ptr;
|
|
using std::endl;
|
|
|
|
|
|
InsetMathRef::InsetMathRef()
|
|
: CommandInset(from_ascii("ref"))
|
|
{}
|
|
|
|
|
|
InsetMathRef::InsetMathRef(docstring const & data)
|
|
: CommandInset(data)
|
|
{}
|
|
|
|
|
|
auto_ptr<Inset> InsetMathRef::doClone() const
|
|
{
|
|
return auto_ptr<Inset>(new InsetMathRef(*this));
|
|
}
|
|
|
|
|
|
void InsetMathRef::infoize(odocstream & os) const
|
|
{
|
|
os << "Ref: " << cell(0);
|
|
}
|
|
|
|
|
|
void InsetMathRef::doDispatch(Cursor & cur, FuncRequest & cmd)
|
|
{
|
|
switch (cmd.action) {
|
|
case LFUN_INSET_MODIFY:
|
|
if (cmd.getArg(0) == "ref") {
|
|
MathData ar;
|
|
if (createInsetMath_fromDialogStr(cmd.argument(), ar)) {
|
|
*this = *ar[0].nucleus()->asRefInset();
|
|
break;
|
|
}
|
|
}
|
|
cur.undispatched();
|
|
break;
|
|
|
|
case LFUN_INSET_DIALOG_UPDATE: {
|
|
string const data = createDialogStr("ref");
|
|
cur.bv().updateDialog("ref", data);
|
|
break;
|
|
}
|
|
|
|
case LFUN_MOUSE_RELEASE:
|
|
if (cmd.button() == mouse_button::button3) {
|
|
lyxerr << "trying to goto ref '" << to_utf8(asString(cell(0))) << "'" << endl;
|
|
cur.bv().dispatch(FuncRequest(LFUN_LABEL_GOTO, asString(cell(0))));
|
|
break;
|
|
}
|
|
if (cmd.button() == mouse_button::button1) {
|
|
// Eventually trigger dialog with button 3, not 1
|
|
string const data = createDialogStr("ref");
|
|
cur.bv().showInsetDialog("ref", data, this);
|
|
break;
|
|
}
|
|
cur.undispatched();
|
|
break;
|
|
|
|
case LFUN_MOUSE_PRESS:
|
|
case LFUN_MOUSE_MOTION:
|
|
// eat other mouse commands
|
|
break;
|
|
|
|
default:
|
|
CommandInset::doDispatch(cur, cmd);
|
|
break;
|
|
}
|
|
}
|
|
|
|
|
|
bool InsetMathRef::getStatus(Cursor & cur, FuncRequest const & cmd,
|
|
FuncStatus & status) const
|
|
{
|
|
switch (cmd.action) {
|
|
// we handle these
|
|
case LFUN_INSET_MODIFY:
|
|
case LFUN_INSET_DIALOG_UPDATE:
|
|
case LFUN_MOUSE_RELEASE:
|
|
case LFUN_MOUSE_PRESS:
|
|
case LFUN_MOUSE_MOTION:
|
|
status.enabled(true);
|
|
return true;
|
|
default:
|
|
return CommandInset::getStatus(cur, cmd, status);
|
|
}
|
|
}
|
|
|
|
|
|
docstring const InsetMathRef::screenLabel() const
|
|
{
|
|
docstring str;
|
|
for (int i = 0; !types[i].latex_name.empty(); ++i) {
|
|
if (commandname() == types[i].latex_name) {
|
|
str = _(to_utf8(types[i].short_gui_name));
|
|
break;
|
|
}
|
|
}
|
|
str += asString(cell(0));
|
|
|
|
//if (/* !isLatex && */ !cell(0).empty()) {
|
|
// str += "||";
|
|
// str += asString(cell(1));
|
|
//}
|
|
return str;
|
|
}
|
|
|
|
|
|
void InsetMathRef::validate(LaTeXFeatures & features) const
|
|
{
|
|
if (commandname() == "vref" || commandname() == "vpageref")
|
|
features.require("varioref");
|
|
else if (commandname() == "prettyref")
|
|
features.require("prettyref");
|
|
}
|
|
|
|
|
|
int InsetMathRef::docbook(Buffer const & buf, odocstream & os,
|
|
OutputParams const & runparams) const
|
|
{
|
|
if (cell(1).empty()) {
|
|
os << "<xref linkend=\""
|
|
<< sgml::cleanID(buf, runparams, asString(cell(0)));
|
|
if (runparams.flavor == OutputParams::XML)
|
|
os << "\"/>";
|
|
else
|
|
os << "\">";
|
|
} else {
|
|
os << "<link linkend=\""
|
|
<< sgml::cleanID(buf, runparams, asString(cell(0)))
|
|
<< "\">"
|
|
<< asString(cell(1))
|
|
<< "</link>";
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
|
|
string const InsetMathRef::createDialogStr(string const & name) const
|
|
{
|
|
InsetCommandParams icp(to_ascii(commandname()));
|
|
icp["reference"] = asString(cell(0));
|
|
if (!cell(1).empty())
|
|
icp["name"] = asString(cell(1));
|
|
return InsetCommandMailer::params2string(name, icp);
|
|
}
|
|
|
|
|
|
InsetMathRef::ref_type_info InsetMathRef::types[] = {
|
|
{ from_ascii("ref"), from_ascii(N_("Standard")), from_ascii(N_("Ref: "))},
|
|
{ from_ascii("eqref"), from_ascii(N_("Equation")), from_ascii(N_("EqRef: "))},
|
|
{ from_ascii("pageref"), from_ascii(N_("Page Number")), from_ascii(N_("Page: "))},
|
|
{ from_ascii("vpageref"), from_ascii(N_("Textual Page Number")), from_ascii(N_("TextPage: "))},
|
|
{ from_ascii("vref"), from_ascii(N_("Standard+Textual Page")), from_ascii(N_("Ref+Text: "))},
|
|
{ from_ascii("prettyref"), from_ascii(N_("PrettyRef")), from_ascii(N_("FormatRef: "))},
|
|
{ from_ascii(""), from_ascii(""), from_ascii("") }
|
|
};
|
|
|
|
|
|
} // namespace lyx
|