]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetref.C
fix #832
[lyx.git] / src / insets / insetref.C
index 826de684007fb6188dc8d5db6a4d9c699792da31..0231e58d7b871d1c9cfa926aaacc17ad6203d070 100644 (file)
@@ -1,18 +1,23 @@
+/**
+ * \file insetref.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author José Matos
+ *
+ * Full author contact details are available in file CREDITS
+ */
 #include <config.h>
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
 
 #include "insetref.h"
 #include "buffer.h"
-#include "commandtags.h"
+#include "funcrequest.h"
 #include "debug.h"
 #include "gettext.h"
 #include "LaTeXFeatures.h"
 #include "frontends/LyXView.h"
 #include "frontends/Dialogs.h"
-#include "lyxfunc.h"
 #include "BufferView.h"
 #include "support/lstrings.h"
 
@@ -22,19 +27,28 @@ InsetRef::InsetRef(InsetCommandParams const & p, Buffer const & buf, bool)
        : InsetCommand(p), isLatex(buf.isLatex())
 {}
 
-void InsetRef::edit(BufferView * bv, int, int, mouse_button::state button)
+
+InsetRef::~InsetRef()
 {
-       // Eventually trigger dialog with button 3 not 1
-       if (button == mouse_button::button3)
-               bv->owner()->getLyXFunc()->
-                       dispatch(LFUN_REF_GOTO, getContents());
-       else if (button == mouse_button::button1)
-               bv->owner()->getDialogs()->showRef(this);
+       InsetCommandMailer("ref", *this).hideDialog();
 }
 
 
-void InsetRef::edit(BufferView *, bool)
+dispatch_result InsetRef::localDispatch(FuncRequest const & cmd)
 {
+       switch (cmd.action) {
+       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)
+                       InsetCommandMailer("ref", *this).showDialog(cmd.view());
+               return DISPATCHED;
+       
+       default:
+               return UNDISPATCHED;
+       }
 }
 
 
@@ -72,7 +86,7 @@ int InsetRef::latex(Buffer const *, ostream & os,
 
 int InsetRef::ascii(Buffer const *, ostream & os, int) const
 {
-       os << "[" << getContents() << "]";
+       os << '[' << getContents() << ']';
        return 0;
 }
 
@@ -106,12 +120,14 @@ void InsetRef::validate(LaTeXFeatures & features) const
                features.require("prettyref");
 }
 
+
 InsetRef::type_info InsetRef::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: ")},
        { "", "", "" }
 };