Top "Qdialog" questions

A QDialog is a class from the Qt Toolkit which is the base class for dialog windows.

How to close a QDialog

I've been trying to close a QDialog window that is branching off of my main window. The following have not …

python qt user-interface pyqt qdialog
How to return data from QDialog?

I am trying to design a main window and a QDialog, and to find the best way to return the …

c++ oop qt qdialog
How do I prevent the enter key from closing my QDialog (Qt 4.8.1)

I have a QDialog with a QDialogButtonBox. The OK and Cancel buttons are active. Occasionally I disable or hide the …

c++ qt qdialog qpushbutton
Disable QDialogs default close button (upper left "cross button")?

Is it possible to disable/delete the QDialogs default close button at the upper left of the dialog?

c++ qt qdialog
Qt - Disabling QDialog's "?" button

I create an instance of QDialog and on the left of 'x' (close) button i have also '?' button. …

c++ qt qdialog
QDialog with ok and cancel buttons

I need Qt Dialog with ok and cancel buttons with standard functionality, placed on the right side of its layout. …

c++ qt button qdialog qbuttongroup
QDialog remove title bar

The net is flooded with similar questions, but for all I have seen nothing suits to solve the problem at …

c++ qt4 qdialog
Can you add a toolbar to QDialog?

I'm working on a project that needs to call a modal window with a toolbar to do some work on …

c++ qt modal-dialog qmainwindow qdialog
How can I disable Alt + F4 window closing using Qt?

I've disabled X button in Qt from my dialog using this line: myDialog->setWindowFlags(Qt::Dialog | Qt::Desktop) but …

qt qt4 keypress qdialog qkeyevent
Qt : how to implement QDialog StatusBar

I have QDialog that is heavily designed with QDesigner , I saw on the web that I could add QStatusBar with …

c++ qt qdialog