]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetcaption.C
Rename LatexRunParams::fragile as moving_arg.
[lyx.git] / src / insets / insetcaption.C
index 1414e2d438de57ba91e6e87124a644a21b5331c3..da5afffce716705b8a31ece1ea912644194283db 100644 (file)
@@ -1,28 +1,29 @@
-/* This file is part of
- * ======================================================
+/**
+ * \file insetcaption.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           LyX, The Document Processor
+ * \author Lars Gullik Bjønnes
  *
- *          Copyright 2000-2001 The LyX Team.
- *
- * ======================================================
+ * Full author contact details are available in file CREDITS
  */
 
 #include <config.h>
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
-
 #include "insetcaption.h"
-#include "Painter.h"
-#include "font.h"
+#include "frontends/Painter.h"
+#include "frontends/font_metrics.h"
 #include "BufferView.h"
+#include "buffer.h"
 #include "FloatList.h"
 #include "insets/insetfloat.h"
+#include "insets/insetwrap.h"
 #include "debug.h"
 #include "gettext.h"
+#include "Lsstream.h"
 #include "support/lstrings.h"
+#include "support/LAssert.h"
+#include "support/BoostFormat.h"
 
 using std::ostream;
 using std::endl;
@@ -66,7 +67,7 @@ string const InsetCaption::editMessage() const
 
 
 void InsetCaption::draw(BufferView * bv, LyXFont const & f,
-                       int baseline, float & x, bool cleared) const
+                       int baseline, float & x) const
 {
        // We must draw the label, we should get the label string
        // from the enclosing float inset.
@@ -78,27 +79,34 @@ void InsetCaption::draw(BufferView * bv, LyXFont const & f,
        // belongs to.
        Inset * i1 = owner();
        Inset * i2 = i1 ? i1->owner() : 0;
-       string const type = static_cast<InsetFloat *>(i2)->type();
-       string const fl = i2 ? floatList.getType(type).name() : N_("Float");
+       string type;
+       if (i2->lyxCode() == FLOAT_CODE)
+               type = static_cast<InsetFloat *>(i2)->params().type;
+       else if (i2->lyxCode() == WRAP_CODE)
+               type = static_cast<InsetWrap *>(i2)->params().type;
+       else
+               lyx::Assert(0);
+
+       FloatList const & floats =
+               bv->buffer()->params.getLyXTextClass().floats();
+       string const fl = i2 ? floats.getType(type).name() : N_("Float");
 
        // Discover the number...
-       // ...
        string const num = "#";
 
        // Generate the label
-       string const label = _(fl) + " " + num + ":";
-
+       string const label = bformat("%1$s %2$s:", _(fl), num);
        Painter & pain = bv->painter();
-       int const w = lyxfont::width(label, f);
+       int const w = font_metrics::width(label, f);
        pain.text(int(x), baseline, label, f);
        x += w;
 
-       InsetText::draw(bv, f, baseline, x, cleared);
+       InsetText::draw(bv, f, baseline, x);
 }
 
 
 int InsetCaption::latex(Buffer const * buf, ostream & os,
-                       bool fragile, bool free_spc) const
+                       LatexRunParams const & runparams) const
 {
        // This is a bit too simplistic to take advantage of
        // caption options we must add more later. (Lgb)
@@ -106,7 +114,7 @@ int InsetCaption::latex(Buffer const * buf, ostream & os,
        // \caption{...}, later we will make it take advantage
        // of the one of the caption packages. (Lgb)
        ostringstream ost;
-       int const l = InsetText::latex(buf, ost, fragile, free_spc);
+       int const l = InsetText::latex(buf, ost, runparams);
        os << "\\caption{" << ost.str() << "}\n";
        return l + 1;
 }
@@ -120,11 +128,11 @@ int InsetCaption::ascii(Buffer const * /*buf*/,
 }
 
 
-int InsetCaption::docbook(Buffer const * buf, ostream & os) const
+int InsetCaption::docbook(Buffer const * buf, ostream & os, bool mixcont) const
 {
        int ret;
        os << "<title>";
-       ret = InsetText::docbook(buf, os);
+       ret = InsetText::docbook(buf, os, mixcont);
        os << "</title>\n";
        return ret;
 }