]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetref.C
Enable convertDefault.sh to run even if its executable bit is not set.
[lyx.git] / src / insets / insetref.C
index 0231e58d7b871d1c9cfa926aaacc17ad6203d070..c4affe9143683c3378234f064257c5691d60b0fb 100644 (file)
@@ -5,7 +5,7 @@
  *
  * \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 "BufferView.h"
 #include "support/lstrings.h"
 
+using namespace lyx::support;
+
 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();
@@ -37,22 +45,22 @@ InsetRef::~InsetRef()
 dispatch_result InsetRef::localDispatch(FuncRequest const & cmd)
 {
        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::localDispatch(cmd);
        }
 }
 
 
-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 +79,8 @@ string const InsetRef::getScreenLabel(Buffer const *) const
 }
 
 
-int InsetRef::latex(Buffer const *, ostream & os,
-                   bool /*fragile*/, bool /*fs*/) const
+int InsetRef::latex(Buffer const &, ostream & os,
+                   LatexRunParams const &) const
 {
        if (getOptions().empty())
                os << escape(getCommand());
@@ -84,14 +92,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() << "\" >";
@@ -99,7 +107,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 +126,8 @@ void InsetRef::validate(LaTeXFeatures & features) const
                features.require("varioref");
        else if (getCmdName() == "prettyref")
                features.require("prettyref");
+       else if (getCmdName() == "eqref")
+               features.require("amsmath");
 }