]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetfloatlist.C
* src/LyXAction.C: mark goto-clear-bookmark as working without buffer
[lyx.git] / src / insets / insetfloatlist.C
index eea56091cc6e0819b53fb7c11546f263f9f68886..6d11d93aa0b04536dff1d1ac6322ef0f12bc5ec1 100644 (file)
@@ -5,86 +5,88 @@
  *
  * \author Lars Gullik Bjønnes
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
-#include <config.h>
 
+#include <config.h>
 
 #include "insetfloatlist.h"
+
+#include "buffer.h"
+#include "bufferparams.h"
+#include "debug.h"
+#include "dispatchresult.h"
+#include "Floating.h"
 #include "FloatList.h"
+#include "funcrequest.h"
+#include "gettext.h"
 #include "LaTeXFeatures.h"
 #include "lyxlex.h"
-#include "frontends/Dialogs.h"
-#include "frontends/LyXView.h"
-#include "BufferView.h"
-#include "buffer.h"
-#include "toc.h"
-#include "gettext.h"
-#include "debug.h"
+#include "metricsinfo.h"
+#include "TocBackend.h"
 
-#include "BoostFormat.h"
+#include "support/lstrings.h"
+
+
+namespace lyx {
+
+using support::bformat;
 
-using std::ostream;
 using std::endl;
+using std::string;
+using std::ostream;
 
 
 InsetFloatList::InsetFloatList()
-       : InsetCommand(InsetCommandParams())
-{
-}
+       : InsetCommand(InsetCommandParams("floatlist"), "toc")
+{}
 
 
 InsetFloatList::InsetFloatList(string const & type)
-       : InsetCommand(InsetCommandParams())
+       : InsetCommand(InsetCommandParams("floatlist"), "toc")
 {
-       setCmdName(type);
+       setParam("type", from_ascii(type));
 }
 
 
-InsetFloatList::~InsetFloatList()
+docstring const InsetFloatList::getScreenLabel(Buffer const & buf) const
 {
-       InsetCommandMailer mailer("toc", *this);
-       mailer.hideDialog();
-}
-
-
-string const InsetFloatList::getScreenLabel(Buffer const * buf) const
-{
-       FloatList const & floats = buf->params.getLyXTextClass().floats();
-       FloatList::const_iterator it = floats[getCmdName()];
+       FloatList const & floats = buf.params().getLyXTextClass().floats();
+       FloatList::const_iterator it = floats[to_ascii(getParam("type"))];
        if (it != floats.end())
-               return _(it->second.listName());
+               return buf.B_(it->second.listName());
        else
                return _("ERROR: Nonexistent float type!");
 }
 
 
-Inset::Code InsetFloatList::lyxCode() const
+InsetBase::Code InsetFloatList::lyxCode() const
 {
-       return Inset::FLOAT_LIST_CODE;
+       return InsetBase::FLOAT_LIST_CODE;
 }
 
 
-void InsetFloatList::write(Buffer const *, ostream & os) const
+void InsetFloatList::write(Buffer const &, ostream & os) const
 {
-       os << "FloatList " << getCmdName() << "\n";
+       os << "FloatList " << to_ascii(getParam("type")) << "\n";
 }
 
 
-void InsetFloatList::read(Buffer const * buf, LyXLex & lex)
+void InsetFloatList::read(Buffer const & buf, LyXLex & lex)
 {
-       FloatList const & floats = buf->params.getLyXTextClass().floats();
+       FloatList const & floats = buf.params().getLyXTextClass().floats();
        string token;
 
        if (lex.eatLine()) {
-               setCmdName(lex.getString());
-               lyxerr[Debug::INSETS] << "FloatList::float_type: " << getCmdName() << endl;
-               if (!floats.typeExist(getCmdName()))
+               setParam("type", lex.getDocString());
+               lyxerr[Debug::INSETS] << "FloatList::float_type: "
+                                     << to_ascii(getParam("type")) << endl;
+               if (!floats.typeExist(to_ascii(getParam("type"))))
                        lex.printError("InsetFloatList: Unknown float type: `$$Token'");
        } else
                lex.printError("InsetFloatList: Parse error: `$$Token'");
        while (lex.isOK()) {
-               lex.nextToken();
+               lex.next();
                token = lex.getString();
                if (token == "\\end_inset")
                        break;
@@ -96,23 +98,11 @@ void InsetFloatList::read(Buffer const * buf, LyXLex & lex)
 }
 
 
-void InsetFloatList::edit(BufferView * bv, int, int, mouse_button::state)
+int InsetFloatList::latex(Buffer const & buf, odocstream & os,
+                         OutputParams const &) const
 {
-       InsetCommandMailer mailer("toc", *this);
-       mailer.showDialog(bv);
-}
-
-
-void InsetFloatList::edit(BufferView * bv, bool)
-{
-       edit(bv, 0, 0, mouse_button::none);
-}
-
-
-int InsetFloatList::latex(Buffer const * buf, ostream & os, bool, bool) const
-{
-       FloatList const & floats = buf->params.getLyXTextClass().floats();
-       FloatList::const_iterator cit = floats[getCmdName()];
+       FloatList const & floats = buf.params().getLyXTextClass().floats();
+       FloatList::const_iterator cit = floats[to_ascii(getParam("type"))];
 
        if (cit != floats.end()) {
                if (cit->second.builtin()) {
@@ -126,33 +116,24 @@ int InsetFloatList::latex(Buffer const * buf, ostream & os, bool, bool) const
                                os << "%% unknown builtin float\n";
                        }
                } else {
-                       os << "\\listof{" << getCmdName() << "}{"
-                          << cit->second.listName() << "}\n";
+                       os << "\\listof{" << getParam("type") << "}{"
+                          << buf.B_(cit->second.listName()) << "}\n";
                }
        } else {
-#if USE_BOOST_FORMAT
-               os << "%%\\listof{"
-                  << getCmdName()
-                  << "}{"
-                  << boost::format(_("List of %1$s")) % cit->second.name()
+               os << "%%\\listof{" << getParam("type") << "}{"
+                  << bformat(_("List of %1$s"), from_utf8(cit->second.name()))
                   << "}\n";
-#else
-               os << "%%\\listof{"
-                  << getCmdName()
-                  << "}{"
-                  << _("List of ") << cit->second.name()
-                  << "}\n";
-#endif
        }
        return 1;
 }
 
 
-int InsetFloatList::ascii(Buffer const * buffer, ostream & os, int) const
+int InsetFloatList::plaintext(Buffer const & buffer, odocstream & os,
+                              OutputParams const &) const
 {
        os << getScreenLabel(buffer) << "\n\n";
 
-       toc::asciiTocList(getCmdName(), buffer, os);
+       buffer.tocBackend().writePlaintextTocList(to_ascii(getParam("type")), os);
 
        os << "\n";
        return 0;
@@ -161,5 +142,8 @@ int InsetFloatList::ascii(Buffer const * buffer, ostream & os, int) const
 
 void InsetFloatList::validate(LaTeXFeatures & features) const
 {
-       features.useFloat(getCmdName());
+       features.useFloat(to_ascii(getParam("type")));
 }
+
+
+} // namespace lyx