Home | History | Annotate | Download | only in wince

Lines Matching refs:FillRect

932 void GraphicsContext::fillRect(const FloatRect& rect, const Color& color, ColorSpace colorSpace)
952 FillRect(transparentDC.hdc(), &transparentDC.rect(), hbrush.get());
1077 fillRect(rect, Color(Color::white), ColorSpaceDeviceRGB);
1211 void GraphicsContext::fillRoundedRect(const IntRect& fillRect, const IntSize& topLeft, const IntSize& topRight, const IntSize& bottomLeft, const IntSize& bottomRight, const Color& c, ColorSpace colorSpace)
1224 IntRect dstRect = fillRect;
1235 TransparentLayerDC transparentDc(m_data, dstRect, &fillRect);
1399 void GraphicsContext::fillRect(const FloatRect& r, const Gradient* gradient)
1412 fillRect(r, color, ColorSpaceDeviceRGB);
1495 void GraphicsContext::fillRect(const FloatRect& rect)
1500 fillRect(rect, m_state.fillGradient.get());
1502 fillRect(rect, fillColor(), ColorSpaceDeviceRGB);
1814 FillRect(dc, &rectWin, reinterpret_cast<HBRUSH>(((state & DFCS_INACTIVE) ? COLOR_BTNFACE : COLOR_WINDOW) + 1));