Home | History | Annotate | Download | only in qt

Lines Matching refs:IntRect

80 void TiledDrawingAreaTile::invalidate(const IntRect& dirtyRect)
82 IntRect tileDirtyRect = intersection(dirtyRect, m_rect);
91 IntRect oldRect = m_rect;
92 m_rect = IntRect(m_rect.location(), newSize);
94 invalidate(IntRect(oldRect.maxX(), oldRect.y(), m_rect.maxX() - oldRect.maxX(), m_rect.height()));
96 invalidate(IntRect(oldRect.x(), oldRect.maxY(), m_rect.width(), m_rect.maxY() - oldRect.maxY()));
107 void TiledDrawingAreaTile::paint(GraphicsContext* context, const IntRect& rect)
111 IntRect target = intersection(rect, m_rect);
112 IntRect source((target.x() - m_rect.x()),
123 const IntRect& updateChunkRect = updateChunk->rect();
147 IntRect dirtyRect = m_dirtyRegion.boundingRect();