]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/ref_inset.C
Fix event loop to no longer eat CPU
[lyx.git] / src / mathed / ref_inset.C
index 391cffda4960177a9afffea1668c5ada10e4433d..3d33e8152931e3d9491bc854272063eb9a3314c1 100644 (file)
 #include <config.h>
 
 #include "ref_inset.h"
-#include "math_data.h"
-#include "math_factory.h"
 
 #include "BufferView.h"
+#include "LaTeXFeatures.h"
+#include "buffer.h"
 #include "cursor.h"
-#include "dispatchresult.h"
 #include "debug.h"
 #include "funcrequest.h"
-#include "math_support.h"
+#include "FuncStatus.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"
@@ -42,7 +45,7 @@ RefInset::RefInset(string const & data)
 {}
 
 
-auto_ptr<InsetBase> RefInset::clone() const
+auto_ptr<InsetBase> RefInset::doClone() const
 {
        return auto_ptr<InsetBase>(new RefInset(*this));
 }
@@ -54,41 +57,70 @@ void RefInset::infoize(std::ostream & os) const
 }
 
 
-DispatchResult RefInset::priv_dispatch(LCursor & cur, FuncRequest const & cmd)
+void RefInset::doDispatch(LCursor & cur, FuncRequest & cmd)
 {
        switch (cmd.action) {
        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);
+                       if (createMathInset_fromDialogStr(cmd.argument, ar)) {
+                               *this = *ar[0].nucleus()->asRefInset();
+                               break;
+                       }
                }
-               return DispatchResult(false);
+               cur.undispatched();
+               break;
+
+       case LFUN_INSET_DIALOG_UPDATE: {
+               string const data = createDialogStr("ref");
+               if (cur.bv().owner()->getDialogs().visible("ref"))
+                       cur.bv().owner()->getDialogs().update("ref", data);
+               break;
+       }
 
+       case LFUN_INSET_DIALOG_SHOW:
        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);
+                       lyxerr << "trying to goto ref '" << asString(cell(0)) << "'" << endl;
+                       cur.bv().dispatch(FuncRequest(LFUN_LABEL_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");
                        cur.bv().owner()->getDialogs().show("ref", data, this);
-                       return DispatchResult(true, true);
+                       break;
                }
-               return DispatchResult(false);
+               cur.undispatched();
+               break;
 
        case LFUN_MOUSE_PRESS:
        case LFUN_MOUSE_MOTION:
                // eat other mouse commands
-               return DispatchResult(true, true);
+               break;
 
        default:
-               return CommandInset::priv_dispatch(cur, cmd);
+               CommandInset::doDispatch(cur, cmd);
+               break;
+       }
+}
+
+
+bool RefInset::getStatus(LCursor & cur, FuncRequest const & cmd,
+                         FuncStatus & status) const
+{
+       switch (cmd.action) {
+       // we handle these
+       case LFUN_INSET_MODIFY:
+       case LFUN_INSET_DIALOG_UPDATE:
+       case LFUN_INSET_DIALOG_SHOW:
+       case LFUN_MOUSE_RELEASE:
+       case LFUN_MOUSE_PRESS:
+       case LFUN_MOUSE_MOTION:
+               status.enabled(true);
+               return true;
+       default:
+               return CommandInset::getStatus(cur, cmd, status);
        }
 }
 
@@ -130,17 +162,21 @@ int RefInset::plaintext(std::ostream & os, OutputParams const &) 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, OutputParams const &) 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>";
        }
 
@@ -148,8 +184,6 @@ int RefInset::docbook(std::ostream & os, OutputParams const &) const
 }
 
 
-
-
 RefInset::ref_type_info RefInset::types[] = {
        { "ref",       N_("Standard"),              N_("Ref: ")},
        { "eqref",     N_("Equation"),              N_("EqRef: ")},
@@ -159,3 +193,4 @@ RefInset::ref_type_info RefInset::types[] = {
        { "prettyref", N_("PrettyRef"),             N_("PrettyRef: ")},
        { "", "", "" }
 };
+