| 106 | } |
| 107 | |
| 108 | void CombinationComboxBox::showPopup() |
| 109 | { |
| 110 | QStyle *const style = this->style(); |
| 111 | QStyleOptionComboBox opt; |
| 112 | initStyleOption(&opt); |
| 113 | QRect rect(style->subControlRect(QStyle::CC_ComboBox, &opt, |
| 114 | QStyle::SC_ComboBoxListBoxPopup, this)); |
| 115 | QPoint below = mapToGlobal(rect.bottomLeft()); |
| 116 | below.setY(below.y() + 4); |
| 117 | |
| 118 | completerView->setFixedWidth(width()); |
| 119 | completerView->show(); |
| 120 | completerView->move(below); |
| 121 | } |
| 122 | |
| 123 | void CombinationComboxBox::paintEvent(QPaintEvent *event) |
| 124 | { |