| 209 | } |
| 210 | |
| 211 | void IconComboBox::showPopup() |
| 212 | { |
| 213 | QStyle *const style = this->style(); |
| 214 | QStyleOptionComboBox opt; |
| 215 | initStyleOption(&opt); |
| 216 | QRect rect(style->subControlRect(QStyle::CC_ComboBox, &opt, |
| 217 | QStyle::SC_ComboBoxListBoxPopup, this)); |
| 218 | QPoint below = mapToGlobal(rect.bottomLeft()); |
| 219 | below.setY(below.y() + 4); |
| 220 | |
| 221 | iconFrame->setFixedWidth(width()); |
| 222 | iconFrame->show(); |
| 223 | iconFrame->move(below); |
| 224 | } |
| 225 | |
| 226 | void IconComboBox::setIcon(const QString &icon) |
| 227 | { |