]> git.lyx.org Git - lyx.git/commitdiff
* InsetText::Wide() -> wide()
authorAbdelrazak Younes <younes@lyx.org>
Tue, 7 Nov 2006 15:24:34 +0000 (15:24 +0000)
committerAbdelrazak Younes <younes@lyx.org>
Tue, 7 Nov 2006 15:24:34 +0000 (15:24 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15780 a592a061-630c-0410-9148-cb99ea01b6c8

src/insets/insettext.C
src/insets/insettext.h
src/rowpainter.C

index d8c7718f0bf79fe1e2f550f84c5224e1ddf78503..0b843353a0bc99f2669b6b141abe10f1ca92d85c 100644 (file)
@@ -193,7 +193,7 @@ void InsetText::draw(PainterInfo & pi, int x, int y) const
                int const w = text_.width() + 2 * border_;
                int const a = text_.ascent() + border_;
                int const h = a + text_.descent() + border_;
-               pi.pain.rectangle(x, y - a, (Wide() ? text_.maxwidth_ : w), h,
+               pi.pain.rectangle(x, y - a, (wide() ? text_.maxwidth_ : w), h,
                        frameColor());
        }
 }
@@ -204,7 +204,7 @@ void InsetText::drawSelection(PainterInfo & pi, int x, int y) const
        int const w = text_.width() + 2 * border_;
        int const a = text_.ascent() + border_;
        int const h = a + text_.descent() + border_;
-       pi.pain.fillRectangle(x, y - a, (Wide() ? text_.maxwidth_ : w), h,
+       pi.pain.fillRectangle(x, y - a, (wide() ? text_.maxwidth_ : w), h,
                backgroundColor());
        text_.drawSelection(pi, x, y);
 }
@@ -214,7 +214,7 @@ bool InsetText::covers(BufferView const & bv, int x, int y) const
 {
        return bv.coordCache().getInsets().has(this)
                        && x >= xo(bv)
-                       && x <= xo(bv) + width() + (Wide() ? text_.maxwidth_ : 0)
+                       && x <= xo(bv) + width() + (wide() ? text_.maxwidth_ : 0)
                        && y >= yo(bv) - ascent()
                        && y <= yo(bv) + descent();
 }
index d11bc97c887063a171f229a746a4d0a9ab9eb740..67128697d766843692c51858016c166c8417633c 100644 (file)
@@ -133,7 +133,7 @@ public:
        ///
        InsetText(InsetText const &);
        ///
-       bool Wide() const { return wide_inset_; }
+       bool wide() const { return wide_inset_; }
        ///
        void setWide(bool wide_inset) { wide_inset_ = wide_inset; }
 
index 6d3707c398d30b1eed3f72e81a9c2e2b6b13cc47..e35755041168e3a2cb2ed2dc950dc516e121e427 100644 (file)
@@ -180,7 +180,7 @@ void RowPainter::paintInset(pos_type const pos, LyXFont const & font)
        InsetText const * const in = inset->asTextInset();
        // non-wide insets are painted completely. Recursive
        bool tmp = refreshInside;
-       if (!in || !in->Wide()) {
+       if (!in || !in->wide()) {
                refreshInside = true;
                lyxerr[Debug::PAINTING] << endl << "Paint inset fully" << endl;
        }