]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetcaption.C
The speed patch: redraw only rows that have changed
[lyx.git] / src / insets / insetcaption.C
index c368c2a2ffba0b12d2f735ef313fd6829709be56..a3f37890eaba315270a4c4b8a578c12a972787c5 100644 (file)
 
 #include "support/lstrings.h"
 
-#include "support/std_sstream.h"
+#include <sstream>
 
 
 using lyx::support::bformat;
 
+using std::auto_ptr;
 using std::endl;
 using std::string;
 using std::ostream;
@@ -44,7 +45,7 @@ InsetCaption::InsetCaption(BufferParams const & bp)
        : InsetText(bp)
 {
        setAutoBreakRows(true);
-       setDrawFrame(InsetText::LOCKED);
+       setDrawFrame(true);
        setFrameColor(LColor::captionframe);
 }
 
@@ -88,25 +89,24 @@ void InsetCaption::draw(PainterInfo & pi, int x, int y) const
        // See if we can find the name of the float this caption
        // belongs to.
 #if 0
-       InsetOld * i1 = owner();
-       InsetOld * i2 = i1 ? i1->owner() : 0;
+       InsetBase * i1 = owner();
+       InsetBase * i2 = i1 ? i1->owner() : 0;
        string type;
        if (i2->lyxCode() == FLOAT_CODE)
+#ifdef WITH_WARNINGS
 #warning Now, what happens for i2 == 0?
+#endif
                type = static_cast<InsetFloat *>(i2)->params().type;
        else if (i2->lyxCode() == WRAP_CODE)
                type = static_cast<InsetWrap *>(i2)->params().type;
        else
                BOOST_ASSERT(false);
-#else
-       string type = "float";
-#endif
 
        FloatList const & floats =
                pi.base.bv->buffer()->params().getLyXTextClass().floats();
-#if 0
        string const fl = i2 ? floats.getType(type).name() : N_("Float");
 #else
+       string type = "float";
        string const fl = N_("Float");
 #endif
 
@@ -139,7 +139,7 @@ int InsetCaption::latex(Buffer const & buf, ostream & os,
 int InsetCaption::plaintext(Buffer const & /*buf*/,ostream & /*os*/,
                        OutputParams const & /*runparams*/) const
 {
-       // FIX: Implement me!
+       // FIXME: Implement me!
        return 0;
 }
 
@@ -153,3 +153,9 @@ int InsetCaption::docbook(Buffer const & buf, ostream & os,
        os << "</title>\n";
        return ret;
 }
+
+
+auto_ptr<InsetBase> InsetCaption::doClone() const
+{
+       return auto_ptr<InsetBase>(new InsetCaption(*this));
+}