How do I create a modal QWidget, I'm just managing to create a modal QDialog, but not a modal QWidget.
Thanks in advance.
How do I create a modal QWidget, I'm just managing to create a modal QDialog, but not a modal QWidget.
Thanks in advance.
QWidget::show()
hum....
I tried this, but not work ! : /
hum....
I tried this, but not work, simply displays the window on the screen, but not modal : /
Derive your widget from QDialog instead of QWidget and call QDialog::setModal() or QDialog::exec(). By the way, a modal non-dialog window is some kind of misdesign.
Well work, wysote thank you very much!
Bookmarks