mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-08 10:51:03 +00:00
f1c24d1009
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4417 a592a061-630c-0410-9148-cb99ea01b6c8
132 lines
2.7 KiB
C
132 lines
2.7 KiB
C
#include <config.h>
|
|
|
|
#ifdef __GNUG__
|
|
#pragma implementation
|
|
#endif
|
|
|
|
#include "insetref.h"
|
|
#include "buffer.h"
|
|
#include "commandtags.h"
|
|
#include "debug.h"
|
|
#include "gettext.h"
|
|
#include "LaTeXFeatures.h"
|
|
#include "frontends/LyXView.h"
|
|
#include "frontends/Dialogs.h"
|
|
#include "lyxfunc.h"
|
|
#include "BufferView.h"
|
|
#include "support/lstrings.h"
|
|
|
|
using std::ostream;
|
|
|
|
InsetRef::InsetRef(InsetCommandParams const & p, Buffer const & buf, bool)
|
|
: InsetCommand(p), isLatex(buf.isLatex())
|
|
{}
|
|
|
|
void InsetRef::edit(BufferView * bv, int, int, mouse_button::state button)
|
|
{
|
|
// Eventually trigger dialog with button 3 not 1
|
|
if (button == mouse_button::button3)
|
|
bv->owner()->getLyXFunc()->
|
|
dispatch(LFUN_REF_GOTO, getContents());
|
|
else if (button == mouse_button::button1)
|
|
bv->owner()->getDialogs()->showRef(this);
|
|
}
|
|
|
|
|
|
void InsetRef::edit(BufferView *, bool)
|
|
{
|
|
}
|
|
|
|
|
|
string const InsetRef::getScreenLabel(Buffer const *) const
|
|
{
|
|
string temp;
|
|
for (int i = 0; !types[i].latex_name.empty(); ++ i)
|
|
if (getCmdName() == types[i].latex_name) {
|
|
temp = _(types[i].short_gui_name);
|
|
break;
|
|
}
|
|
temp += getContents();
|
|
|
|
if (!isLatex
|
|
&& !getOptions().empty()) {
|
|
temp += "||";
|
|
temp += getOptions();
|
|
}
|
|
return temp;
|
|
}
|
|
|
|
|
|
int InsetRef::latex(Buffer const *, ostream & os,
|
|
bool /*fragile*/, bool /*fs*/) const
|
|
{
|
|
if (getOptions().empty())
|
|
os << escape(getCommand());
|
|
else {
|
|
InsetCommandParams p(getCmdName(), getContents(), "");
|
|
os << escape(p.getCommand());
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
|
|
int InsetRef::ascii(Buffer const *, ostream & os, int) const
|
|
{
|
|
os << "[" << getContents() << "]";
|
|
return 0;
|
|
}
|
|
|
|
|
|
int InsetRef::linuxdoc(Buffer const *, ostream & os) const
|
|
{
|
|
os << "<ref id=\"" << getContents()
|
|
<< "\" name=\"" << getOptions() << "\" >";
|
|
return 0;
|
|
}
|
|
|
|
|
|
int InsetRef::docbook(Buffer const *, ostream & os, bool) const
|
|
{
|
|
if (getOptions().empty()) {
|
|
os << "<xref linkend=\"" << getContents() << "\">";
|
|
} else {
|
|
os << "<link linkend=\"" << getContents()
|
|
<< "\">" << getOptions() << "</link>";
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
|
|
void InsetRef::validate(LaTeXFeatures & features) const
|
|
{
|
|
if (getCmdName() == "vref" || getCmdName() == "vpageref")
|
|
features.require("varioref");
|
|
else if (getCmdName() == "prettyref")
|
|
features.require("prettyref");
|
|
}
|
|
|
|
InsetRef::type_info InsetRef::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: ")},
|
|
{ "", "", "" }
|
|
};
|
|
|
|
|
|
int InsetRef::getType(string const & name)
|
|
{
|
|
for (int i = 0; !types[i].latex_name.empty(); ++i)
|
|
if (name == types[i].latex_name)
|
|
return i;
|
|
return 0;
|
|
}
|
|
|
|
|
|
string const & InsetRef::getName(int type)
|
|
{
|
|
return types[type].latex_name;
|
|
}
|