QDialog

Inheritance diagram of QDialog

Inherited by: QFileDialog, QErrorMessage, QColorDialog, QAbstractPrintDialog, QPrintDialog, QAbstractPageSetupDialog, QPageSetupDialog, QWizard, QProgressDialog, QPrintPreviewDialog, QMessageBox, QInputDialog, QFontDialog

Synopsis

Functions

Virtual functions

Slots

Signals

Detailed Description

The PySide.QtGui.QDialog class is the base class of dialog windows.

A dialog window is a top-level window mostly used for short-term tasks and brief communications with the user. QDialogs may be modal or modeless. QDialogs can provide a return value , and they can have default buttons . QDialogs can also have a PySide.QtGui.QSizeGrip in their lower-right corner, using PySide.QtGui.QDialog.setSizeGripEnabled() .

Note that PySide.QtGui.QDialog (an any other widget that has type Qt.Dialog ) uses the parent widget slightly differently from other classes in Qt. A dialog is always a top-level widget, but if it has a parent, its default location is centered on top of the parent’s top-level widget (if it is not top-level itself). It will also share the parent’s taskbar entry.

Use the overload of the QWidget.setParent() function to change the ownership of a PySide.QtGui.QDialog widget. This function allows you to explicitly set the window flags of the reparented widget; using the overloaded function will clear the window flags specifying the window-system properties for the widget (in particular it will reset the Qt.Dialog flag).

Modeless Dialogs

A modeless dialog is a dialog that operates independently of other windows in the same application. Find and replace dialogs in word-processors are often modeless to allow the user to interact with both the application’s main window and with the dialog.

Modeless dialogs are displayed using PySide.QtGui.QWidget.show() , which returns control to the caller immediately.

If you invoke the PySide.QtGui.QWidget.show() function after hiding a dialog, the dialog will be displayed in its original position. This is because the window manager decides the position for windows that have not been explicitly placed by the programmer. To preserve the position of a dialog that has been moved by the user, save its position in your PySide.QtGui.QWidget.closeEvent() handler and then move the dialog to that position, before showing it again.

Default Button

A dialog’s default button is the button that’s pressed when the user presses Enter (Return). This button is used to signify that the user accepts the dialog’s settings and wants to close the dialog. Use QPushButton.setDefault() , QPushButton.isDefault() and QPushButton.autoDefault() to set and control the dialog’s default button.

Escape Key

If the user presses the Esc key in a dialog, QDialog.reject() will be called. This will cause the window to close: The close event cannot be ignored .

Extensibility

Extensibility is the ability to show the dialog in two ways: a partial dialog that shows the most commonly used options, and a full dialog that shows all the options. Typically an extensible dialog will initially appear as a partial dialog, but with a More toggle button. If the user presses the More button down, the dialog is expanded. The Extension Example shows how to achieve extensible dialogs using Qt.

Return Value (Modal Dialogs)

Modal dialogs are often used in situations where a return value is required, e.g. to indicate whether the user pressed OK or Cancel . A dialog can be closed by calling the PySide.QtGui.QDialog.accept() or the PySide.QtGui.QDialog.reject() slots, and exec() will return Accepted or Rejected as appropriate. The exec() call returns the result of the dialog. The result is also available from PySide.QtGui.QDialog.result() if the dialog has not been destroyed.

In order to modify your dialog’s close behavior, you can reimplement the functions PySide.QtGui.QDialog.accept() , PySide.QtGui.QDialog.reject() or PySide.QtGui.QDialog.done() . The PySide.QtGui.QWidget.closeEvent() function should only be reimplemented to preserve the dialog’s position or to override the standard close or reject behavior.

Code Examples

A modal dialog:

def countWords(self):
    dialog = WordCountDialog(self)
    dialog.setWordCount(document().wordCount())
    dialog.exec_()

A modeless dialog:

def find(self)

    if !self.findDialog:
        self.findDialog = FindDialog(self)
        connect(findDialog, SIGNAL("findNext()"), self, SLOT("findNext()"))


    self.findDialog.show()
    self.findDialog.raise()
    self.findDialog.activateWindow()

See also

PySide.QtGui.QDialogButtonBox PySide.QtGui.QTabWidget PySide.QtGui.QWidget PySide.QtGui.QProgressDialog GUI Design Handbook: Dialogs, Standard Extension Example Standard Dialogs Example

class PySide.QtGui.QDialog([parent=None[, f=0]])
Parameters:
PySide.QtGui.QDialog.DialogCode

The value returned by a modal dialog.

Constant Description
QDialog.Accepted  
QDialog.Rejected  
PySide.QtGui.QDialog.accept()

Hides the modal dialog and sets the result code to Accepted .

PySide.QtGui.QDialog.accepted()
PySide.QtGui.QDialog.adjustPosition(arg__1)
Parameters:arg__1PySide.QtGui.QWidget
PySide.QtGui.QDialog.done(arg__1)
Parameters:arg__1PySide.QtCore.int

Closes the dialog and sets its result code to r . If this dialog is shown with exec() , PySide.QtGui.QDialog.done() causes the local event loop to finish, and exec() to return r .

As with QWidget.close() , PySide.QtGui.QDialog.done() deletes the dialog if the Qt.WA_DeleteOnClose flag is set. If the dialog is the application’s main widget, the application terminates. If the dialog is the last window closed, the QApplication.lastWindowClosed() signal is emitted.

PySide.QtGui.QDialog.exec_()
Return type:PySide.QtCore.int

Shows the dialog as a modal dialog , blocking until the user closes it. The function returns a QDialog.DialogCode result.

If the dialog is application modal , users cannot interact with any other window in the same application until they close the dialog. If the dialog is window modal , only interaction with the parent window is blocked while the dialog is open. By default, the dialog is application modal.

PySide.QtGui.QDialog.finished(result)
Parameters:resultPySide.QtCore.int
PySide.QtGui.QDialog.isSizeGripEnabled()
Return type:PySide.QtCore.bool

This property holds whether the size grip is enabled.

A PySide.QtGui.QSizeGrip is placed in the bottom-right corner of the dialog when this property is enabled. By default, the size grip is disabled.

PySide.QtGui.QDialog.open()

Shows the dialog as a window modal dialog , returning immediately.

PySide.QtGui.QDialog.reject()

Hides the modal dialog and sets the result code to Rejected .

PySide.QtGui.QDialog.rejected()
PySide.QtGui.QDialog.result()
Return type:PySide.QtCore.int

Returns the modal dialog’s result code, Accepted or Rejected .

Do not call this function if the dialog was constructed with the Qt.WA_DeleteOnClose attribute.

PySide.QtGui.QDialog.setModal(modal)
Parameters:modalPySide.QtCore.bool

This property holds whether PySide.QtGui.QWidget.show() should pop up the dialog as modal or modeless.

By default, this property is false and PySide.QtGui.QWidget.show() pops up the dialog as modeless. Setting his property to true is equivalent to setting QWidget.windowModality to Qt.ApplicationModal .

exec() ignores the value of this property and always pops up the dialog as modal.

PySide.QtGui.QDialog.setResult(r)
Parameters:rPySide.QtCore.int

Sets the modal dialog’s result code to i .

Note

We recommend that you use one of the values defined by QDialog.DialogCode .

PySide.QtGui.QDialog.setSizeGripEnabled(arg__1)
Parameters:arg__1PySide.QtCore.bool

This property holds whether the size grip is enabled.

A PySide.QtGui.QSizeGrip is placed in the bottom-right corner of the dialog when this property is enabled. By default, the size grip is disabled.