X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetlabel.C;h=3d995c3ea0085da9053c82672d54dbf8df5de48e;hb=e28331ed63062dea10d0a21b9ec12034b4b17b9a;hp=675bb0ace516bb0dd168cc9956d2d0d85cc976c4;hpb=34b7650cbbe6a9ed2de812e75771451b8c8fe983;p=lyx.git diff --git a/src/insets/insetlabel.C b/src/insets/insetlabel.C index 675bb0ace5..3d995c3ea0 100644 --- a/src/insets/insetlabel.C +++ b/src/insets/insetlabel.C @@ -26,8 +26,10 @@ #include "support/lyxalgo.h" #include "support/std_ostream.h" -using lyx::docstring; -using lyx::support::escape; + +namespace lyx { + +using support::escape; using std::string; using std::ostream; @@ -45,16 +47,15 @@ std::auto_ptr InsetLabel::doClone() const } -void InsetLabel::getLabelList(Buffer const &, std::vector & list) const +void InsetLabel::getLabelList(Buffer const &, std::vector & list) const { - list.push_back(getContents()); + list.push_back(getParam("name")); } docstring const InsetLabel::getScreenLabel(Buffer const &) const { - // FIXME UNICODE - return lyx::from_utf8(getContents()); + return getParam("name"); } @@ -63,15 +64,16 @@ void InsetLabel::doDispatch(LCursor & cur, FuncRequest & cmd) switch (cmd.action) { case LFUN_INSET_MODIFY: { - InsetCommandParams p; - InsetCommandMailer::string2params("label", lyx::to_utf8(cmd.argument()), p); + InsetCommandParams p("label"); + // FIXME UNICODE + InsetCommandMailer::string2params("label", to_utf8(cmd.argument()), p); if (p.getCmdName().empty()) { cur.noUpdate(); break; } - if (p.getContents() != params().getContents()) - cur.bv().buffer()->changeRefsIfUnique(params().getContents(), - p.getContents(), InsetBase::REF_CODE); + if (p["name"] != params()["name"]) + cur.bv().buffer()->changeRefsIfUnique(params()["name"], + p["name"], InsetBase::REF_CODE); setParams(p); break; } @@ -83,7 +85,7 @@ void InsetLabel::doDispatch(LCursor & cur, FuncRequest & cmd) } -int InsetLabel::latex(Buffer const &, ostream & os, +int InsetLabel::latex(Buffer const &, odocstream & os, OutputParams const &) const { os << escape(getCommand()); @@ -91,18 +93,22 @@ int InsetLabel::latex(Buffer const &, ostream & os, } -int InsetLabel::plaintext(Buffer const &, lyx::odocstream & os, +int InsetLabel::plaintext(Buffer const &, odocstream & os, OutputParams const &) const { - // FIXME UNICODE - os << '<' << lyx::from_utf8(getContents()) << '>'; + os << '<' << getParam("name") << '>'; return 0; } -int InsetLabel::docbook(Buffer const & buf, ostream & os, +int InsetLabel::docbook(Buffer const & buf, odocstream & os, OutputParams const & runparams) const { - os << ""; + os << ""; return 0; } + + +} // namespace lyx