]> 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 8edc5ec140bdc678a43a80b9a5753f553d2d59cd..959f3e903ce9182c52bba1e7e9b114db7253e30c 100644 (file)
@@ -5,26 +5,29 @@
  *
  * \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 namespace lyx::support;
 
+using lyx::support::escape;
+
+using std::string;
 using std::ostream;
 
+
 InsetRef::InsetRef(InsetCommandParams const & p, Buffer const & buf)
        : InsetCommand(p), isLatex(buf.isLatex())
 {}
@@ -42,7 +45,8 @@ InsetRef::~InsetRef()
 }
 
 
-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:
@@ -55,12 +59,12 @@ dispatch_result InsetRef::localDispatch(FuncRequest const & cmd)
                return DISPATCHED;
 
        default:
-               return InsetCommand::localDispatch(cmd);
+               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)
@@ -79,7 +83,7 @@ string const InsetRef::getScreenLabel(Buffer const *) const
 }
 
 
-int InsetRef::latex(Buffer const *, ostream & os,
+int InsetRef::latex(Buffer const &, ostream & os,
                    LatexRunParams const &) const
 {
        if (getOptions().empty())
@@ -92,14 +96,14 @@ int InsetRef::latex(Buffer const *, ostream & os,
 }
 
 
-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() << "\" >";
@@ -107,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() << "\">";
@@ -126,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");
 }