]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetFloatList.cpp
tex2lyx/text.cpp: fix typos
[lyx.git] / src / insets / InsetFloatList.cpp
index 1261e014b2aab9f3e5b7a75eb6f394f564dfb012..5e72ee386fcf30c3921f0f0ae6b352d9f54967fd 100644 (file)
 
 #include "Buffer.h"
 #include "BufferParams.h"
+#include "BufferView.h"
+#include "Cursor.h"
 #include "DispatchResult.h"
 #include "Floating.h"
 #include "FloatList.h"
 #include "Font.h"
+#include "FuncRequest.h"
 #include "Language.h"
 #include "LaTeXFeatures.h"
 #include "Lexer.h"
@@ -79,6 +82,21 @@ docstring InsetFloatList::screenLabel() const
 }
 
 
+void InsetFloatList::doDispatch(Cursor & cur, FuncRequest & cmd) {
+       switch (cmd.action()) {
+       case LFUN_MOUSE_RELEASE:
+               if (!cur.selection() && cmd.button() == mouse_button::button1) {
+                       cur.bv().showDialog("toc", params2string(params()));
+                       cur.dispatched();
+               }
+               break;
+       
+       default:
+               InsetCommand::doDispatch(cur, cmd);
+       }
+}
+
+
 void InsetFloatList::write(ostream & os) const
 {
        os << "FloatList " << to_ascii(getParam("type")) << "\n";
@@ -113,17 +131,19 @@ void InsetFloatList::read(Lexer & lex)
 }
 
 
-int InsetFloatList::latex(odocstream & os, OutputParams const &) const
+void InsetFloatList::latex(otexstream & os, OutputParams const &) const
 {
        FloatList const & floats = buffer().params().documentClass().floats();
        FloatList::const_iterator cit = floats[to_ascii(getParam("type"))];
 
        if (cit != floats.end()) {
                Floating const & fl = cit->second;
-               if (fl.needsFloatPkg())
+               if (fl.usesFloatPkg()) {
+                       docstring const name =
+                               buffer().language()->translateLayout(fl.listName());
                        os << "\\listof{" << getParam("type") << "}{"
-                          << buffer().B_(fl.listName()) << "}\n"; 
-               else {
+                          << name << "}\n";
+               else {
                        if (!fl.listCommand().empty())
                                os << "\\" << from_ascii(fl.listCommand()) << "\n";
                        else 
@@ -132,11 +152,11 @@ int InsetFloatList::latex(odocstream & os, OutputParams const &) const
                                   << "\n";
                }
        } else {
+               string const flName = "List of " + to_utf8(getParam("type"));
+               docstring const name = buffer().language()->translateLayout(flName);
                os << "%%\\listof{" << getParam("type") << "}{"
-                  << bformat(_("List of %1$s"), getParam("type"))
-                  << "}\n";
+                  << name << "}\n";
        }
-       return 1;
 }
 
 
@@ -167,7 +187,7 @@ docstring InsetFloatList::xhtml(XHTMLStream &, OutputParams const &) const {
        // If so, then they should define ListName, as non-builtin floats do, and
        // then we can use that. 
        // Really, all floats should define that.
-       if (!cit->second.needsFloatPkg()) {
+       if (cit->second.isPredefined()) {
                // Only two different types allowed here:
                string const type = cit->second.floattype();
                if (type == "table") {