]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetlabel.C
parlist-a-1.diff
[lyx.git] / src / insets / insetlabel.C
index 459699b8958f666e1c8f7ff0ec66c5a32ddab274..66963db35005b0d03398cbd7e78de312fdfb6f78 100644 (file)
@@ -45,45 +45,41 @@ vector<string> const InsetLabel::getLabelList() const
 }
 
 
-void InsetLabel::edit(BufferView *, int, int, mouse_button::state)
+void InsetLabel::edit(BufferView * bv, int, int, mouse_button::state)
 {
        InsetCommandMailer mailer("label", *this);
-       mailer.showDialog();
+       mailer.showDialog(bv);
 }
 
 
 dispatch_result InsetLabel::localDispatch(FuncRequest const & cmd)
 {
-       if (cmd.action != LFUN_INSET_APPLY)
-               return UNDISPATCHED;
-
-       InsetCommandParams p;
-       InsetCommandMailer::string2params(cmd.argument, p);
-       if (p.getCmdName().empty())
-               return UNDISPATCHED;
-
-       bool clean = true;
-       if (view() && p.getContents() != params().getContents()) {
-               clean = view()->ChangeCitationsIfUnique(params().getContents(),
-                                                       p.getContents());
+       Inset::RESULT result = UNDISPATCHED;
+
+       switch (cmd.action) {
+       case LFUN_INSET_MODIFY: {
+               InsetCommandParams p;
+               InsetCommandMailer::string2params(cmd.argument, p);
+               if (p.getCmdName().empty())
+                       return UNDISPATCHED;
+
+               bool clean = true;
+               if (view() && p.getContents() != params().getContents()) {
+                       clean = view()->ChangeRefsIfUnique(params().getContents(),
+                                                          p.getContents());
+               }
+
+               setParams(p);
+               cmd.view()->updateInset(this);
+               result = DISPATCHED;
        }
+       break;
 
-       setParams(p);
-       if (view())
-               view()->updateInset(this, !clean);
-
-       return DISPATCHED;
-//     if (result.first) {
-//             string new_contents = trim(result.second);
-//             if (!new_contents.empty() &&
-//                 getContents() != new_contents) {
-//                     bv->buffer()->markDirty();
-//                     bool flag = bv->ChangeRefsIfUnique(getContents(),
-//                                                        new_contents);
-//                     setContents(new_contents);
-//                     bv->updateInset(this, !flag);
-//             }
-//     }
+       default:
+               result = InsetCommand::localDispatch(cmd);
+       }
+
+       return result;
 }
 
 
@@ -100,6 +96,7 @@ int InsetLabel::latex(Buffer const *, ostream & os,
        return 0;
 }
 
+
 int InsetLabel::ascii(Buffer const *, ostream & os, int) const
 {
        os << '<' << getContents()  << '>';