]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetCaption.cpp
* src/paragraph_funcs.cpp (breakParagraph): change parameter 'flag' to
[lyx.git] / src / insets / InsetCaption.cpp
index 81643de19fadb966413eef6c50418371d2fed6a6..5c14efac0a84586daaa750a66951e9448979a14e 100644 (file)
 #include "frontends/Painter.h"
 
 #include "support/lstrings.h"
-#include "support/convert.h"
 
 #include <sstream>
 
 
-using std::auto_ptr;
 using std::endl;
 using std::string;
 using std::ostream;
@@ -49,7 +47,6 @@ using std::ostream;
 
 namespace lyx {
 
-using support::bformat;
 
 InsetCaption::InsetCaption(InsetCaption const & ic)
        : InsetText(ic), textclass_(ic.textclass_)
@@ -115,7 +112,7 @@ void InsetCaption::setCustomLabel(docstring const & label)
 }
 
 
-void InsetCaption::addToToc(TocList & toclist, Buffer const & buf) const
+void InsetCaption::addToToc(TocList & toclist, Buffer const & buf, ParConstIterator const &) const
 {
        if (type_.empty())
                return;
@@ -123,38 +120,28 @@ void InsetCaption::addToToc(TocList & toclist, Buffer const & buf) const
        ParConstIterator pit = par_const_iterator_begin(*this);
 
        Toc & toc = toclist[type_];
-       docstring const str = convert<docstring>(counter_)
-               + ". " + pit->asString(buf, false);
+       docstring const str = full_label_ + ". " + pit->asString(buf, false);
        toc.push_back(TocItem(pit, 0, str));
 }
 
 
-bool InsetCaption::metrics(MetricsInfo & mi, Dimension & dim) const
+void InsetCaption::metrics(MetricsInfo & mi, Dimension & dim) const
 {
-       int const width_offset = TEXT_TO_INSET_OFFSET / 2;
-       mi.base.textwidth -= width_offset;
-
-       computeFullLabel(*mi.base.bv->buffer());
-
+       Font tmpfont = mi.base.font;
+       mi.base.font = mi.base.bv->buffer().params().getFont();
        labelwidth_ = theFontMetrics(mi.base.font).width(full_label_);
        // add some space to separate the label from the inset text
        labelwidth_ += 2 * TEXT_TO_INSET_OFFSET;
        dim.wid = labelwidth_;
        Dimension textdim;
-       InsetText::metrics(mi, textdim);
-       // Correct for button width, and re-fit
+       // Correct for button and label width
        mi.base.textwidth -= dim.wid;
        InsetText::metrics(mi, textdim);
+       mi.base.font = tmpfont;
+       mi.base.textwidth += dim.wid;
        dim.des = std::max(dim.des - textdim.asc + dim.asc, textdim.des);
        dim.asc = textdim.asc;
        dim.wid += textdim.wid;
-       dim.asc += TEXT_TO_INSET_OFFSET;
-       dim.des += TEXT_TO_INSET_OFFSET;
-       dim.wid += width_offset;
-       mi.base.textwidth += width_offset;
-       bool const changed = dim_ != dim;
-       dim_ = dim;
-       return changed;
 }
 
 
@@ -168,17 +155,11 @@ void InsetCaption::draw(PainterInfo & pi, int x, int y) const
 
        // Answer: the text inset (in buffer_funcs.cpp: setCaption).
 
-       labelwidth_ = pi.pain.text(x, y, full_label_, pi.base.font);
-       // add some space to separate the label from the inset text
-       labelwidth_ += 2 * TEXT_TO_INSET_OFFSET;
+       Font tmpfont = pi.base.font;
+       pi.base.font = pi.base.bv->buffer().params().getFont();
+       pi.pain.text(x, y, full_label_, pi.base.font);
        InsetText::draw(pi, x + labelwidth_, y);
-       setPosCache(pi, x, y);
-}
-
-
-void InsetCaption::drawSelection(PainterInfo & pi, int x, int y) const
-{
-       InsetText::drawSelection(pi, x + labelwidth_, y);
+       pi.base.font = tmpfont;
 }
 
 
@@ -217,7 +198,6 @@ bool InsetCaption::getStatus(Cursor & cur, FuncRequest const & cmd,
        switch (cmd.action) {
 
        case LFUN_BREAK_PARAGRAPH:
-       case LFUN_BREAK_PARAGRAPH_KEEP_LAYOUT:
        case LFUN_BREAK_PARAGRAPH_SKIP:
                status.enabled(false);
                return true;
@@ -257,8 +237,6 @@ int InsetCaption::latex(Buffer const & buf, odocstream & os,
 int InsetCaption::plaintext(Buffer const & buf, odocstream & os,
                            OutputParams const & runparams) const
 {
-       computeFullLabel(buf);
-
        os << '[' << full_label_ << "\n";
        InsetText::plaintext(buf, os, runparams);
        os << "\n]";
@@ -292,21 +270,39 @@ int InsetCaption::getOptArg(Buffer const & buf, odocstream & os,
 }
 
 
-void InsetCaption::computeFullLabel(Buffer const & buf) const
+void InsetCaption::updateLabels(Buffer const & buf, ParIterator const & it)
 {
-       if (type_.empty())
+       using support::bformat;
+       TextClass const & tclass = buf.params().getTextClass();
+       Counters & cnts = tclass.counters();
+       string const & type = cnts.current_float();
+       if (type.empty())
                full_label_ = buf.B_("Senseless!!! ");
        else {
-               docstring const number = convert<docstring>(counter_);
-               docstring label = custom_label_.empty()? buf.B_(type_): custom_label_;
-               full_label_ = bformat(from_ascii("%1$s %2$s:"), label, number);
+               // FIXME: life would be _much_ simpler if listings was
+               // listed in Floating.
+               docstring name;
+               if (type == "listing")
+                       name = buf.B_("Listing");
+               else
+                       name = buf.B_(tclass.floats().getType(type).name());
+               if (cnts.hasCounter(from_utf8(type))) {
+                       cnts.step(from_utf8(type));
+                       full_label_ = bformat(from_ascii("%1$s %2$s:"), 
+                                             name, 
+                                             cnts.theCounter(from_utf8(type)));
+               } else
+                       full_label_ = bformat(from_ascii("%1$s #:"), name);     
        }
+
+       // Do the real work now.
+       InsetText::updateLabels(buf, it);
 }
 
 
-auto_ptr<Inset> InsetCaption::doClone() const
+Inset * InsetCaption::clone() const
 {
-       return auto_ptr<Inset>(new InsetCaption(*this));
+       return new InsetCaption(*this);
 }