Top "Qdialog" questions

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

QDialog exec() and getting result value

I have subclassed QDialog to implement functionality similar to QMessageBox ( I needed this to allow for customization). It has a …

c++ qt qdialog
Non-resizeable QDialog with fixed size in Qt?

I have a Qt dialog application. Now I dont want that dialog to be resizeable. I am not sure how …

qt qdialog
How can I hide/delete the "?" help button on the "title bar" of a Qt Dialog?

I am using Qt Dialogs in one of my application. I need to hide/delete the help button. But i …

qt qt4 qdialog
Open new dialog from a dialog in qt

I am trying to open a new dialog Window from a existing dialog on a a button click event,but …

qt qt-creator qdialog
PyQt: Prevent Resize and Maximize in QDialog?

How can I prevent a QDialog in PyQt from being resizeable or maximazable? I don't want the window's size changed.

python resize pyqt qdialog
What is the signal for when a widget loses focus?

In a dialog, when the tab key is pressed, the focus changes to another widget. In Qt, is there any …

qt qt4 qt5 qdialog
PyQt QDialog - returning a value and closing from dialog

I'm working on a user interface in PyQt, and I'm running into a few problems trying to use QDialog. Essentially …

python qt user-interface pyqt qdialog
How do I auto-adjust the size of a QDialog depending on the text length of one of its children?

I have a QDialog I'm working with. It is made somewhat like a QMessageBox. I noticed that the size of …

qt nokia qdialog
how to set QDialog width and height and allow automatic window placement

Is there a way to just initialize a QDialog's width and height and not change the x and y coordinates …

qt qdialog
How do I catch a pyqt closeEvent and minimize the dialog instead of exiting?

I have a QDialog object. When the user clicks on the X button or presses Ctrl+Q, I want the …

python pyqt pyqt4 qdialog