Home | History | Annotate | Download | only in qt

Lines Matching defs:newClip

1130     QPainterPath newClip;
1131 newClip.setFillRule(Qt::OddEvenFill);
1133 newClip.addRect(m_data->clipBoundingRect());
1134 newClip.addPath(clippedOut);
1135 p->setClipPath(newClip, Qt::IntersectClip);
1138 newClip.addRect(windowRect);
1139 newClip.addPath(clippedOut.intersected(newClip));
1140 p->setClipPath(newClip);
1174 QPainterPath newClip;
1175 newClip.setFillRule(Qt::OddEvenFill);
1177 newClip.addRect(m_data->clipBoundingRect());
1178 newClip.addRect(QRect(rect));
1179 p->setClipPath(newClip, Qt::IntersectClip);
1184 newClip.addRect(window);
1185 newClip.addRect(clipOutRect);
1186 p->setClipPath(newClip);