]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetlabel.C
* src/LyXAction.C: mark goto-clear-bookmark as working without buffer
[lyx.git] / src / insets / insetlabel.C
index b96d27ef4d8361820cb2f53a65b90a6a63341629..3d995c3ea0085da9053c82672d54dbf8df5de48e 100644 (file)
 
 #include "insetlabel.h"
 
+#include "buffer.h"
 #include "BufferView.h"
 #include "dispatchresult.h"
 #include "funcrequest.h"
-
-#include "frontends/LyXView.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"
 
-using lyx::support::escape;
+
+namespace lyx {
+
+using support::escape;
 
 using std::string;
 using std::ostream;
+using std::vector;
 
 
 InsetLabel::InsetLabel(InsetCommandParams const & p)
-       : InsetCommand(p)
+       : InsetCommand(p, "label")
 {}
 
 
-InsetLabel::~InsetLabel()
-{
-       InsetCommandMailer("label", *this).hideDialog();
-}
-
-
-std::auto_ptr<InsetBase> InsetLabel::clone() const
+std::auto_ptr<InsetBase> InsetLabel::doClone() const
 {
        return std::auto_ptr<InsetBase>(new InsetLabel(params()));
 }
 
 
-void InsetLabel::getLabelList(Buffer const &, std::vector<string> & list) const
+void InsetLabel::getLabelList(Buffer const &, std::vector<docstring> & list) const
 {
-       list.push_back(getContents());
+       list.push_back(getParam("name"));
 }
 
 
-string const InsetLabel::getScreenLabel(Buffer const &) const
+docstring const InsetLabel::getScreenLabel(Buffer const &) const
 {
-       return getContents();
+       return getParam("name");
 }
 
 
-DispatchResult
-InsetLabel::priv_dispatch(FuncRequest const & cmd,
-                         idx_type & idx, pos_type & pos)
+void InsetLabel::doDispatch(LCursor & cur, FuncRequest & cmd)
 {
-       BOOST_ASSERT(cmd.view());
-       BufferView * const bv = cmd.view();
-
        switch (cmd.action) {
 
-       case LFUN_INSET_EDIT:
-               InsetCommandMailer("label", *this).showDialog(bv);
-               return DispatchResult(true, true);
-               break;
-
        case LFUN_INSET_MODIFY: {
-               InsetCommandParams p;
-               InsetCommandMailer::string2params(cmd.argument, p);
-               if (p.getCmdName().empty())
-                       return DispatchResult(false);
-
-               bool clean = true;
-               if (bv && p.getContents() != params().getContents()) {
-                       clean = bv->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);
-               bv->updateInset(this);
-               return DispatchResult(true, true);
+               break;
        }
 
        default:
-               return InsetCommand::priv_dispatch(cmd, idx, pos);
+               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,
-                     LatexRunParams const &) 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,
-                        LatexRunParams const &) const
+int InsetLabel::docbook(Buffer const & buf, odocstream & os,
+                       OutputParams const & runparams) const
 {
-       os << "<label id=\"" << getContents() << "\" >";
+       os << "<!-- anchor id=\""
+           << sgml::cleanID(buf, runparams, getParam("name"))
+           << "\" -->";
        return 0;
 }
 
 
-int InsetLabel::docbook(Buffer const &, ostream & os,
-                       LatexRunParams const &) const
-{
-       os << "<anchor id=\"" << getContents() << "\">";
-       return 0;
-}
+} // namespace lyx