]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetfloat.C
* In the process of fixing the math background color bug, this commit transfer backgr...
[lyx.git] / src / insets / insetfloat.C
index f6117854e182cd2281c68b316ad9b211c420d1e8..b4be20c9989978852d4e86f21852d87a7022f8bc 100644 (file)
@@ -280,7 +280,7 @@ docstring const InsetFloat::editMessage() const
 
 
 int InsetFloat::latex(Buffer const & buf, odocstream & os,
-                     OutputParams const & runparams) const
+                      OutputParams const & runparams) const
 {
        FloatList const & floats = buf.params().getLyXTextClass().floats();
        string tmptype = (params_.wide ? params_.type + "*" : params_.type);
@@ -328,8 +328,19 @@ int InsetFloat::latex(Buffer const & buf, odocstream & os,
 }
 
 
+int InsetFloat::plaintext(Buffer const & buf, odocstream & os,
+                          OutputParams const & runparams) const
+{
+       os << '[' << _("float") << ' ' << floatName(params_.type, buf.params()) << ":\n";
+       InsetText::plaintext(buf, os, runparams);
+       os << "\n]";
+
+       return PLAINTEXT_NEWLINE + 1; // one char on a separate line
+}
+
+
 int InsetFloat::docbook(Buffer const & buf, odocstream & os,
-                       OutputParams const & runparams) const
+                        OutputParams const & runparams) const
 {
         // FIXME UNICODE
         os << '<' << from_ascii(params_.type) << '>';
@@ -378,18 +389,24 @@ void InsetFloat::sideways(bool s, BufferParams const & bp)
 
 void InsetFloat::addToToc(TocList & toclist, Buffer const & buf) const
 {
+       // Is there a need to provide a list of float insets?
+       return;
+
+       // Abdel (01/02/2006): I'll let this code for reference in case
+       // there's a need to do something similar for another kind of
+       // inset.
        ParConstIterator pit = par_const_iterator_begin(*this);
        ParConstIterator end = par_const_iterator_end(*this);
 
        // Find a caption layout in one of the (child inset's) pars
        for (; pit != end; ++pit) {
                if (pit->layout()->labeltype == LABEL_SENSITIVE) {
-                       string const type = params_.type;
+                       Toc & toc = toclist[params_.type];
                        docstring const str =
-                               convert<docstring>(toclist[type].size() + 1)
+                               convert<docstring>(toc.size() + 1)
                                + ". " + pit->asString(buf, false);
-                       TocItem const item(pit, 0, str);
-                       toclist[type].push_back(item);
+                       toc.push_back(TocItem(pit, 0, str));
+                       return;
                }
        }
 }