X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetlabel.C;h=3d995c3ea0085da9053c82672d54dbf8df5de48e;hb=e28331ed63062dea10d0a21b9ec12034b4b17b9a;hp=5ce9b705c3c39041de87a96e72fb09135ddaa6b9;hpb=043298544c6338b3de3503876d17054faef149fc;p=lyx.git diff --git a/src/insets/insetlabel.C b/src/insets/insetlabel.C index 5ce9b705c3..3d995c3ea0 100644 --- a/src/insets/insetlabel.C +++ b/src/insets/insetlabel.C @@ -1,102 +1,114 @@ -/* This file is part of - * ====================================================== +/** + * \file insetlabel.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Lars Gullik Bjønnes * - * Copyright 1995 Matthias Ettrich - * Copyright 1995-2001 The LyX Team. - * - * ====================================================== */ + * Full author contact details are available in file CREDITS. + */ #include -#ifdef __GNUG__ -#pragma implementation -#endif - #include "insetlabel.h" -#include "support/LOstream.h" -#include "frontends/Alert.h" -#include "support/lstrings.h" //frontStrip, strip -#include "lyxtext.h" + #include "buffer.h" -#include "gettext.h" #include "BufferView.h" +#include "dispatchresult.h" +#include "funcrequest.h" +#include "InsetList.h" +#include "lyxtext.h" +#include "paragraph.h" +#include "pariterator.h" +#include "sgml.h" + #include "support/lstrings.h" +#include "support/lyxalgo.h" +#include "support/std_ostream.h" + +namespace lyx { + +using support::escape; + +using std::string; using std::ostream; using std::vector; -using std::pair; -/* Label. Used to insert a label automatically */ - -InsetLabel::InsetLabel(InsetCommandParams const & p, bool) - : InsetCommand(p) +InsetLabel::InsetLabel(InsetCommandParams const & p) + : InsetCommand(p, "label") {} -vector const InsetLabel::getLabelList() const +std::auto_ptr InsetLabel::doClone() const { - return vector(1, getContents()); + return std::auto_ptr(new InsetLabel(params())); } -void InsetLabel::edit(BufferView * bv, int, int, mouse_button::state) +void InsetLabel::getLabelList(Buffer const &, std::vector & list) const { - pair result = Alert::askForText(_("Enter label:"), getContents()); - 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); -#if 0 - bv->text->redoParagraph(bv); - if (flag) { - bv->redraw(); - bv->fitCursor(); - } else - bv->update(bv->text, BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE); -#else - bv->updateInset(this, !flag); -#endif - } - } + list.push_back(getParam("name")); } -void InsetLabel::edit(BufferView * bv, bool) +docstring const InsetLabel::getScreenLabel(Buffer const &) const { - edit(bv, 0, 0, mouse_button::none); + return getParam("name"); } -int InsetLabel::latex(Buffer const *, ostream & os, - bool /*fragile*/, bool /*fs*/) const +void InsetLabel::doDispatch(LCursor & cur, FuncRequest & cmd) { - os << escape(getCommand()); - return 0; + switch (cmd.action) { + + case LFUN_INSET_MODIFY: { + 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); + break; + } + + default: + InsetCommand::doDispatch(cur, cmd); + break; + } } -int InsetLabel::ascii(Buffer const *, ostream & os, int) const + +int InsetLabel::latex(Buffer const &, odocstream & os, + OutputParams const &) const { - os << "<" << getContents() << ">"; + os << escape(getCommand()); return 0; } -int InsetLabel::linuxdoc(Buffer const *, ostream & os) const +int InsetLabel::plaintext(Buffer const &, odocstream & os, + OutputParams const &) const { - os << "