X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetlabel.C;h=3d995c3ea0085da9053c82672d54dbf8df5de48e;hb=e28331ed63062dea10d0a21b9ec12034b4b17b9a;hp=b989b6520ad6aab6537288dd907b9aded5ed8c03;hpb=19f83569df43f11957287c378fbc3b40a003f17c;p=lyx.git diff --git a/src/insets/insetlabel.C b/src/insets/insetlabel.C index b989b6520a..3d995c3ea0 100644 --- a/src/insets/insetlabel.C +++ b/src/insets/insetlabel.C @@ -5,103 +5,110 @@ * * \author Lars Gullik Bjønnes * - * Full author contact details are available in file CREDITS + * Full author contact details are available in file CREDITS. */ #include - #include "insetlabel.h" + #include "buffer.h" #include "BufferView.h" +#include "dispatchresult.h" #include "funcrequest.h" -#include "gettext.h" +#include "InsetList.h" #include "lyxtext.h" +#include "paragraph.h" +#include "pariterator.h" +#include "sgml.h" #include "support/lstrings.h" -#include "support/LOstream.h" -#include "support/lstrings.h" //frontStrip, strip +#include "support/lyxalgo.h" +#include "support/std_ostream.h" + + +namespace lyx { -using namespace lyx::support; +using support::escape; +using std::string; using std::ostream; using std::vector; -using std::pair; InsetLabel::InsetLabel(InsetCommandParams const & p) - : InsetCommand(p) + : InsetCommand(p, "label") {} -InsetLabel::~InsetLabel() +std::auto_ptr InsetLabel::doClone() const { - InsetCommandMailer("label", *this).hideDialog(); + return std::auto_ptr(new InsetLabel(params())); } -void InsetLabel::getLabelList(std::vector & list) const +void InsetLabel::getLabelList(Buffer const &, std::vector & list) const { - list.push_back(getContents()); + list.push_back(getParam("name")); } -dispatch_result InsetLabel::localDispatch(FuncRequest const & cmd) +docstring const InsetLabel::getScreenLabel(Buffer const &) const { - switch (cmd.action) { + return getParam("name"); +} - case LFUN_INSET_EDIT: - InsetCommandMailer("label", *this).showDialog(cmd.view()); - return DISPATCHED; - break; + +void InsetLabel::doDispatch(LCursor & cur, FuncRequest & cmd) +{ + 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()); + InsetCommandParams p("label"); + // FIXME UNICODE + InsetCommandMailer::string2params("label", to_utf8(cmd.argument()), p); + if (p.getCmdName().empty()) { + cur.noUpdate(); + break; } - + if (p["name"] != params()["name"]) + cur.bv().buffer()->changeRefsIfUnique(params()["name"], + p["name"], InsetBase::REF_CODE); setParams(p); - cmd.view()->updateInset(); - return DISPATCHED; + break; } default: - return InsetCommand::localDispatch(cmd); + InsetCommand::doDispatch(cur, cmd); + break; } } -int InsetLabel::latex(Buffer const *, ostream & os, - LatexRunParams const &) const +int InsetLabel::latex(Buffer const &, odocstream & os, + OutputParams const &) const { os << escape(getCommand()); return 0; } -int InsetLabel::ascii(Buffer const *, ostream & os, int) const +int InsetLabel::plaintext(Buffer const &, odocstream & os, + OutputParams const &) const { - os << '<' << getContents() << '>'; + os << '<' << getParam("name") << '>'; return 0; } -int InsetLabel::linuxdoc(Buffer const *, ostream & os) const +int InsetLabel::docbook(Buffer const & buf, odocstream & os, + OutputParams const & runparams) const { - os << "