Qt
Internal/Contributor docs for the Qt SDK. <b>Note:</b> These are NOT official API docs; those are found <a href='https://doc.qt.io/'>here</a>.
Loading...
Searching...
No Matches
dialogs.qdoc
Go to the documentation of this file.
1// Copyright (C) 2016 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GFDL-1.3-no-invariants-only
3
4/*!
5 \group standard-dialogs
6 \ingroup qt-gui-concepts
7 \title Standard Dialogs
8 \brief A list of Qt classes for implementing standard dialogs.
9*/
10
11/*!
12 \page dialogs.html
13 \title Dialog Windows
14 \ingroup qt-gui-concepts
15 \brief An overview over dialog windows.
16
17 \previouspage Application Main Window
18 \nextpage Desktop Integration
19
20 Dialogs can be \e{modal}, in which case the user is required to provide
21 necessary information before work in the main window
22 can continue, or \e{modeless}. Modeless dialogs do not prevent the user from
23 interacting with any of the other windows in the application.
24
25 Qt provides a set of ready-made dialogs for file, font, color-selection
26 and more.
27
28 \annotatedlist standard-dialogs
29
30 Custom dialogs can be easily created by composing regular widgets into
31 a QDialog. These classes are specifically designed for building custom
32 dialogs:
33
34 \annotatedlist dialog-classes
35*/