]> git.lyx.org Git - features.git/commitdiff
Transfer Text::drawSelection() from InsetText::drawSelection() to InsetText::draw...
authorAbdelrazak Younes <younes@lyx.org>
Thu, 30 Aug 2007 22:46:22 +0000 (22:46 +0000)
committerAbdelrazak Younes <younes@lyx.org>
Thu, 30 Aug 2007 22:46:22 +0000 (22:46 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19934 a592a061-630c-0410-9148-cb99ea01b6c8

src/insets/InsetText.cpp

index e497d328cb2cf0d6a266e42382bfc46b010263d8..1ced570aab47b472237e1dd46f9deb3c21378008 100644 (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);
 }