]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetfloatlist.C
Final touch 'inset display()'; fix 'is a bit silly' bug
[lyx.git] / src / insets / insetfloatlist.C
index 3cb79a2c25c2d32143ec42d82ea1d10f3f86f5b5..3926935e897654a293a921e393641bea5eb64c43 100644 (file)
@@ -1,52 +1,95 @@
-#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 "Floating.h"
+#include "FloatList.h"
+#include "funcrequest.h"
+#include "gettext.h"
+#include "LaTeXFeatures.h"
+#include "lyxlex.h"
+#include "metricsinfo.h"
+#include "toc.h"
+
+#include "support/lstrings.h"
+
+using lyx::support::bformat;
 
 using std::endl;
+using std::string;
+using std::ostream;
 
-string const InsetFloatList::getScreenLabel() const 
+
+InsetFloatList::InsetFloatList()
+       : InsetCommand(InsetCommandParams())
+{}
+
+
+InsetFloatList::InsetFloatList(string const & type)
+       : InsetCommand(InsetCommandParams())
 {
-       string const guiName = floatList[float_type]->second.name();
-       if (!guiName.empty()) {
-               string const res = _("List of ") + guiName;
-               return res;
-       }
-       return _("ERROR nonexistant float type!");
+       setCmdName(type);
+}
+
+
+InsetFloatList::~InsetFloatList()
+{
+       InsetCommandMailer mailer("toc", *this);
+       mailer.hideDialog();
 }
 
 
-Inset::Code InsetFloatList::lyxCode() const
+string const InsetFloatList::getScreenLabel(Buffer const & buf) const
 {
-       return Inset::FLOAT_LIST_CODE;
+       FloatList const & floats = buf.params().getLyXTextClass().floats();
+       FloatList::const_iterator it = floats[getCmdName()];
+       if (it != floats.end())
+               return _(it->second.listName());
+       else
+               return _("ERROR: Nonexistent float type!");
 }
 
 
-void InsetFloatList::write(Buffer const *, std::ostream & os) const
+InsetOld::Code InsetFloatList::lyxCode() const
 {
-       os << "FloatList " << float_type << "\n";
+       return InsetOld::FLOAT_LIST_CODE;
 }
 
 
-void InsetFloatList::read(Buffer const *, LyXLex & lex) 
+void InsetFloatList::write(Buffer const &, ostream & os) const
 {
+       os << "FloatList " << getCmdName() << "\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()) {
+               setCmdName(lex.getString());
+               lyxerr[Debug::INSETS] << "FloatList::float_type: " << getCmdName() << endl;
+               if (!floats.typeExist(getCmdName()))
+                       lex.printError("InsetFloatList: Unknown float type: `$$Token'");
        } else
                lex.printError("InsetFloatList: Parse error: `$$Token'");
-       while (lex.IsOK()) {
+       while (lex.isOK()) {
                lex.nextToken();
-               token = lex.GetString();
+               token = lex.getString();
                if (token == "\\end_inset")
                        break;
        }
@@ -57,29 +100,51 @@ void InsetFloatList::read(Buffer const *, LyXLex & lex)
 }
 
 
-void InsetFloatList::edit(BufferView *, int, int, unsigned int)
+void InsetFloatList::metrics(MetricsInfo & mi, Dimension & dim) const
+{
+       InsetCommand::metrics(mi, dim);
+       int center_indent = (mi.base.textwidth - dim.wid) / 2;
+    Box b(center_indent, center_indent + dim.wid, -dim.asc, dim.des);
+       button().setBox(b);
+
+       dim.wid = mi.base.textwidth;
+       dim_ = dim;
+}
+
+
+void InsetFloatList::draw(PainterInfo & pi, int x, int y) const
 {
-#ifdef WITH_WARNINGS
-#warning Implement me please.
-#endif
-#if 0
-       bv->owner()->getDialogs()->showFloatList(this);
-#endif
+       InsetCommand::draw(pi, x + button().box().x1, y);
 }
 
 
-void InsetFloatList::edit(BufferView * bv, bool)
+dispatch_result
+InsetFloatList::priv_dispatch(FuncRequest const & cmd,
+                             idx_type & idx, pos_type & pos)
 {
-       edit(bv, 0, 0, 0);
+       switch (cmd.action) {
+               case LFUN_MOUSE_RELEASE:
+                       if (button().box().contains(cmd.x, cmd.y))
+                               InsetCommandMailer("toc", *this).showDialog(cmd.view());
+                       return DISPATCHED;
+
+               case LFUN_INSET_DIALOG_SHOW:
+                       InsetCommandMailer("toc", *this).showDialog(cmd.view());
+                       return DISPATCHED;
+
+               default:
+                       return InsetCommand::priv_dispatch(cmd, idx, pos);
+       }
 }
 
 
-int InsetFloatList::latex(Buffer const *, std::ostream & os, bool, bool) const
+int InsetFloatList::latex(Buffer const & buf, ostream & os,
+                         LatexRunParams const &) const
 {
-       FloatList::const_iterator cit = floatList[float_type];
+       FloatList const & floats = buf.params().getLyXTextClass().floats();
+       FloatList::const_iterator cit = floats[getCmdName()];
 
-       
-       if (cit != floatList.end()) {
+       if (cit != floats.end()) {
                if (cit->second.builtin()) {
                        // Only two different types allowed here:
                        string const type = cit->second.type();
@@ -91,32 +156,30 @@ int InsetFloatList::latex(Buffer const *, std::ostream & os, bool, bool) const
                                os << "%% unknown builtin float\n";
                        }
                } else {
-                       os << "\\listof{" << float_type << "}{"
-                          << _("List of ") << cit->second.name() << "}\n";
+                       os << "\\listof{" << getCmdName() << "}{"
+                          << cit->second.listName() << "}\n";
                }
        } else {
-               os << "%%\\listof{" << float_type << "}{"
-                  << _("List of ") << cit->second.name() << "}\n";
+               os << "%%\\listof{" << getCmdName() << "}{"
+                  << bformat(_("List of %1$s"), cit->second.name())
+                  << "}\n";
        }
        return 1;
 }
 
 
-int InsetFloatList::ascii(Buffer const * buffer, std::ostream & os, int) const
+int InsetFloatList::ascii(Buffer const & buffer, ostream & os, int) 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";
+
+       lyx::toc::asciiTocList(getCmdName(), buffer, os);
 
        os << "\n";
        return 0;
 }
+
+
+void InsetFloatList::validate(LaTeXFeatures & features) const
+{
+       features.useFloat(getCmdName());
+}