]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetbibitem.C
Rename LatexRunParams::fragile as moving_arg.
[lyx.git] / src / insets / insetbibitem.C
index 2e569cd0485ef8573eede8d8de08f8ec95b52d8d..37372d16769fb8174b855eba6119f6a1bf2afc14 100644 (file)
 #include "insetbibitem.h"
 #include "buffer.h"
 #include "BufferView.h"
+#include "funcrequest.h"
 #include "lyxlex.h"
 
 #include "frontends/font_metrics.h"
-#include "frontends/LyXView.h"
-#include "frontends/Dialogs.h"
 
+#include "support/tostr.h"
 #include "support/lstrings.h"
 
 
@@ -27,6 +27,7 @@ using std::max;
 int InsetBibitem::key_counter = 0;
 const string key_prefix = "key-";
 
+
 InsetBibitem::InsetBibitem(InsetCommandParams const & p)
        : InsetCommand(p), counter(1)
 {
@@ -35,6 +36,13 @@ InsetBibitem::InsetBibitem(InsetCommandParams const & p)
 }
 
 
+InsetBibitem::~InsetBibitem()
+{
+       InsetCommandMailer mailer("bibitem", *this);
+       mailer.hideDialog();
+}
+
+
 Inset * InsetBibitem::clone(Buffer const &, bool) const
 {
        InsetBibitem * b = new InsetBibitem(params());
@@ -43,6 +51,43 @@ Inset * InsetBibitem::clone(Buffer const &, bool) const
 }
 
 
+dispatch_result InsetBibitem::localDispatch(FuncRequest const & cmd)
+{
+       switch (cmd.action) {
+
+       case LFUN_INSET_EDIT:
+               InsetCommandMailer("bibitem", *this).showDialog(cmd.view());
+               return DISPATCHED;
+
+       case LFUN_INSET_MODIFY: {
+               InsetCommandParams p;
+               InsetCommandMailer::string2params(cmd.argument, p);
+               if (p.getCmdName().empty())
+                       return DISPATCHED;
+
+               if (view() && p.getContents() != params().getContents()) {
+                       view()->ChangeCitationsIfUnique(params().getContents(),
+                                                       p.getContents());
+               }
+
+               setParams(p);
+               cmd.view()->updateInset(this);
+
+               // We need to do a redraw because the maximum
+               // InsetBibitem width could have changed
+#warning please check you mean repaint() not update(),
+#warning and whether the repaint() is needed at all
+               cmd.view()->repaint();
+               cmd.view()->fitCursor();
+               return DISPATCHED;
+       }
+
+       default:
+               return InsetCommand::localDispatch(cmd);
+       }
+}
+
+
 void InsetBibitem::setCounter(int c)
 {
        counter = c;
@@ -91,18 +136,6 @@ string const InsetBibitem::getScreenLabel(Buffer const *) const
 }
 
 
-void InsetBibitem::edit(BufferView * bv, int, int, mouse_button::state)
-{
-       bv->owner()->getDialogs().showBibitem(this);
-}
-
-
-void InsetBibitem::edit(BufferView * bv, bool)
-{
-       edit(bv, 0, 0, mouse_button::none);
-}
-
-
 // ale070405 This function maybe shouldn't be here. We'll fix this at 0.13.
 int bibitemMaxWidth(BufferView * bv, LyXFont const & font)
 {