]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/ref_inset.C
bug + spped fixes + small stuff
[lyx.git] / src / mathed / ref_inset.C
index 58638c3afcddc501a60a235ac5ba15371bf08d3c..391cffda4960177a9afffea1668c5ada10e4433d 100644 (file)
@@ -1,9 +1,22 @@
+/**
+ * \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_data.h"
 #include "math_factory.h"
 
 #include "BufferView.h"
+#include "cursor.h"
+#include "dispatchresult.h"
 #include "debug.h"
 #include "funcrequest.h"
 #include "math_support.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()
@@ -40,34 +54,42 @@ void RefInset::infoize(std::ostream & os) const
 }
 
 
-dispatch_result
-RefInset::dispatch(FuncRequest const & cmd, idx_type & idx, pos_type & pos)
+DispatchResult RefInset::priv_dispatch(LCursor & cur, FuncRequest const & 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;
-                       }
-                       break;
-               case LFUN_MOUSE_PRESS:
-               case LFUN_MOUSE_MOTION:
-                       // eat other mouse commands
-                       return DISPATCHED;
-               default:
-                       return CommandInset::dispatch(cmd, idx, pos);
+       case LFUN_INSET_MODIFY:
+               if (cmd.getArg(0) == "ref") {
+                       MathArray ar;
+                       if (!createMathInset_fromDialogStr(cmd.argument, ar))
+                               return DispatchResult(false);
+                       *this = *ar[0].nucleus()->asRefInset();
+                       return DispatchResult(true, true);
+               }
+               return DispatchResult(false);
+
+       case LFUN_MOUSE_RELEASE:
+               if (cmd.button() == mouse_button::button3) {
+                       lyxerr << "trying to goto ref" << cell(0) << endl;
+                       cur.bv().dispatch(FuncRequest(LFUN_REF_GOTO, asString(cell(0))));
+                       return DispatchResult(true, true);
+               }
+               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);
+                       return DispatchResult(true, true);
+               }
+               return DispatchResult(false);
+
+       case LFUN_MOUSE_PRESS:
+       case LFUN_MOUSE_MOTION:
+               // eat other mouse commands
+               return DispatchResult(true, true);
+
+       default:
+               return CommandInset::priv_dispatch(cur, cmd);
        }
-       // not our business
-       return UNDISPATCHED;
 }
 
 
@@ -98,14 +120,14 @@ void RefInset::validate(LaTeXFeatures & features) const
 }
 
 
-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)) << "\" >";
@@ -113,7 +135,7 @@ int RefInset::linuxdoc(std::ostream & os) const
 }
 
 
-int RefInset::docbook(std::ostream & os, bool) const
+int RefInset::docbook(std::ostream & os, OutputParams const &) const
 {
        if (cell(1).empty()) {
                os << "<xref linkend=\"" << asString(cell(0)) << "\">";
@@ -126,22 +148,6 @@ 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);
-       return DISPATCHED;
-}
 
 
 RefInset::ref_type_info RefInset::types[] = {