Home
last modified time | relevance | path

Searched refs:bottomLeftRadii (Results 1 – 3 of 3) sorted by relevance

/dports/www/kf5-khtml/khtml-5.89.0/src/rendering/
H A Drender_object.cpp1350 bottomLeftRadii *= f; in calcBorderRadii()
1688 bool ignore_bottom = (bottomLeftRadii.y() > 0) || in paintBorder()
1694 int y2 = _ty + h - bottomLeftRadii.y(); in paintBorder()
1712 int x = _tx + bottomLeftRadii.x(); in paintBorder()
1713 int y = _ty + h - bottomLeftRadii.y(); in paintBorder()
1723 if (bottomLeftRadii.isNull() && (bs == DASHED || bs == DOTTED)) { in paintBorder()
1729 bool ignore_left = (bottomLeftRadii.x() > 0) || in paintBorder()
1739 int x = _tx + bottomLeftRadii.x(); in paintBorder()
1742 if (!bottomLeftRadii.isNull()) { in paintBorder()
1743 int x = _tx + bottomLeftRadii.x(); in paintBorder()
[all …]
H A Drender_box.cpp847 QPoint topLeftRadii, topRightRadii, bottomLeftRadii, bottomRightRadii; in borderRadiusClipPath() local
848 calcBorderRadii(topLeftRadii, topRightRadii, bottomLeftRadii, bottomRightRadii, w, h); in borderRadiusClipPath()
877 bottomLeftRadii.rx() = qMax(0, bottomLeftRadii.x() - adjustLeft); in borderRadiusClipPath()
882 bottomLeftRadii.ry() = qMax(0, bottomLeftRadii.y() - adjustBottom); in borderRadiusClipPath()
904 if (!bottomLeftRadii.isNull()) { in borderRadiusClipPath()
905 …Rect r(rect.x(), rect.y() + rect.height() - bottomLeftRadii.y() * 2, bottomLeftRadii.x() * 2, bott… in borderRadiusClipPath()
H A Drender_object.h717 …void calcBorderRadii(QPoint &topLeftRadii, QPoint &topRightRadii, QPoint &bottomLeftRadii, QPoint …