Transfer Text::drawSelection() from InsetText::drawSelection() to InsetText::draw(). This enables to take care of the background at one place. This will also enable to draw only the selection in the future (and not the full inset).

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19934 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Abdelrazak Younes 2007-08-30 22:46:22 +00:00
parent bff6638b59
commit 44812bdec2

View File

@ -202,23 +202,13 @@ void InsetText::draw(PainterInfo & pi, int x, int y) const
if (drawFrame_)
pi.pain.rectangle(x, y - a, w, h, frameColor());
}
text_.drawSelection(pi, x + border_, y);
tm.draw(pi, x + border_, y);
}
void InsetText::drawSelection(PainterInfo & pi, int x, int y) const
{
if (!pi.base.bv->cursor().selection())
return;
TextMetrics & tm = pi.base.bv->textMetrics(&text_);
int const w = tm.width() + 2 * border_;
int const a = tm.ascent() + border_;
int const h = a + tm.descent() + border_;
pi.pain.fillRectangle(x, y - a,
(hasFixedWidth() ? tm.maxWidth() : w),
h, backgroundColor());
text_.drawSelection(pi, x + border_, y);
}