]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetref.C
* In the process of fixing the math background color bug, this commit transfer backgr...
[lyx.git] / src / insets / insetref.C
index aac91335cbcf7d935161d4d954a65006b26d841f..85dca1c86529ab7fdf0bfa45524a34ee86ee0f8f 100644 (file)
+/**
+ * \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 <config.h>
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
-
 #include "insetref.h"
+
 #include "buffer.h"
-#include "commandtags.h"
-#include "debug.h"
+#include "cursor.h"
+#include "dispatchresult.h"
+#include "funcrequest.h"
 #include "gettext.h"
 #include "LaTeXFeatures.h"
-#include "frontends/LyXView.h"
-#include "frontends/Dialogs.h"
 #include "lyxfunc.h"
-#include "BufferView.h"
+#include "outputparams.h"
+#include "sgml.h"
+
 #include "support/lstrings.h"
 
+
+namespace lyx {
+
+using support::escape;
+
+using std::string;
 using std::ostream;
 
-InsetRef::InsetRef(InsetCommandParams const & p, Buffer const & buf, bool)
-       : InsetCommand(p), isLatex(buf.isLatex())
+
+InsetRef::InsetRef(InsetCommandParams const & p, Buffer const & buf)
+       : InsetCommand(p, "ref"), 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);
-}
+
+InsetRef::InsetRef(InsetRef const & ir)
+       : InsetCommand(ir), isLatex(ir.isLatex)
+{}
 
 
-void InsetRef::edit(BufferView *, bool)
+void InsetRef::doDispatch(LCursor & cur, FuncRequest & cmd)
 {
+       switch (cmd.action) {
+       case LFUN_MOUSE_PRESS:
+               // Eventually trigger dialog with button 3 not 1
+               if (cmd.button() == mouse_button::button3)
+                       lyx::dispatch(FuncRequest(LFUN_LABEL_GOTO, getParam("reference")));
+               else {
+                       InsetCommandMailer("ref", *this).showDialog(&cur.bv());
+                       cur.undispatched();
+               }
+               return;
+
+       case LFUN_MOUSE_RELEASE:
+               return;
+
+       default:
+               return InsetCommand::doDispatch(cur, cmd);
+       }
 }
 
 
-string const InsetRef::getScreenLabel(Buffer const *) const
+docstring const InsetRef::getScreenLabel(Buffer const &) const
 {
-       string temp;
-       for (int i = 0; !types[i].latex_name.empty(); ++ i)
+       docstring 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();
+       }
+       temp += getParam("reference");
 
-       if (!isLatex
-          && !getOptions().empty()) {
+       if (!isLatex && !getParam("name").empty()) {
                temp += "||";
-               temp += getOptions();
+               temp += getParam("name");
        }
        return temp;
 }
 
 
-int InsetRef::latex(Buffer const *, ostream & os,
-                   bool /*fragile*/, bool /*fs*/) const
+int InsetRef::latex(Buffer const &, odocstream & os,
+                    OutputParams const &) const
 {
-       if (getOptions().empty())
-               os << escape(getCommand());
-       else {
-               InsetCommandParams p(getCmdName(), getContents(), "");
-               os << escape(p.getCommand());
-       }
+       // Don't output p_["name"], this is only used in docbook
+       InsetCommandParams p(getCmdName());
+       p["reference"] = getParam("reference");
+       os << escape(p.getCommand());
        return 0;
 }
 
 
-int InsetRef::ascii(Buffer const *, ostream & os, int) const
+int InsetRef::plaintext(Buffer const &, odocstream & os,
+                        OutputParams const &) const
 {
-       os << "[" << getContents() << "]";
-       return 0;
+       docstring const str = getParam("reference");
+       os << '[' << str << ']';
+       return 2 + str.size();
 }
 
 
-int InsetRef::linuxdoc(Buffer const *, ostream & os) const
+int InsetRef::docbook(Buffer const & buf, odocstream & os,
+                      OutputParams const & runparams) const
 {
-       os << "<ref id=\"" << getContents()
-          << "\" name=\"" << getOptions() << "\" >";
+       docstring const & name = getParam("name");
+       if (name.empty()) {
+               if (runparams.flavor == OutputParams::XML) {
+                       os << "<xref linkend=\"" 
+                          << sgml::cleanID(buf, runparams, getParam("reference")) 
+                          << "\" />";
+               } else {
+                       os << "<xref linkend=\"" 
+                          << sgml::cleanID(buf, runparams, getParam("reference")) 
+                          << "\">";
+               }
+       } else {
+               os << "<link linkend=\"" 
+                  << sgml::cleanID(buf, runparams, getParam("reference"))
+                  << "\">" 
+                  << getParam("name")
+                  << "</link>";
+       }
+
        return 0;
 }
 
 
-int InsetRef::docbook(Buffer const *, ostream & os, bool) const
+int InsetRef::textString(Buffer const & buf, odocstream & os,
+                      OutputParams const & op) const
 {
-       if (getOptions().empty()) {
-               os << "<xref linkend=\"" << getContents() << "\">";
-       } else {
-               os << "<link linkend=\"" << getContents()
-                  << "\">" << getOptions() << "</link>";
-       }
-
-       return 0;
+       return plaintext(buf, os, op);
 }
 
 
@@ -104,15 +142,18 @@ void InsetRef::validate(LaTeXFeatures & features) const
                features.require("varioref");
        else if (getCmdName() == "prettyref")
                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_("FormatRef: ")},
        { "", "", "" }
 };
 
@@ -130,3 +171,6 @@ string const & InsetRef::getName(int type)
 {
        return types[type].latex_name;
 }
+
+
+} // namespace lyx