X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetref.C;h=490d5e58090dd593c703c67336cbfda8328fb5d8;hb=357a3741c0655e174ad48ded68cca90b09a158e6;hp=681aa2183bf1289ca29c712fce99c1509dcf8b3d;hpb=76ef051b1cb1fb51c3ffd8ccc9105be4471e74d4;p=lyx.git diff --git a/src/insets/insetref.C b/src/insets/insetref.C index 681aa2183b..490d5e5809 100644 --- a/src/insets/insetref.C +++ b/src/insets/insetref.C @@ -1,50 +1,77 @@ +/** + * \file insetref.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. + * + * \author José Matos + * + * Full author contact details are available in file CREDITS. + */ #include -#ifdef __GNUG__ -#pragma implementation -#endif - #include "insetref.h" + #include "buffer.h" -#include "commandtags.h" -#include "debug.h" +#include "cursor.h" +#include "BufferView.h" +#include "dispatchresult.h" +#include "funcrequest.h" #include "gettext.h" #include "LaTeXFeatures.h" -#include "LyXView.h" -#include "frontends/Dialogs.h" -#include "lyxfunc.h" -#include "BufferView.h" + +#include "frontends/LyXView.h" + #include "support/lstrings.h" + +using lyx::support::escape; + +using std::string; using std::ostream; + InsetRef::InsetRef(InsetCommandParams const & p, Buffer const & buf) - : InsetCommand(p), isLatex(buf.isLatex()) + : InsetCommand(p, "ref"), isLatex(buf.isLatex()) +{} + + +InsetRef::InsetRef(InsetRef const & ir) + : InsetCommand(ir), isLatex(ir.isLatex) {} -void InsetRef::Edit(BufferView * bv, int, int, unsigned int button) + +void InsetRef::priv_dispatch(LCursor & cur, FuncRequest const & cmd) { - // Eventually trigger dialog with button 3 not 1 - if (button == 3 ) - bv->owner()->getLyXFunc()-> - Dispatch(LFUN_REF_GOTO, getContents()); - else if (button == 1 ) - bv->owner()->getDialogs()->showRef( this ); + switch (cmd.action) { + case LFUN_MOUSE_PRESS: + // Eventually trigger dialog with button 3 not 1 + if (cmd.button() == mouse_button::button3) + cur.bv().owner()->dispatch(FuncRequest(LFUN_REF_GOTO, getContents())); + else + InsetCommandMailer("ref", *this).showDialog(&cur.bv()); + return; + + case LFUN_MOUSE_RELEASE: + return; + + default: + return InsetCommand::priv_dispatch(cur, cmd); + } } -string const InsetRef::getScreenLabel() const +string const InsetRef::getScreenLabel(Buffer const &) const { string temp; - for (int i = 0; !types[i].latex_name.empty(); ++ i) + 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()) { + if (!isLatex && !getOptions().empty()) { temp += "||"; temp += getOptions(); } @@ -52,27 +79,29 @@ string const InsetRef::getScreenLabel() const } -int InsetRef::Latex(Buffer const *, ostream & os, - bool /*fragile*/, bool /*fs*/) const +int InsetRef::latex(Buffer const &, ostream & os, + OutputParams const &) const { if (getOptions().empty()) os << escape(getCommand()); else { - InsetCommandParams p( getCmdName(), getContents(), "" ); + InsetCommandParams p(getCmdName(), getContents(), ""); os << escape(p.getCommand()); } return 0; } -int InsetRef::Ascii(Buffer const *, ostream & os, int) const +int InsetRef::plaintext(Buffer const &, ostream & os, + OutputParams const &) const { - os << "[" << getContents() << "]"; + os << '[' << getContents() << ']'; return 0; } -int InsetRef::Linuxdoc(Buffer const *, ostream & os) const +int InsetRef::linuxdoc(Buffer const &, ostream & os, + OutputParams const &) const { os << ""; @@ -80,10 +109,11 @@ int InsetRef::Linuxdoc(Buffer const *, ostream & os) const } -int InsetRef::DocBook(Buffer const *, ostream & os) const +int InsetRef::docbook(Buffer const &, ostream & os, + OutputParams const &) const { if (getOptions().empty()) { - os << ""; + os << ""; } else { os << "" << getOptions() << ""; @@ -93,20 +123,24 @@ int InsetRef::DocBook(Buffer const *, ostream & os) const } -void InsetRef::Validate(LaTeXFeatures & features) const +void InsetRef::validate(LaTeXFeatures & features) const { if (getCmdName() == "vref" || getCmdName() == "vpageref") - features.varioref = true; + features.require("varioref"); else if (getCmdName() == "prettyref") - features.prettyref = true; + features.require("prettyref"); + else if (getCmdName() == "eqref") + features.require("amsmath"); } + 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: ")}, + { "ref", N_("Standard"), N_("Ref: ")}, + { "eqref", N_("Equation"), N_("EqRef: ")}, + { "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: ")}, { "", "", "" } };