]> 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 63b0ba6bcf00580af63b7e2f0049ac571805aa0b..6d11d93aa0b04536dff1d1ac6322ef0f12bc5ec1 100644 (file)
@@ -1,51 +1,93 @@
-#include <config.h>
+/**
+ * \file insetfloatlist.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author Lars Gullik Bjønnes
+ *
+ * Full author contact details are available in file CREDITS.
+ */
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
+#include <config.h>
 
 #include "insetfloatlist.h"
-#include "FloatList.h"
+
 #include "buffer.h"
-#include "gettext.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 "metricsinfo.h"
+#include "TocBackend.h"
+
+#include "support/lstrings.h"
 
 
-string const InsetFloatList::getScreenLabel() const 
+namespace lyx {
+
+using support::bformat;
+
+using std::endl;
+using std::string;
+using std::ostream;
+
+
+InsetFloatList::InsetFloatList()
+       : InsetCommand(InsetCommandParams("floatlist"), "toc")
+{}
+
+
+InsetFloatList::InsetFloatList(string const & type)
+       : InsetCommand(InsetCommandParams("floatlist"), "toc")
 {
-       string const guiName = floatList[float_type]->second.name();
-       if (!guiName.empty()) {
-               string const res = _("List of ") + guiName;
-               return res;
-       }
-       return _("ERROR nonexistant float type!");
+       setParam("type", from_ascii(type));
 }
 
 
-Inset::Code InsetFloatList::LyxCode() const
+docstring const InsetFloatList::getScreenLabel(Buffer const & buf) const
 {
-       return Inset::FLOAT_LIST_CODE;
+       FloatList const & floats = buf.params().getLyXTextClass().floats();
+       FloatList::const_iterator it = floats[to_ascii(getParam("type"))];
+       if (it != floats.end())
+               return buf.B_(it->second.listName());
+       else
+               return _("ERROR: Nonexistent float type!");
 }
 
 
-void InsetFloatList::Write(Buffer const *, ostream & os) const
+InsetBase::Code InsetFloatList::lyxCode() const
 {
-       os << "FloatList " << float_type << "\n";
+       return InsetBase::FLOAT_LIST_CODE;
 }
 
 
-void InsetFloatList::Read(Buffer const *, LyXLex & lex) 
+void InsetFloatList::write(Buffer const &, ostream & os) const
 {
+       os << "FloatList " << to_ascii(getParam("type")) << "\n";
+}
+
+
+void InsetFloatList::read(Buffer const & buf, LyXLex & lex)
+{
+       FloatList const & floats = buf.params().getLyXTextClass().floats();
        string token;
 
-       if (lex.EatLine()) {
-               float_type = lex.GetString();
-               lyxerr << "FloatList::float_type: " << float_type << endl;
+       if (lex.eatLine()) {
+               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();
-               token = lex.GetString();
+       while (lex.isOK()) {
+               lex.next();
+               token = lex.getString();
                if (token == "\\end_inset")
                        break;
        }
@@ -56,23 +98,13 @@ void InsetFloatList::Read(Buffer const *, LyXLex & lex)
 }
 
 
-void InsetFloatList::Edit(BufferView *, int, int, unsigned int)
-{
-#ifdef WITH_WARNINGS
-#warning Implement me please.
-#endif
-#if 0
-       bv->owner()->getDialogs()->showFloatList(this);
-#endif
-}
-
-
-int InsetFloatList::Latex(Buffer const *, ostream & os, bool, bool) const
+int InsetFloatList::latex(Buffer const & buf, odocstream & os,
+                         OutputParams const &) const
 {
-       FloatList::const_iterator cit = floatList[float_type];
+       FloatList const & floats = buf.params().getLyXTextClass().floats();
+       FloatList::const_iterator cit = floats[to_ascii(getParam("type"))];
 
-       
-       if (cit != floatList.end()) {
+       if (cit != floats.end()) {
                if (cit->second.builtin()) {
                        // Only two different types allowed here:
                        string const type = cit->second.type();
@@ -84,32 +116,34 @@ int InsetFloatList::Latex(Buffer const *, ostream & os, bool, bool) const
                                os << "%% unknown builtin float\n";
                        }
                } else {
-                       os << "\\listof{" << float_type << "}{"
-                          << _("List of ") << cit->second.name() << "}\n";
+                       os << "\\listof{" << getParam("type") << "}{"
+                          << buf.B_(cit->second.listName()) << "}\n";
                }
        } else {
-               os << "%%\\listof{" << float_type << "}{"
-                  << _("List of ") << cit->second.name() << "}\n";
+               os << "%%\\listof{" << getParam("type") << "}{"
+                  << bformat(_("List of %1$s"), from_utf8(cit->second.name()))
+                  << "}\n";
        }
        return 1;
 }
 
 
-int InsetFloatList::Ascii(Buffer const * buffer, std::ostream & os, int) const
+int InsetFloatList::plaintext(Buffer const & buffer, odocstream & os,
+                              OutputParams const &) const
 {
-       os << getScreenLabel() << "\n\n";
-
-       Buffer::Lists const toc_list = buffer->getLists();
-       Buffer::Lists::const_iterator cit =
-               toc_list.find(float_type);
-       if (cit != toc_list.end()) {
-               Buffer::SingleList::const_iterator ccit = cit->second.begin();
-               Buffer::SingleList::const_iterator end = cit->second.end();
-               for (; ccit != end; ++ccit)
-                       os << string(4 * ccit->depth, ' ')
-                          << ccit->str << "\n";
-       }
+       os << getScreenLabel(buffer) << "\n\n";
+
+       buffer.tocBackend().writePlaintextTocList(to_ascii(getParam("type")), os);
 
        os << "\n";
        return 0;
 }
+
+
+void InsetFloatList::validate(LaTeXFeatures & features) const
+{
+       features.useFloat(to_ascii(getParam("type")));
+}
+
+
+} // namespace lyx