]> 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 132af638fc50e37bb6beb0066f23168d2e71fa6a..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);
 }
 
@@ -52,7 +53,7 @@ InsetCaption::InsetCaption(BufferParams const & bp)
 void InsetCaption::write(Buffer const & buf, ostream & os) const
 {
        os << "Caption\n";
-       writeParagraphData(buf, os);
+       text_.write(buf, os);
 }
 
 
@@ -87,10 +88,14 @@ void InsetCaption::draw(PainterInfo & pi, int x, int y) const
 
        // See if we can find the name of the float this caption
        // belongs to.
-       InsetOld * i1 = owner();
-       InsetOld * i2 = i1 ? i1->owner() : 0;
+#if 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;
@@ -100,6 +105,10 @@ void InsetCaption::draw(PainterInfo & pi, int x, int y) const
        FloatList const & floats =
                pi.base.bv->buffer()->params().getLyXTextClass().floats();
        string const fl = i2 ? floats.getType(type).name() : N_("Float");
+#else
+       string type = "float";
+       string const fl = N_("Float");
+#endif
 
        // Discover the number...
        string const num = "#";
@@ -130,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;
 }
 
@@ -144,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));
+}