]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetfloatlist.C
parlist-a-1.diff
[lyx.git] / src / insets / insetfloatlist.C
index 6562e74bd2a59ef8ad587cb5ad724f7a42af00b4..3df488deb3ada0c903675a2581c34040081b0d90 100644 (file)
@@ -1,8 +1,14 @@
+/**
+ * \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
+ */
 #include <config.h>
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
 
 #include "insetfloatlist.h"
 #include "FloatList.h"
@@ -16,6 +22,7 @@
 #include "gettext.h"
 #include "debug.h"
 
+#include "support/BoostFormat.h"
 
 using std::ostream;
 using std::endl;
@@ -34,6 +41,13 @@ InsetFloatList::InsetFloatList(string const & type)
 }
 
 
+InsetFloatList::~InsetFloatList()
+{
+       InsetCommandMailer mailer("toc", *this);
+       mailer.hideDialog();
+}
+
+
 string const InsetFloatList::getScreenLabel(Buffer const * buf) const
 {
        FloatList const & floats = buf->params.getLyXTextClass().floats();
@@ -84,7 +98,8 @@ void InsetFloatList::read(Buffer const * buf, LyXLex & lex)
 
 void InsetFloatList::edit(BufferView * bv, int, int, mouse_button::state)
 {
-       bv->owner()->getDialogs().showTOC(this);
+       InsetCommandMailer mailer("toc", *this);
+       mailer.showDialog(bv);
 }
 
 
@@ -115,8 +130,19 @@ int InsetFloatList::latex(Buffer const * buf, ostream & os, bool, bool) const
                           << cit->second.listName() << "}\n";
                }
        } else {
-               os << "%%\\listof{" << getCmdName() << "}{"
-                  << _("List of ") << cit->second.name() << "}\n";
+#if USE_BOOST_FORMAT
+               os << "%%\\listof{"
+                  << getCmdName()
+                  << "}{"
+                  << boost::format(_("List of %1$s")) % cit->second.name()
+                  << "}\n";
+#else
+               os << "%%\\listof{"
+                  << getCmdName()
+                  << "}{"
+                  << _("List of ") << cit->second.name()
+                  << "}\n";
+#endif
        }
        return 1;
 }