diff options
| author | Shawn Rutledge <shawn.rutledge@digia.com> | 2013-12-16 15:22:14 +0100 |
|---|---|---|
| committer | The Qt Project <gerrit-noreply@qt-project.org> | 2014-01-03 17:02:18 +0100 |
| commit | ba9ba084124403bd8930e29d8afcea9d64b6c0b6 (patch) | |
| tree | e8c3a10eeaef753cf3c65673556bbd7f663933aa /examples/quick/dialogs/systemdialogs/systemdialogs.pro | |
| parent | c34ce66f7b3dc7cb46d14181d46e438536a4d5f2 (diff) | |
move QtQuick.Dialogs from qtdeclarative to qtquickcontrols
This will enable using Controls in the QML dialog implementations.
For now, Controls are used only as drop-in replacements for the
Button, Checkbox, and TextField which were custom implementations
in the qtdeclarative module before.
Change-Id: Ic79e9e8e5715a72ce51f4c724bfdfd33653300f2
Reviewed-by: Liang Qi <liang.qi@digia.com>
Diffstat (limited to 'examples/quick/dialogs/systemdialogs/systemdialogs.pro')
| -rw-r--r-- | examples/quick/dialogs/systemdialogs/systemdialogs.pro | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/examples/quick/dialogs/systemdialogs/systemdialogs.pro b/examples/quick/dialogs/systemdialogs/systemdialogs.pro new file mode 100644 index 000000000..fcc61bb8a --- /dev/null +++ b/examples/quick/dialogs/systemdialogs/systemdialogs.pro @@ -0,0 +1,18 @@ +QT += qml quick +!android: !ios: !blackberry: qtHaveModule(widgets): QT += widgets + +QT += quick qml +SOURCES += main.cpp +include(../../controls/shared/shared.pri) + +OTHER_FILES += \ + systemdialogs.qml \ + FileDialogs.qml \ + ColorDialogs.qml \ + FontDialogs.qml \ + MessageDialogs.qml + +target.path = $$[QT_INSTALL_EXAMPLES]/quick/dialogs/systemdialogs +INSTALLS += target + +RESOURCES += systemdialogs.qrc |
