]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetref.C
Final touch 'inset display()'; fix 'is a bit silly' bug
[lyx.git] / src / insets / insetref.C
index 973c5b8490b796ee724dd43d8b4f8f0c498f43c2..959f3e903ce9182c52bba1e7e9b114db7253e30c 100644 (file)
@@ -5,54 +5,66 @@
  *
  * \author José Matos
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 #include <config.h>
 
-
 #include "insetref.h"
+
 #include "buffer.h"
+#include "BufferView.h"
 #include "funcrequest.h"
-#include "debug.h"
 #include "gettext.h"
 #include "LaTeXFeatures.h"
+
 #include "frontends/LyXView.h"
-#include "frontends/Dialogs.h"
-#include "BufferView.h"
+
 #include "support/lstrings.h"
 
+
+using lyx::support::escape;
+
+using std::string;
 using std::ostream;
 
-InsetRef::InsetRef(InsetCommandParams const & p, Buffer const & buf, bool)
+
+InsetRef::InsetRef(InsetCommandParams const & p, Buffer const & buf)
        : InsetCommand(p), isLatex(buf.isLatex())
 {}
 
 
+InsetRef::InsetRef(InsetRef const & ir)
+       : InsetCommand(ir), isLatex(ir.isLatex)
+{
+}
+
+
 InsetRef::~InsetRef()
 {
        InsetCommandMailer("ref", *this).hideDialog();
 }
 
 
-dispatch_result InsetRef::localDispatch(FuncRequest const & cmd)
+dispatch_result
+InsetRef::priv_dispatch(FuncRequest const & cmd, idx_type & idx, pos_type & pos)
 {
        switch (cmd.action) {
-       case LFUN_INSET_EDIT:   
+       case LFUN_INSET_EDIT:
                // Eventually trigger dialog with button 3 not 1
                if (cmd.button() == mouse_button::button3)
                        cmd.view()->owner()->
                                dispatch(FuncRequest(LFUN_REF_GOTO, getContents()));
-               if (cmd.button() == mouse_button::button1)
+               else
                        InsetCommandMailer("ref", *this).showDialog(cmd.view());
                return DISPATCHED;
-       
+
        default:
-               return UNDISPATCHED;
+               return InsetCommand::priv_dispatch(cmd, idx, pos);
        }
 }
 
 
-string const InsetRef::getScreenLabel(Buffer const *) const
+string const InsetRef::getScreenLabel(Buffer const &) const
 {
        string temp;
        for (int i = 0; !types[i].latex_name.empty(); ++ i)
@@ -71,8 +83,8 @@ string const InsetRef::getScreenLabel(Buffer const *) const
 }
 
 
-int InsetRef::latex(Buffer const *, ostream & os, LatexRunParams const &,
-                   bool /*fs*/) const
+int InsetRef::latex(Buffer const &, ostream & os,
+                   LatexRunParams const &) const
 {
        if (getOptions().empty())
                os << escape(getCommand());
@@ -84,14 +96,14 @@ int InsetRef::latex(Buffer const *, ostream & os, LatexRunParams const &,
 }
 
 
-int InsetRef::ascii(Buffer const *, ostream & os, int) const
+int InsetRef::ascii(Buffer const &, ostream & os, int) const
 {
        os << '[' << getContents() << ']';
        return 0;
 }
 
 
-int InsetRef::linuxdoc(Buffer const *, ostream & os) const
+int InsetRef::linuxdoc(Buffer const &, ostream & os) const
 {
        os << "<ref id=\"" << getContents()
           << "\" name=\"" << getOptions() << "\" >";
@@ -99,7 +111,7 @@ int InsetRef::linuxdoc(Buffer const *, ostream & os) const
 }
 
 
-int InsetRef::docbook(Buffer const *, ostream & os, bool) const
+int InsetRef::docbook(Buffer const &, ostream & os, bool) const
 {
        if (getOptions().empty()) {
                os << "<xref linkend=\"" << getContents() << "\">";
@@ -118,6 +130,8 @@ void InsetRef::validate(LaTeXFeatures & features) const
                features.require("varioref");
        else if (getCmdName() == "prettyref")
                features.require("prettyref");
+       else if (getCmdName() == "eqref")
+               features.require("amsmath");
 }