39 QComboBox::paintEvent(pe);
41 QStyleOptionComboBox option;
42 option.initFrom(
this);
43 option.frame = hasFrame();
44 QRect r = style()->subControlRect(QStyle::CC_ComboBox, &option, QStyle::SC_ComboBoxEditField,
this);
46 r.adjust(-14, 0, 14, 1);
48 QPen pen = itemData(currentIndex(), Qt::DecorationRole).value<QPen>();
50 QPainter painter(
this);
52 if (!(option.state & QStyle::State_Enabled)) {
53 painter.setOpacity(0.5);
55 painter.drawLine(r.left(), r.center().y(), r.right(), r.center().y());