]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetCollapsable.cpp
* src/paragraph_funcs.cpp (breakParagraph): change parameter 'flag' to
[lyx.git] / src / insets / InsetCollapsable.cpp
index 47c55fe110aa60637cf6204ca61dbe078ffb0ddf..654979df7f16116b1bdf393098ffd9eb095baf23 100644 (file)
@@ -36,8 +36,9 @@
 namespace lyx {
 
 using std::endl;
-using std::string;
+using std::max;
 using std::ostream;
+using std::string;
 
 
 InsetCollapsable::CollapseStatus InsetCollapsable::status() const
@@ -169,12 +170,9 @@ Dimension InsetCollapsable::dimensionCollapsed() const
 }
 
 
-bool InsetCollapsable::metrics(MetricsInfo & mi, Dimension & dim) const
+void InsetCollapsable::metrics(MetricsInfo & mi, Dimension & dim) const
 {
-       using std::max;
-
        autoOpen_ = mi.base.bv->cursor().isInside(this);
-       mi.base.textwidth -= int(1.5 * TEXT_TO_INSET_OFFSET);
 
        switch (geometry()) {
        case NoButton:
@@ -183,7 +181,7 @@ bool InsetCollapsable::metrics(MetricsInfo & mi, Dimension & dim) const
        case Corners:
                InsetText::metrics(mi, dim);
                dim.des -= 3;
-               dim.asc -= 3;
+               dim.asc -= 1;
                break;
        case SubLabel: {
                InsetText::metrics(mi, dim);
@@ -197,8 +195,7 @@ bool InsetCollapsable::metrics(MetricsInfo & mi, Dimension & dim) const
                int d = 0;
                docstring s = layout_.labelstring;
                theFontMetrics(font).rectText(s, w, a, d);
-               dim.wid = max(dim.wid, w);
-               dim.des += ascent();
+               dim.des += a + d;
                break;
                }
        case TopButton:
@@ -218,19 +215,10 @@ bool InsetCollapsable::metrics(MetricsInfo & mi, Dimension & dim) const
                        } else {
                                dim.des += textdim.height() + TEXT_TO_BOTTOM_OFFSET;
                                dim.wid = max(dim.wid, textdim.wid);
-                               if (hasFixedWidth())
-                                       dim.wid = max(dim.wid, mi.base.textwidth);
                        }
                }
                break;
        }
-       dim.asc += TEXT_TO_INSET_OFFSET;
-       dim.des += TEXT_TO_INSET_OFFSET;
-       dim.wid += int(1.5 * TEXT_TO_INSET_OFFSET);
-       mi.base.textwidth += int(1.5 * TEXT_TO_INSET_OFFSET);
-       bool const changed = dim_ != dim;
-       dim_ = dim;
-       return changed;
 }
 
 
@@ -246,7 +234,6 @@ void InsetCollapsable::draw(PainterInfo & pi, int x, int y) const
        autoOpen_ = pi.base.bv->cursor().isInside(this);
        int const old_color = pi.background_color;
        pi.background_color = backgroundColor();
-       int const xx = x + TEXT_TO_INSET_OFFSET;
 
        // Draw button first -- top, left or only
        Dimension dimc = dimensionCollapsed();
@@ -254,12 +241,12 @@ void InsetCollapsable::draw(PainterInfo & pi, int x, int y) const
        if (geometry() == TopButton ||
            geometry() == LeftButton ||
            geometry() == ButtonOnly) {
-               button_dim.x1 = xx + 0;
-               button_dim.x2 = xx + dimc.width();
+               button_dim.x1 = x + 0;
+               button_dim.x2 = x + dimc.width();
                button_dim.y1 = y - dimc.asc;
                button_dim.y2 = y + dimc.des;
 
-               pi.pain.buttonText(xx, y, layout_.labelstring, layout_.labelfont, mouse_hover_);
+               pi.pain.buttonText(x, y, layout_.labelstring, layout_.labelfont, mouse_hover_);
        } else {
                button_dim.x1 = 0;
                button_dim.y1 = 0;
@@ -267,44 +254,41 @@ void InsetCollapsable::draw(PainterInfo & pi, int x, int y) const
                button_dim.y2 = 0;
        }
 
