Dialog QML Type
The base class of native dialogs. More...
Import Statement: | import Qt.labs.platform 1.0 |
Since: | Qt 5.8 |
Inherits: | |
Inherited By: | ColorDialog, FileDialog, FolderDialog, FontDialog, and MessageDialog |
Properties
- data : list<Object>
- flags : Qt::WindowFlags
- modality : Qt::WindowModality
- parentWindow : Window
- result : int
- title : string
- visible : bool
Signals
Methods
Detailed Description
The Dialog type provides common QML API for native platform dialogs.
To show a native dialog, construct an instance of one of the concrete Dialog implementations, set the desired properties, and call open(). Dialog emits accepted() or rejected() when the user is done with the dialog.
Note: Types in Qt.labs modules are not guaranteed to remain compatible in future versions.
Property Documentation
This default property holds the list of all objects declared as children of the dialog.
This property holds the window flags of the dialog. The default value is Qt.Dialog
.
This property holds the modality of the dialog. The default value is Qt.WindowModal
.
Available values:
Constant | Description |
---|---|
Qt.NonModal | The dialog is not modal and does not block input to other windows. |
Qt.WindowModal | The dialog is modal to a single window hierarchy and blocks input to its parent window, all grandparent windows, and all siblings of its parent and grandparent windows. |
Qt.ApplicationModal | The dialog is modal to the application and blocks input to all windows. |
parentWindow : Window |
This property holds the result code.
Standard result codes:
Constant | Value |
---|---|
Dialog.Accepted | |
Dialog.Rejected |
Note: MessageDialog sets the result to the value of the clicked standard button instead of using the standard result codes.
Signal Documentation
This signal is emitted when the dialog has been accepted either interactively or by calling accept().
Note: This signal is not emitted when closing the dialog with close().
See also rejected().
This signal is emitted when the dialog has been rejected either interactively or by calling reject().
Note: This signal is not emitted when closing the dialog with close().
See also accepted().
Method Documentation
Closes the dialog and emits the accepted() signal.
See also reject().
Closes the dialog and emits the rejected() signal.
See also accept().
© 2017 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.