X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathRef.cpp;h=ef08cbcd3d0610d95c8b9446e85b5959261822fe;hb=cdc847fd304019a19425a0d5d9d42a556a937097;hp=9df6eaa04dd1fa9ba437593bed1094ed12e2815c;hpb=fe9a43f44b7265efa84da4bb2da9d8161698c798;p=lyx.git diff --git a/src/mathed/InsetMathRef.cpp b/src/mathed/InsetMathRef.cpp index 9df6eaa04d..ef08cbcd3d 100644 --- a/src/mathed/InsetMathRef.cpp +++ b/src/mathed/InsetMathRef.cpp @@ -18,11 +18,12 @@ #include "FuncRequest.h" #include "FuncStatus.h" #include "LaTeXFeatures.h" -#include "LyXFunc.h" +#include "LyX.h" #include "MathData.h" #include "MathFactory.h" #include "MathSupport.h" #include "OutputParams.h" +#include "ParIterator.h" #include "sgml.h" #include "insets/InsetCommand.h" @@ -60,11 +61,12 @@ void InsetMathRef::infoize(odocstream & os) const void InsetMathRef::doDispatch(Cursor & cur, FuncRequest & cmd) { - switch (cmd.action) { + switch (cmd.action()) { case LFUN_INSET_MODIFY: if (cmd.getArg(0) == "ref") { MathData ar; if (createInsetMath_fromDialogStr(cmd.argument(), ar)) { + cur.recordUndo(); *this = *ar[0].nucleus()->asRefInset(); break; } @@ -73,7 +75,7 @@ void InsetMathRef::doDispatch(Cursor & cur, FuncRequest & cmd) break; case LFUN_INSET_DIALOG_UPDATE: { - string const data = createDialogStr("ref"); + string const data = createDialogStr(); cur.bv().updateDialog("ref", data); break; } @@ -87,7 +89,7 @@ void InsetMathRef::doDispatch(Cursor & cur, FuncRequest & cmd) } if (cmd.button() == mouse_button::button1) { // Eventually trigger dialog with button 3, not 1 - string const data = createDialogStr("ref"); + string const data = createDialogStr(); cur.bv().showDialog("ref", data, this); break; } @@ -109,7 +111,7 @@ void InsetMathRef::doDispatch(Cursor & cur, FuncRequest & cmd) bool InsetMathRef::getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus & status) const { - switch (cmd.action) { + switch (cmd.action()) { // we handle these case LFUN_INSET_MODIFY: case LFUN_INSET_DIALOG_UPDATE: @@ -175,13 +177,47 @@ int InsetMathRef::docbook(odocstream & os, OutputParams const & runparams) const } -string const InsetMathRef::createDialogStr(string const & name) const +void InsetMathRef::updateBuffer(ParIterator const & it, UpdateType /*utype*/) +{ + if (!buffer_) { + LYXERR0("InsetMathRef::updateBuffer: no buffer_!"); + return; + } + // register this inset into the buffer reference cache. + buffer().addReference(getTarget(), this, it); +} + + +string const InsetMathRef::createDialogStr() const { InsetCommandParams icp(REF_CODE, to_ascii(commandname())); icp["reference"] = asString(cell(0)); if (!cell(1).empty()) icp["name"] = asString(cell(1)); - return InsetCommand::params2string(name, icp); + return InsetCommand::params2string(icp); +} + + +docstring const InsetMathRef::getTarget() const +{ + return asString(cell(0)); +} + + +void InsetMathRef::changeTarget(docstring const & target) +{ + InsetCommandParams icp(REF_CODE, to_ascii(commandname())); + icp["reference"] = target; + if (!cell(1).empty()) + icp["name"] = asString(cell(1)); + MathData ar; + Buffer & buf = buffer(); + if (createInsetMath_fromDialogStr( + from_utf8(InsetCommand::params2string(icp)), ar)) { + *this = *ar[0].nucleus()->asRefInset(); + // FIXME audit setBuffer calls + setBuffer(buf); + } }