]> 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 8ade79ede210dcd37323e6c718e37019766015b6..3926935e897654a293a921e393641bea5eb64c43 100644 (file)
@@ -5,27 +5,32 @@
  *
  * \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 "insetfloatlist.h"
+
+#include "buffer.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 "BufferView.h"
-#include "funcrequest.h"
-#include "buffer.h"
+#include "metricsinfo.h"
 #include "toc.h"
-#include "gettext.h"
-#include "debug.h"
-#include "Lsstream.h"
 
 #include "support/lstrings.h"
 
-using std::ostream;
+using lyx::support::bformat;
+
 using std::endl;
+using std::string;
+using std::ostream;
 
 
 InsetFloatList::InsetFloatList()
@@ -47,9 +52,9 @@ InsetFloatList::~InsetFloatList()
 }
 
 
-string const InsetFloatList::getScreenLabel(Buffer const * buf) const
+string const InsetFloatList::getScreenLabel(Buffer const & buf) const
 {
-       FloatList const & floats = buf->params.getLyXTextClass().floats();
+       FloatList const & floats = buf.params().getLyXTextClass().floats();
        FloatList::const_iterator it = floats[getCmdName()];
        if (it != floats.end())
                return _(it->second.listName());
@@ -58,21 +63,21 @@ string const InsetFloatList::getScreenLabel(Buffer const * buf) const
 }
 
 
-Inset::Code InsetFloatList::lyxCode() const
+InsetOld::Code InsetFloatList::lyxCode() const
 {
-       return Inset::FLOAT_LIST_CODE;
+       return InsetOld::FLOAT_LIST_CODE;
 }
 
 
-void InsetFloatList::write(Buffer const *, ostream & os) const
+void InsetFloatList::write(Buffer const &, ostream & os) const
 {
        os << "FloatList " << getCmdName() << "\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()) {
@@ -95,23 +100,48 @@ void InsetFloatList::read(Buffer const * buf, LyXLex & lex)
 }
 
 
-dispatch_result InsetFloatList::localDispatch(FuncRequest const & cmd)
+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
+{
+       InsetCommand::draw(pi, x + button().box().x1, y);
+}
+
+
+dispatch_result
+InsetFloatList::priv_dispatch(FuncRequest const & cmd,
+                             idx_type & idx, pos_type & pos)
 {
        switch (cmd.action) {
-               case LFUN_INSET_EDIT:
+               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::localDispatch(cmd);
+                       return InsetCommand::priv_dispatch(cmd, idx, pos);
        }
 }
 
 
-int InsetFloatList::latex(Buffer const * buf, ostream & os,
-                         LatexRunParams const &,
-                         bool) const
+int InsetFloatList::latex(Buffer const & buf, ostream & os,
+                         LatexRunParams const &) const
 {
-       FloatList const & floats = buf->params.getLyXTextClass().floats();
+       FloatList const & floats = buf.params().getLyXTextClass().floats();
        FloatList::const_iterator cit = floats[getCmdName()];
 
        if (cit != floats.end()) {
@@ -138,11 +168,11 @@ int InsetFloatList::latex(Buffer const * buf, ostream & os,
 }
 
 
-int InsetFloatList::ascii(Buffer const * buffer, ostream & os, int) const
+int InsetFloatList::ascii(Buffer const & buffer, ostream & os, int) const
 {
        os << getScreenLabel(buffer) << "\n\n";
 
-       toc::asciiTocList(getCmdName(), buffer, os);
+       lyx::toc::asciiTocList(getCmdName(), buffer, os);
 
        os << "\n";
        return 0;