-       TextMetrics const & tm = pi.base.bv->textMetrics(&text_);
-       int const baseline = y - tm.ascent();
+       Dimension const textdim = InsetText::dimension(*pi.base.bv);
+       int const baseline = y;
        int textx, texty;
        switch (geometry()) {
        case LeftButton:
-               textx = xx + dimc.width();
+               textx = x + dimc.width();
                texty = baseline;
                InsetText::draw(pi, textx, texty);
                break;
        case TopButton:
-               textx = xx;
-               texty = baseline + dimc.height();
+               textx = x;
+               texty = baseline + dimc.des + textdim.asc;
                InsetText::draw(pi, textx, texty);
                break;
        case ButtonOnly:
                break;
        case NoButton:
-               textx = xx;
+               textx = x;
                texty = baseline;
                InsetText::draw(pi, textx, texty);
                break;
        case SubLabel:
        case Corners:
-               textx = xx;
+               textx = x;
                texty = baseline;
                const_cast<InsetCollapsable *>(this)->setDrawFrame(false);
                InsetText::draw(pi, textx, texty);
                const_cast<InsetCollapsable *>(this)->setDrawFrame(true);
 
-               int desc = InsetText::descent();
-               if (geometry() == SubLabel)
-                       desc -= ascent();
-               else
+               int desc = textdim.descent();
+               if (geometry() == Corners)
                        desc -= 3;
 
-               const int xx1 = xx + border_ - 1;
-               const int xx2 = x + dim_.wid - border_ 
-                       - TEXT_TO_INSET_OFFSET + 1;
+               const int xx1 = x + TEXT_TO_INSET_OFFSET - 1;
+               const int xx2 = x + textdim.wid - TEXT_TO_INSET_OFFSET + 1;
                pi.pain.line(xx1, y + desc - 4, 
                             xx1, y + desc, 
                        layout_.labelfont.color());
@@ -321,7 +305,7 @@ void InsetCollapsable::draw(PainterInfo & pi, int x, int y) const
                                xx2, y + desc,
                                layout_.labelfont.color());
                }
-               pi.pain.line(x + dim_.wid - 3, y + desc, x + dim_.wid - 3, y + desc - 4,
+               pi.pain.line(x + textdim.wid - 3, y + desc, x + textdim.wid - 3, y + desc - 4,
                        layout_.labelfont.color());
 
                // the label below the text. Can be toggled.
@@ -333,70 +317,48 @@ void InsetCollapsable::draw(PainterInfo & pi, int x, int y) const
                        int w = 0;
                        int a = 0;
                        int d = 0;
-                       // FIXME UNICODE
                        docstring s = layout_.labelstring;
                        theFontMetrics(font).rectText(s, w, a, d);
-                       pi.pain.rectText(x + (dim_.wid - w) / 2, y + desc + a,
+                       int const ww = max(textdim.wid, w);
+                       pi.pain.rectText(x + (ww - w) / 2, y + desc + a,
                                s, font, Color::none, Color::none);
+                       desc += d;
                }
 
-               // a visual clue when the cursor is inside the inset
+               // a visual cue when the cursor is inside the inset
                Cursor & cur = pi.base.bv->cursor();
                if (cur.isInside(this)) {
-                       y -= ascent();
+                       y -= textdim.asc;
                        y += 3;
                        pi.pain.line(xx1, y + 4, xx1, y, layout_.labelfont.color());
                        pi.pain.line(xx1 + 4, y, xx1, y, layout_.labelfont.color());
-                       pi.pain.line(xx2, y + 4, x + dim_.wid - 3, y,
+                       pi.pain.line(xx2, y + 4, xx2, y,
                                layout_.labelfont.color());
                        pi.pain.line(xx2 - 4, y, xx2, y,
                                layout_.labelfont.color());
                }
                break;
        }
-       setPosCache(pi, x, y);
        pi.background_color = old_color;
 }
 
 
-void InsetCollapsable::drawSelection(PainterInfo & pi, int x, int y) const
-{
-       x += TEXT_TO_INSET_OFFSET;
-       switch (geometry()) {
-       case LeftButton:
-               x += dimensionCollapsed().wid;
-               InsetText::drawSelection(pi, x, y);
-               break;
-       case TopButton:
-               y += dimensionCollapsed().des;
-               InsetText::drawSelection(pi, x, y);
-               break;
-       case ButtonOnly:
-               break;
-       case NoButton:
-       case SubLabel:
-       case Corners:
-               InsetText::drawSelection(pi, x, y);
-               break;
-       }
-}
-
-
 void InsetCollapsable::cursorPos(BufferView const & bv,
                CursorSlice const & sl, bool boundary, int & x, int & y) const
 {
+       if (geometry() == ButtonOnly)
+               status_ = Open;
        BOOST_ASSERT(geometry() != ButtonOnly);
 
        InsetText::cursorPos(bv, sl, boundary, x, y);
+       Dimension const textdim = InsetText::dimension(bv);
 
        switch (geometry()) {
        case LeftButton:
                x += dimensionCollapsed().wid;
                break;
        case TopButton: {
-               TextMetrics const & tm = bv.textMetrics(&text_);
-               y += dimensionCollapsed().height() - ascent()
-                       + TEXT_TO_INSET_OFFSET + tm.ascent();
+               y += dimensionCollapsed().des + textdim.asc;
                break;
        }
        case NoButton:
@@ -408,7 +370,6 @@ void InsetCollapsable::cursorPos(BufferView const & bv,
                // Cannot get here
                break;
        }
-       x += TEXT_TO_INSET_OFFSET;
 }
 
 
@@ -668,13 +629,14 @@ int InsetCollapsable::latex(Buffer const & buf, odocstream & os,
                }
        }
        int i = InsetText::latex(buf, os, runparams);
-       if (!layout_.latexname.empty())
+       if (!layout_.latexname.empty()) {
                if (layout_.latextype == "command") {
                        os << "}";
                } else if (layout_.latextype == "environment") {
                        os << "\n\\end{" << from_utf8(layout_.latexname) << "}\n";
                        i += 4;
                }
+       }
        return i;
 }