Forum
Sign Up
× DataGrid for Qt.C++

How to pop up the drop-down box in the appropriate position

2 years 5 months ago #1 by Linlin
Hi,

Is it possible to make the pop-up position of the drop-down box adaptive?For example, in this photo, I want it to pop up at the top.

Thank you!
Attachments:

Please Log in or Create an account to join the conversation.

More
2 years 4 months ago - 2 years 4 months ago #2 by Linlin
void CustomComboBox::showPopup()
{
createPopup();
if (m_popup == Q_NULL)
return;

const int minPopupWidth = m_popup->minimumWidth();

if (m_popup->centralWidget() != Q_NULL)
m_popup->centralWidget()->updateGeometry();
updatePopupButtons();

QPoint gpos = mapToGlobal(QPoint(0, 0));
QRect rect = QRect(gpos.x(), gpos.y() + height(), qMax(minPopupWidth, width()), m_popup->sizeHint().height());
m_popup->setGeometry(rect);


#ifndef QT_NO_EFFECTS
qScrollEffect(m_popup, true ? QEffects::DownScroll : QEffects::UpScroll, 150);
#endif
m_popup->raise();
m_popup->show();
}
Last edit: 2 years 4 months ago by Linlin.

Please Log in or Create an account to join the conversation.

More
  • Not Allowed: to create new topic.
  • Not Allowed: to reply.
  • Not Allowed: to edit your message.
Moderators: Developer Machines
Time to create page: 0.167 seconds

Developer Newsletter

Join our Developer Machines newsletter to get informed on all the latest releases of the commercial components for Qt.C++, Delphi FireMonkey, updates and general knowledges.

Quick Support

Should you need any additional information about our products or licensing, please contact us at the following email addresses:

  • This email address is being protected from spambots. You need JavaScript enabled to view it.

  • This email address is being protected from spambots. You need JavaScript enabled to view it.

Get in Touch

If you would like to purchase our products or services, but don’t know how to do it the right way, please feel free to contact us:

  • This email address is being protected from spambots. You need JavaScript enabled to view it.( any questions related to our products or services )
  • This email address is being protected from spambots. You need JavaScript enabled to view it.( questions related to licensing )