]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetCaption.cpp
InsetTabular.cpp: fix #6585 also for wrapped floats - thanks Vincent
[lyx.git] / src / insets / InsetCaption.cpp
index b9ed6029dd6010528d28a32e92f0596db3b9f2ce..a1b084fe4766362963a63abd32f56ade768b64eb 100644 (file)
@@ -53,7 +53,7 @@ InsetCaption::InsetCaption(Buffer * buf)
 {
        setAutoBreakRows(true);
        setDrawFrame(true);
-       setFrameColor(Color_captionframe);
+       setFrameColor(Color_collapsableframe);
 }
 
 
@@ -152,6 +152,7 @@ void InsetCaption::draw(PainterInfo & pi, int x, int y) const
 
        FontInfo tmpfont = pi.base.font;
        pi.base.font = pi.base.bv->buffer().params().getFont().fontInfo();
+       pi.base.font.setColor(pi.textColor(pi.base.font.color()).baseColor);
        pi.pain.text(x, y, full_label_, pi.base.font);
        InsetText::draw(pi, x + labelwidth_, y);
        pi.base.font = tmpfont;
@@ -176,12 +177,14 @@ bool InsetCaption::insetAllowed(InsetCode code) const
 {
        switch (code) {
        // code that is not allowed in a caption
-       case FLOAT_CODE:
-       case TABULAR_CODE:
-       case WRAP_CODE:
        case CAPTION_CODE:
+       case FLOAT_CODE:
+       case FOOT_CODE:
        case NEWPAGE_CODE:
+       case MARGIN_CODE:
        case MATHMACRO_CODE:
+       case TABULAR_CODE:
+       case WRAP_CODE:
                return false;
        default:
                return InsetText::insetAllowed(code);
@@ -192,14 +195,14 @@ bool InsetCaption::insetAllowed(InsetCode code) const
 bool InsetCaption::getStatus(Cursor & cur, FuncRequest const & cmd,
        FuncStatus & status) const
 {
-       switch (cmd.action) {
+       switch (cmd.action()) {
 
        case LFUN_BREAK_PARAGRAPH:
                status.setEnabled(false);
                return true;
 
-       case LFUN_OPTIONAL_INSERT:
-               status.setEnabled(cur.paragraph().insetList().find(OPTARG_CODE) == -1);
+       case LFUN_ARGUMENT_INSERT:
+               status.setEnabled(cur.paragraph().insetList().find(ARG_CODE) == -1);
                return true;
 
        case LFUN_INSET_TOGGLE:
@@ -229,7 +232,7 @@ int InsetCaption::latex(odocstream & os,
        // optional argument.
        runparams.moving_arg = true;
        os << "\\caption";
-       int l = latexOptArgInsets(paragraphs()[0], os, runparams, 1);
+       int l = latexArgInsets(paragraphs()[0], os, runparams, 0, 1);
        os << '{';
        l += InsetText::latex(os, runparams);
        os << "}\n";
@@ -285,7 +288,7 @@ int InsetCaption::getArgument(odocstream & os,
 int InsetCaption::getOptArg(odocstream & os,
                        OutputParams const & runparams) const
 {
-       return latexOptArgInsets(paragraphs()[0], os, runparams, 1);
+       return latexArgInsets(paragraphs()[0], os, runparams, 0, 1);
 }
 
 
@@ -307,7 +310,7 @@ docstring InsetCaption::getCaptionAsHTML(XHTMLStream & xs,
 }
 
 
-void InsetCaption::updateLabels(ParIterator const & it, UpdateType utype)
+void InsetCaption::updateBuffer(ParIterator const & it, UpdateType utype)
 {
        Buffer const & master = *buffer().masterBuffer();
        DocumentClass const & tclass = master.params().documentClass();
@@ -346,7 +349,7 @@ void InsetCaption::updateLabels(ParIterator const & it, UpdateType utype)
        }
 
        // Do the real work now.
-       InsetText::updateLabels(it, utype);
+       InsetText::updateBuffer(it, utype);
        if (utype == OutputUpdate)
                cnts.restoreLastCounter();
 }