]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetindex.C
Clean up InsetGraphics::Cache and rename as GraphicsInset.
[lyx.git] / src / insets / insetindex.C
index 3f66ba35099361f26ca409a3f562f186ed3762bd..47eb3810c98fca145d89cd9d2c731ac2b1a829f3 100644 (file)
@@ -1,11 +1,18 @@
+/**
+ * \file insetindex.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author Lars Gullik Bjønnes
+ *
+ * Full author contact details are available in file CREDITS
+ */
 #include <config.h>
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
 
 #include "insetindex.h"
 #include "BufferView.h"
+#include "funcrequest.h"
 #include "frontends/LyXView.h"
 #include "frontends/Dialogs.h"
 #include "LaTeXFeatures.h"
 
 using std::ostream;
 
-InsetIndex::InsetIndex(InsetCommandParams const & p, bool)
+InsetIndex::InsetIndex(InsetCommandParams const & p)
        : InsetCommand(p)
 {}
 
 
-string const InsetIndex::getScreenLabel(Buffer const *) const
+// InsetIndex::InsetIndex(InsetCommandParams const & p, bool)
+//     : InsetCommand(p, false)
+// {}
+
+
+InsetIndex::~InsetIndex()
 {
-       return _("Idx");
+       InsetCommandMailer mailer("index", *this);
+       mailer.hideDialog();
 }
 
 
-void InsetIndex::edit(BufferView * bv, int, int, mouse_button::state)
+string const InsetIndex::getScreenLabel(Buffer const *) const
 {
-       bv->owner()->getDialogs()->showIndex(this);
+       return _("Idx");
 }
 
 
-void InsetIndex::edit(BufferView * bv, bool)
+dispatch_result InsetIndex::localDispatch(FuncRequest const & cmd)
 {
-       edit(bv, 0, 0, mouse_button::none);
+       switch (cmd.action) {
+               case LFUN_INSET_EDIT:
+                       InsetCommandMailer("index", *this).showDialog(cmd.view());
+                       return DISPATCHED;
+
+               default:
+                       return InsetCommand::localDispatch(cmd);
+       }
 }
 
 
@@ -51,11 +71,21 @@ Inset::Code InsetIndex::lyxCode() const
 }
 
 
-InsetPrintIndex::InsetPrintIndex(InsetCommandParams const & p, bool)
+
+InsetPrintIndex::InsetPrintIndex(InsetCommandParams const & p)
        : InsetCommand(p)
 {}
 
 
+// InsetPrintIndex::InsetPrintIndex(InsetCommandParams const & p, bool)
+//     : InsetCommand(p, false)
+// {}
+
+
+InsetPrintIndex::~InsetPrintIndex()
+{}
+
+
 string const InsetPrintIndex::getScreenLabel(Buffer const *) const
 {
        return _("Index");