]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetCaption.cpp
Stupid bug fix.
[lyx.git] / src / insets / InsetCaption.cpp
index ea362e2adbc052b2b4fc7fc0b33cdb4a7a4ca3da..b0f4d029817a9fde3df699ae6f7faa8d9c741f56 100644 (file)
@@ -24,7 +24,6 @@
 #include "FloatList.h"
 #include "FuncRequest.h"
 #include "FuncStatus.h"
-#include "support/gettext.h"
 #include "InsetList.h"
 #include "MetricsInfo.h"
 #include "output_latex.h"
@@ -37,6 +36,7 @@
 #include "frontends/FontMetrics.h"
 #include "frontends/Painter.h"
 
+#include "support/gettext.h"
 #include "support/lstrings.h"
 
 #include <sstream>
@@ -70,11 +70,8 @@ void InsetCaption::read(Lexer & lex)
 #if 0
        // We will enably this check again when the compability
        // code is removed from Buffer::Read (Lgb)
-       string const token = lex.GetString();
-       if (token != "Caption") {
-               lyxerr << "InsetCaption::Read: consistency check failed."
-                      << endl;
-       }
+       lex.setContext("InsetCaption::Read: consistency check");
+       lex >> "Caption";
 #endif
        InsetText::read(lex);
 }
@@ -105,17 +102,20 @@ void InsetCaption::setCustomLabel(docstring const & label)
 }
 
 
-void InsetCaption::addToToc(ParConstIterator const & cpit) const
+void InsetCaption::addToToc(DocIterator const & cpit)
 {
        if (type_.empty())
                return;
 
-       ParConstIterator pit = cpit;
-       pit.push_back(*this);
+       DocIterator pit = cpit;
+       pit.push_back(CursorSlice(*this));
 
        Toc & toc = buffer().tocBackend().toc(type_);
-       docstring const str = full_label_ + ". " + pit->asString(false);
+       docstring const str = full_label_ + ". " + text_.getPar(0).asString();
        toc.push_back(TocItem(pit, 0, str));
+
+       // Proceed with the rest of the inset.
+       InsetText::addToToc(cpit);
 }
 
 
@@ -193,12 +193,11 @@ bool InsetCaption::getStatus(Cursor & cur, FuncRequest const & cmd,
        switch (cmd.action) {
 
        case LFUN_BREAK_PARAGRAPH:
-       case LFUN_BREAK_PARAGRAPH_SKIP:
-               status.enabled(false);
+               status.setEnabled(false);
                return true;
 
        case LFUN_OPTIONAL_INSERT:
-               status.enabled(cur.paragraph().insetList().find(OPTARG_CODE) == -1);
+               status.setEnabled(cur.paragraph().insetList().find(OPTARG_CODE) == -1);
                return true;
 
        case LFUN_INSET_TOGGLE:
@@ -273,29 +272,38 @@ int InsetCaption::getOptArg(odocstream & os,
 }
 
 
+int InsetCaption::getCaptionText(odocstream & os,
+                       OutputParams const & runparams) const
+{
+       os << full_label_ << ' ';
+       return InsetText::plaintext(os, runparams);
+}
+
+
 void InsetCaption::updateLabels(ParIterator const & it)
 {
-       DocumentClass const & tclass = buffer().params().documentClass();
+       Buffer const & master = *buffer().masterBuffer();
+       DocumentClass const & tclass = master.params().documentClass();
        Counters & cnts = tclass.counters();
        string const & type = cnts.current_float();
        // Memorize type for addToToc().
        type_ = type;
        in_subfloat_ = cnts.isSubfloat();
        if (type.empty())
-               full_label_ = buffer().B_("Senseless!!! ");
+               full_label_ = master.B_("Senseless!!! ");
        else {
                // FIXME: life would be _much_ simpler if listings was
                // listed in Floating.
                docstring name;
                if (type == "listing")
-                       name = buffer().B_("Listing");
+                       name = master.B_("Listing");
                else
-                       name = buffer().B_(tclass.floats().getType(type).name());
+                       name = master.B_(tclass.floats().getType(type).name());
                docstring counter = from_utf8(type);
                if (in_subfloat_) {
                        counter = "sub-" + from_utf8(type);
                        name = bformat(_("Sub-%1$s"),
-                                      buffer().B_(tclass.floats().getType(type).name()));
+                                      master.B_(tclass.floats().getType(type).name()));
                }
                if (cnts.hasCounter(counter)) {
                        cnts.step(counter);