]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/ref_inset.C
Fix math cursor positioning bug
[lyx.git] / src / mathed / ref_inset.C
index 7288930658ced09d0712d815cd59ef1860c155ce..426ba90187b4ca2358da8bcac6e8200b6ae89b5d 100644 (file)
@@ -1,19 +1,37 @@
+/**
+ * \file ref_inset.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author André Pönitz
+ *
+ * Full author contact details are available in file CREDITS.
+ */
 
 #include <config.h>
 
 #include "ref_inset.h"
-#include "math_factory.h"
 
 #include "BufferView.h"
+#include "LaTeXFeatures.h"
+#include "buffer.h"
+#include "cursor.h"
 #include "debug.h"
 #include "funcrequest.h"
 #include "gettext.h"
-#include "LaTeXFeatures.h"
+#include "math_data.h"
+#include "math_factory.h"
+#include "math_support.h"
+#include "outputparams.h"
+#include "sgml.h"
 
 #include "frontends/LyXView.h"
 #include "frontends/Dialogs.h"
 
-#include "support/LOstream.h"
+using std::string;
+using std::auto_ptr;
+using std::endl;
+
 
 
 RefInset::RefInset()
@@ -26,9 +44,9 @@ RefInset::RefInset(string const & data)
 {}
 
 
-MathInset * RefInset::clone() const
+auto_ptr<InsetBase> RefInset::doClone() const
 {
-       return new RefInset(*this);
+       return auto_ptr<InsetBase>(new RefInset(*this));
 }
 
 
@@ -38,42 +56,52 @@ void RefInset::infoize(std::ostream & os) const
 }
 
 
-dispatch_result
-RefInset::dispatch(FuncRequest const & cmd, idx_type & idx, pos_type & pos)
+void RefInset::doDispatch(LCursor & cur, FuncRequest & cmd)
 {
        switch (cmd.action) {
-               case LFUN_MOUSE_RELEASE:
-                       if (cmd.button() == mouse_button::button3) {
-                               lyxerr << "trying to goto ref" << cell(0) << "\n";
-                               cmd.view()->dispatch(FuncRequest(LFUN_REF_GOTO, asString(cell(0))));
-                               return DISPATCHED;
-                       }
-                       if (cmd.button() == mouse_button::button1) {
-                               // Eventually trigger dialog with button 3
-                               // not 1
-                               string const data = createDialogStr("ref");
-                               cmd.view()->owner()->getDialogs().
-                                       show("ref", data, this);
-                               return DISPATCHED;
+       case LFUN_INSET_MODIFY:
+               if (cmd.getArg(0) == "ref") {
+                       MathArray ar;
+                       if (createMathInset_fromDialogStr(cmd.argument, ar)) {
+                               *this = *ar[0].nucleus()->asRefInset();
+                               break;
                        }
+               }
+               cur.undispatched();
+               break;
+
+       case LFUN_MOUSE_RELEASE:
+               if (cmd.button() == mouse_button::button3) {
+                       lyxerr << "trying to goto ref '" << asString(cell(0)) << "'" << endl;
+                       cur.bv().dispatch(FuncRequest(LFUN_REF_GOTO, asString(cell(0))));
                        break;
-               case LFUN_MOUSE_PRESS:
-               case LFUN_MOUSE_MOTION:
-                       // eat other mouse commands
-                       return DISPATCHED;
-               default:
-                       return CommandInset::dispatch(cmd, idx, pos);
+               }
+               if (cmd.button() == mouse_button::button1) {
+                       // Eventually trigger dialog with button 3, not 1
+                       string const data = createDialogStr("ref");
+                       cur.bv().owner()->getDialogs().show("ref", data, this);
+                       break;
+               }
+               cur.undispatched();
+               break;
+
+       case LFUN_MOUSE_PRESS:
+       case LFUN_MOUSE_MOTION:
+               // eat other mouse commands
+               break;
+
+       default:
+               CommandInset::doDispatch(cur, cmd);
+               break;
        }
-       // not our business
-       return UNDISPATCHED;
 }
 
 
-string RefInset::screenLabel() const
+string const RefInset::screenLabel() const
 {
        string str;
        for (int i = 0; !types[i].latex_name.empty(); ++i)
-               if (name_ == types[i].latex_name) {
+               if (commandname() == types[i].latex_name) {
                        str = _(types[i].short_gui_name);
                        break;
                }
@@ -89,34 +117,38 @@ string RefInset::screenLabel() const
 
 void RefInset::validate(LaTeXFeatures & features) const
 {
-       if (name_ == "vref" || name_ == "vpageref")
+       if (commandname() == "vref" || commandname() == "vpageref")
                features.require("varioref");
-       else if (name_ == "prettyref")
+       else if (commandname() == "prettyref")
                features.require("prettyref");
 }
 
 
-int RefInset::ascii(std::ostream & os, int) const
+int RefInset::plaintext(std::ostream & os, OutputParams const &) const
 {
        os << '[' << asString(cell(0)) << ']';
        return 0;
 }
 
 
-int RefInset::linuxdoc(std::ostream & os) const
+int RefInset::linuxdoc(std::ostream & os, OutputParams const &) const
 {
        os << "<ref id=\"" << asString(cell(0))
-          << "\" name=\"" << asString(cell(1)) << "\" >";
+          << "\" name=\"" << asString(cell(1)) << "\">";
        return 0;
 }
 
 
-int RefInset::docbook(std::ostream & os, bool) const
+int RefInset::docbook(Buffer const & buf, std::ostream & os, OutputParams const & runparams) const
 {
        if (cell(1).empty()) {
-               os << "<xref linkend=\"" << asString(cell(0)) << "\">";
+               os << "<xref linkend=\"" << sgml::cleanID(buf, runparams, asString(cell(0)));
+               if (runparams.flavor == OutputParams::XML)
+                       os << "\"/>";
+               else
+                       os << "\">";
        } else {
-               os << "<link linkend=\"" << asString(cell(0))
+               os << "<link linkend=\"" << sgml::cleanID(buf, runparams, asString(cell(0)))
                   << "\">" << asString(cell(1)) << "</link>";
        }
 
@@ -124,29 +156,14 @@ int RefInset::docbook(std::ostream & os, bool) const
 }
 
 
-dispatch_result RefInset::localDispatch(FuncRequest const & cmd)
-{
-       if (cmd.action != LFUN_INSET_MODIFY || cmd.getArg(0) != "ref")
-               return UNDISPATCHED;
-
-       MathArray ar;
-       if (!createMathInset_fromDialogStr(cmd.argument, ar))
-               return UNDISPATCHED;
-
-       *this = *ar[0].nucleus()->asRefInset();
-//     if (cmd.view())
-//                 // This does not compile because updateInset expects
-//                 // an Inset* and 'this' isn't.
-//             cmd.view()->updateInset(this, true);
-       return DISPATCHED;
-}
 
 
 RefInset::ref_type_info RefInset::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: ")},
        { "", "", "" }
 };