summaryrefslogtreecommitdiffstats
path: root/src/widgets/styles/qstyle.cpp
diff options
context:
space:
mode:
authorWang Peng <wangpeng@uniontech.com>2021-08-04 14:06:12 +0800
committerVolker Hilsheimer <volker.hilsheimer@qt.io>2021-08-17 03:29:12 +0000
commit6dc9c8991923e9cd0bacf00a05742f0eea574ea5 (patch)
tree51b5cc27ed032dfc507fe2a36ede3297f8b58307 /src/widgets/styles/qstyle.cpp
parentb781fa79c1146c94f840e2779d9d35bb14eb722e (diff)
QStyle: allow styles to control the margin around icons in QLineEdit
The styles can't control the margin of the icon container, and its value is hardcoded to a quarter of the iconSize, which is very unfriendly. Add a PixelMetric enum value to allow styles to control the margin. Change-Id: I21274b68d24150db7be78513fe9125f775aa2b00 Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
Diffstat (limited to 'src/widgets/styles/qstyle.cpp')
-rw-r--r--src/widgets/styles/qstyle.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/widgets/styles/qstyle.cpp b/src/widgets/styles/qstyle.cpp
index 368eda3396..f26f1a16c8 100644
--- a/src/widgets/styles/qstyle.cpp
+++ b/src/widgets/styles/qstyle.cpp
@@ -1519,6 +1519,9 @@ void QStyle::drawItemPixmap(QPainter *painter, const QRect &rect, int alignment,
\value PM_LineEditIconSize The default size for icons in a line edit.
This enum value has been introduced in Qt 6.2.
+ \value PM_LineEditIconMargin The margin around icons in a line edit.
+ This enum value has been introduced in Qt 6.3.
+
\value PM_CustomBase Base value for custom pixel metrics. Custom
values must be greater than this value.