]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/ref_inset.C
the DocIterator stuff
[lyx.git] / src / mathed / ref_inset.C
index aec962e78f82d3da9e29f4168c7e414a75c6713c..5089f85ec2be296dde6997044c7e23879043fa1c 100644 (file)
@@ -15,7 +15,7 @@
 #include "math_factory.h"
 
 #include "BufferView.h"
-#include "dispatchresult.h"
+#include "cursor.h"
 #include "debug.h"
 #include "funcrequest.h"
 #include "math_support.h"
 #include "frontends/LyXView.h"
 #include "frontends/Dialogs.h"
 
-
 using std::string;
 using std::auto_ptr;
 using std::endl;
 
 
+
 RefInset::RefInset()
        : CommandInset("ref")
 {}
@@ -53,46 +53,44 @@ void RefInset::infoize(std::ostream & os) const
 }
 
 
-DispatchResult
-RefInset::priv_dispatch(FuncRequest const & cmd,
-                       idx_type & idx, pos_type & pos)
+void RefInset::priv_dispatch(LCursor & cur, FuncRequest const & cmd)
 {
        switch (cmd.action) {
        case LFUN_INSET_MODIFY:
                if (cmd.getArg(0) == "ref") {
                        MathArray ar;
-                       if (!createMathInset_fromDialogStr(cmd.argument, ar))
-                               return DispatchResult(UNDISPATCHED);
-
-                       *this = *ar[0].nucleus()->asRefInset();
-
-                       return DispatchResult(DISPATCHED);
+                       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" << cell(0) << endl;
-                       cmd.view()->dispatch(FuncRequest(LFUN_REF_GOTO, asString(cell(0))));
-                       return DispatchResult(DISPATCHED);
+                       cur.bv().dispatch(FuncRequest(LFUN_REF_GOTO, asString(cell(0))));
+                       break;
                }
                if (cmd.button() == mouse_button::button1) {
-                       // Eventually trigger dialog with button 3
-                       // not 1
+                       // Eventually trigger dialog with button 3, not 1
                        string const data = createDialogStr("ref");
-                       cmd.view()->owner()->getDialogs().
-                               show("ref", data, this);
-                       return DispatchResult(DISPATCHED);
+                       cur.bv().owner()->getDialogs().show("ref", data, this);
+                       break;
                }
+               cur.undispatched();
                break;
+
        case LFUN_MOUSE_PRESS:
        case LFUN_MOUSE_MOTION:
                // eat other mouse commands
-               return DispatchResult(DISPATCHED);
+               break;
+
        default:
-               return CommandInset::priv_dispatch(cmd, idx, pos);
+               CommandInset::priv_dispatch(cur, cmd);
+               break;
        }
-       // not our business
-       return DispatchResult(UNDISPATCHED);
 }
 
 
@@ -123,14 +121,14 @@ void RefInset::validate(LaTeXFeatures & features) const
 }
 
 
-int RefInset::ascii(std::ostream & os, LatexRunParams const &) const
+int RefInset::plaintext(std::ostream & os, OutputParams const &) const
 {
        os << '[' << asString(cell(0)) << ']';
        return 0;
 }
 
 
-int RefInset::linuxdoc(std::ostream & os, LatexRunParams const &) const
+int RefInset::linuxdoc(std::ostream & os, OutputParams const &) const
 {
        os << "<ref id=\"" << asString(cell(0))
           << "\" name=\"" << asString(cell(1)) << "\" >";
@@ -138,7 +136,7 @@ int RefInset::linuxdoc(std::ostream & os, LatexRunParams const &) const
 }
 
 
-int RefInset::docbook(std::ostream & os, LatexRunParams const &) const
+int RefInset::docbook(std::ostream & os, OutputParams const &) const
 {
        if (cell(1).empty()) {
                os << "<xref linkend=\"" << asString(cell(0)) << "\">";