aboutsummaryrefslogtreecommitdiffstats
path: root/doc/examples
diff options
context:
space:
mode:
authorLeena Miettinen <riitta-leena.miettinen@qt.io>2017-02-13 14:58:27 +0100
committerLeena Miettinen <riitta-leena.miettinen@qt.io>2017-02-14 07:50:51 +0000
commit37891d92bc1c13d035b6eaefac5e45d0ea638b0f (patch)
tree0870a5ba6fbc77c0fbed9bf8d8bd9786ca6e636d /doc/examples
parent4253588b9631301204640f9edc70aed357f0fd69 (diff)
Doc: Remove Qt Quick UI Forms example and tutorial
It uses types that do not exist in Qt Quick Controls 2, and Qt Creator version 4.3 no longer has a wizard for using the older controls. Change-Id: I42884ca75eefe957493fcb47d6b243a93341b79c Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
Diffstat (limited to 'doc/examples')
-rw-r--r--doc/examples/uiforms/CustomerModelSingleton.qml140
-rw-r--r--doc/examples/uiforms/CustomerTableView.qml78
-rw-r--r--doc/examples/uiforms/History.qml83
-rw-r--r--doc/examples/uiforms/HistoryTableView.qml82
-rw-r--r--doc/examples/uiforms/MainForm.ui.qml96
-rw-r--r--doc/examples/uiforms/Notes.qml84
-rw-r--r--doc/examples/uiforms/NotesForm.ui.qml103
-rw-r--r--doc/examples/uiforms/Settings.qml96
-rw-r--r--doc/examples/uiforms/SettingsForm.ui.qml162
-rw-r--r--doc/examples/uiforms/deployment.pri27
-rw-r--r--doc/examples/uiforms/main.cpp66
-rw-r--r--doc/examples/uiforms/main.qml140
-rw-r--r--doc/examples/uiforms/qml.qrc14
-rw-r--r--doc/examples/uiforms/uiforms.pro15
14 files changed, 0 insertions, 1186 deletions
diff --git a/doc/examples/uiforms/CustomerModelSingleton.qml b/doc/examples/uiforms/CustomerModelSingleton.qml
deleted file mode 100644
index e27bc0142f..0000000000
--- a/doc/examples/uiforms/CustomerModelSingleton.qml
+++ /dev/null
@@ -1,140 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2016 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of the examples of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:BSD$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** BSD License Usage
-** Alternatively, you may use this file under the terms of the BSD license
-** as follows:
-**
-** "Redistribution and use in source and binary forms, with or without
-** modification, are permitted provided that the following conditions are
-** met:
-** * Redistributions of source code must retain the above copyright
-** notice, this list of conditions and the following disclaimer.
-** * Redistributions in binary form must reproduce the above copyright
-** notice, this list of conditions and the following disclaimer in
-** the documentation and/or other materials provided with the
-** distribution.
-** * Neither the name of The Qt Company Ltd nor the names of its
-** contributors may be used to endorse or promote products derived
-** from this software without specific prior written permission.
-**
-**
-** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-pragma Singleton
-
-import QtQuick 2.0
-
-ListModel {
- property QtObject selection
- ListElement {
- customerId: "15881123"
- firstName: "Julia"
- title: "Ms."
- lastName: "Jefferson"
- email: "Julia@example.com"
- address: "Spandia Avenue, Suite 610"
- city: "Toronto"
- zipCode: "92334"
- phoneNumber: "0803-033330"
- notes: "Very demanding customer."
- history: "21.4.2014|Order|coffee~23.4.2014|Order|poster~29.4.2014|Invoice|poster 40$~05.5.2014|Overdue Notice|poster 40$"
- }
-
- ListElement {
- customerId: "29993496"
- firstName: "Tim"
- lastName: "Northington"
- title: "Mr."
- email: "Northington@example.com"
- address: "North Fifth Street 55"
- city: "San Jose"
- zipCode: "95112"
- phoneNumber: "09000-3330"
- notes: "Very good customer."
- history: "18.4.2014|Order|orange juice~23.4.2014|Order|chair~24.4.2014|Complaint|Chair is broken."
- }
-
- ListElement {
- customerId: "37713567"
- firstName: "Daniel"
- lastName: "Krumm"
- title: "Mr."
- email: "Krumm@example.com"
- address: "Waterfront 14"
- city: "Berlin"
- zipCode: "12334"
- phoneNumber: "0708093330"
- notes: "This customer has a lot of Complaints."
- history: "15.4.2014|Order|table~25.4.2014|Return|table~28.4.2014|Complaint|Table had wrong color."
- }
-
- ListElement {
- customerId: "45817387"
- firstName: "Sandra"
- lastName: "Booth"
- title: "Ms."
- email: "Sandrab@example.com"
- address: "Folsom Street 23"
- city: "San Francisco"
- zipCode: "94103"
- phoneNumber: "0103436370"
- notes: "This customer is not paying."
- history: "22.4.2014|Order|coffee~23.4.2014|Order|smartphone~29.4.2014|Invoice|smartphone 200$~05.5.2014|Overdue Notice|smartphone 200$"
- }
-
- ListElement {
- customerId: "588902396"
- firstName: "Lora"
- lastName: "Beckner"
- title: "Ms."
- email: "LoraB@example.com"
- address: " W Wilson Apt 3"
- city: "Los Angeles"
- zipCode: "90086"
- phoneNumber: "0903436360"
- notes: "This customer usually pays late."
- history: "17.4.2014|Order|soft drink~23.4.2014|Order|computer~29.4.2014|Invoice|computer 1200$~07.5.2014|Overdue Notice|computer 1200$"
- }
-
- ListElement {
- customerId: "78885693"
- firstName: "Vanessa"
- lastName: "Newbury"
- title: "Ms."
- email: "VanessaN@example.com"
- address: "Madison Ave. 277"
- city: "New York"
- zipCode: "10016"
- phoneNumber: "0503053530"
- notes: "Deliveries sometime do not arrive on time."
- history: "19.4.2014|Order|coffee~23.4.2014|Order|bicycle~29.4.2014|Invoice|bicycle 500$~06.5.2014|Overdue Notice|bicycle 500$"
- }
-}
diff --git a/doc/examples/uiforms/CustomerTableView.qml b/doc/examples/uiforms/CustomerTableView.qml
deleted file mode 100644
index d4b0e14841..0000000000
--- a/doc/examples/uiforms/CustomerTableView.qml
+++ /dev/null
@@ -1,78 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2016 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of the examples of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:BSD$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** BSD License Usage
-** Alternatively, you may use this file under the terms of the BSD license
-** as follows:
-**
-** "Redistribution and use in source and binary forms, with or without
-** modification, are permitted provided that the following conditions are
-** met:
-** * Redistributions of source code must retain the above copyright
-** notice, this list of conditions and the following disclaimer.
-** * Redistributions in binary form must reproduce the above copyright
-** notice, this list of conditions and the following disclaimer in
-** the documentation and/or other materials provided with the
-** distribution.
-** * Neither the name of The Qt Company Ltd nor the names of its
-** contributors may be used to endorse or promote products derived
-** from this software without specific prior written permission.
-**
-**
-** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-import QtQuick 2.4
-import QtQuick.Controls 1.3
-import QtQuick.Layouts 1.1
-
-TableView {
- id: tableView
-
- property int columnWidth: width / 3 - 1
- Layout.minimumWidth: splitView1.width * 2 / 5
-
- TableViewColumn {
- role: "customerId"
- title: qsTr("Customer Id")
- width: tableView.columnWidth
- }
-
- TableViewColumn {
- role: "firstName"
- title: qsTr("First Name")
- width: tableView.columnWidth
- }
-
- TableViewColumn {
- role: "lastName"
- title: qsTr("Last Name")
- width: tableView.columnWidth
- }
-}
diff --git a/doc/examples/uiforms/History.qml b/doc/examples/uiforms/History.qml
deleted file mode 100644
index 106a034951..0000000000
--- a/doc/examples/uiforms/History.qml
+++ /dev/null
@@ -1,83 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2016 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of the examples of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:BSD$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** BSD License Usage
-** Alternatively, you may use this file under the terms of the BSD license
-** as follows:
-**
-** "Redistribution and use in source and binary forms, with or without
-** modification, are permitted provided that the following conditions are
-** met:
-** * Redistributions of source code must retain the above copyright
-** notice, this list of conditions and the following disclaimer.
-** * Redistributions in binary form must reproduce the above copyright
-** notice, this list of conditions and the following disclaimer in
-** the documentation and/or other materials provided with the
-** distribution.
-** * Neither the name of The Qt Company Ltd nor the names of its
-** contributors may be used to endorse or promote products derived
-** from this software without specific prior written permission.
-**
-**
-** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-import QtQuick 2.4
-import my.customermodel.singleton 1.0
-
-HistoryTableView {
-
- function readData() {
- CustomerModel.selection.forEach(function (rowIndex) {
-
- var history = CustomerModel.get(rowIndex).history
- var entries = history.split("~")
-
- model.clear()
-
- var index
- for (index = 0; index < entries.length; index++) {
- var entry = entries[index]
- var data = entry.split("|")
- model.append({
- date: data[0],
- type: data[1],
- text: data[2]
- })
- }
- })
- }
-
- Connections {
- target: CustomerModel.selection
- onSelectionChanged: readData()
- }
-
- Component.onCompleted: readData()
-}
diff --git a/doc/examples/uiforms/HistoryTableView.qml b/doc/examples/uiforms/HistoryTableView.qml
deleted file mode 100644
index 07908281c0..0000000000
--- a/doc/examples/uiforms/HistoryTableView.qml
+++ /dev/null
@@ -1,82 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2016 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of the examples of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:BSD$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** BSD License Usage
-** Alternatively, you may use this file under the terms of the BSD license
-** as follows:
-**
-** "Redistribution and use in source and binary forms, with or without
-** modification, are permitted provided that the following conditions are
-** met:
-** * Redistributions of source code must retain the above copyright
-** notice, this list of conditions and the following disclaimer.
-** * Redistributions in binary form must reproduce the above copyright
-** notice, this list of conditions and the following disclaimer in
-** the documentation and/or other materials provided with the
-** distribution.
-** * Neither the name of The Qt Company Ltd nor the names of its
-** contributors may be used to endorse or promote products derived
-** from this software without specific prior written permission.
-**
-**
-** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-import QtQuick 2.4
-import QtQuick.Controls 1.3
-import QtQuick.Layouts 1.1
-
-TableView {
- id: tableView
-
- property int columnWidth: width / 3
-
- anchors.fill: parent
-
- TableViewColumn {
- role: "date"
- title: qsTr("Date")
- width: tableView.columnWidth
- }
-
- TableViewColumn {
- role: "type"
- title: qsTr("Type")
- width: tableView.columnWidth
- }
-
- TableViewColumn {
- role: "text"
- title: qsTr("Description")
- width: tableView.columnWidth
- }
-
- model: ListModel {
- }
-}
diff --git a/doc/examples/uiforms/MainForm.ui.qml b/doc/examples/uiforms/MainForm.ui.qml
deleted file mode 100644
index ecbc03f80a..0000000000
--- a/doc/examples/uiforms/MainForm.ui.qml
+++ /dev/null
@@ -1,96 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2016 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of the examples of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:BSD$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** BSD License Usage
-** Alternatively, you may use this file under the terms of the BSD license
-** as follows:
-**
-** "Redistribution and use in source and binary forms, with or without
-** modification, are permitted provided that the following conditions are
-** met:
-** * Redistributions of source code must retain the above copyright
-** notice, this list of conditions and the following disclaimer.
-** * Redistributions in binary form must reproduce the above copyright
-** notice, this list of conditions and the following disclaimer in
-** the documentation and/or other materials provided with the
-** distribution.
-** * Neither the name of The Qt Company Ltd nor the names of its
-** contributors may be used to endorse or promote products derived
-** from this software without specific prior written permission.
-**
-**
-** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-import QtQuick 2.4
-import QtQuick.Controls 1.2
-import QtQuick.Layouts 1.1
-
-Item {
- property alias tableView1: tableView1
-
- SplitView {
- id: splitView1
- anchors.fill: parent
-
- CustomerTableView {
- id: tableView1
- }
-
- TabView {
- id: tabView1
- width: 360
- height: 300
-
- Tab {
- id: tab1
- source: "Settings.qml"
- title: "Customer Settings"
- }
-
- Tab {
- id: tab2
- x: -3
- y: 5
- source: "Notes.qml"
- title: "Customer Notes"
- }
-
- Tab {
- id: tab3
- x: -7
- y: -7
- source: "History.qml"
- title: "Customer History"
- }
- }
- }
-
-}
-
diff --git a/doc/examples/uiforms/Notes.qml b/doc/examples/uiforms/Notes.qml
deleted file mode 100644
index be4c4ae0c9..0000000000
--- a/doc/examples/uiforms/Notes.qml
+++ /dev/null
@@ -1,84 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2016 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of the examples of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:BSD$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** BSD License Usage
-** Alternatively, you may use this file under the terms of the BSD license
-** as follows:
-**
-** "Redistribution and use in source and binary forms, with or without
-** modification, are permitted provided that the following conditions are
-** met:
-** * Redistributions of source code must retain the above copyright
-** notice, this list of conditions and the following disclaimer.
-** * Redistributions in binary form must reproduce the above copyright
-** notice, this list of conditions and the following disclaimer in
-** the documentation and/or other materials provided with the
-** distribution.
-** * Neither the name of The Qt Company Ltd nor the names of its
-** contributors may be used to endorse or promote products derived
-** from this software without specific prior written permission.
-**
-**
-** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-import QtQuick 2.4
-import my.customermodel.singleton 1.0
-
-NotesForm {
- id: form
-
- function readData() {
- CustomerModel.selection.forEach(function (rowIndex) {
- form.textArea1.text = CustomerModel.get(rowIndex).notes
- })
-
- save.enabled = true
- cancel.enabled = true
- form.textArea1.enabled = true
- }
-
- function writeData() {
- CustomerModel.selection.forEach(function (rowIndex) {
- var data = CustomerModel.get(rowIndex)
- data.notes = form.textArea1.text
- CustomerModel.set(rowIndex, data)
- })
- }
-
- cancel.onClicked: readData()
- save.onClicked: writeData()
-
- Connections {
- target: CustomerModel.selection
- onSelectionChanged: form.readData()
- }
-
- Component.onCompleted: readData()
-}
diff --git a/doc/examples/uiforms/NotesForm.ui.qml b/doc/examples/uiforms/NotesForm.ui.qml
deleted file mode 100644
index 46c72cdc4b..0000000000
--- a/doc/examples/uiforms/NotesForm.ui.qml
+++ /dev/null
@@ -1,103 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2016 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of the examples of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:BSD$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** BSD License Usage
-** Alternatively, you may use this file under the terms of the BSD license
-** as follows:
-**
-** "Redistribution and use in source and binary forms, with or without
-** modification, are permitted provided that the following conditions are
-** met:
-** * Redistributions of source code must retain the above copyright
-** notice, this list of conditions and the following disclaimer.
-** * Redistributions in binary form must reproduce the above copyright
-** notice, this list of conditions and the following disclaimer in
-** the documentation and/or other materials provided with the
-** distribution.
-** * Neither the name of The Qt Company Ltd nor the names of its
-** contributors may be used to endorse or promote products derived
-** from this software without specific prior written permission.
-**
-**
-** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-import QtQuick 2.4
-import QtQuick.Layouts 1.0
-import QtQuick.Controls 1.2
-
-Item {
- id: content
- width: 400
- height: 400
- property alias textArea1: textArea1
- property alias cancel: cancel
- property alias save: save
-
- ColumnLayout {
- id: columnLayout1
- height: 100
- anchors.right: parent.right
- anchors.rightMargin: 12
- anchors.left: parent.left
- anchors.leftMargin: 12
- anchors.top: parent.top
- anchors.topMargin: 12
-
- TextArea {
- id: textArea1
- Layout.fillHeight: true
- Layout.fillWidth: true
- }
- }
-
- RowLayout {
- id: rowLayout1
- width: 100
- anchors.right: parent.right
- anchors.rightMargin: 12
- anchors.bottom: parent.bottom
- anchors.bottomMargin: 12
-
- Button {
- id: save
- text: qsTr("Save")
- Layout.fillHeight: true
- Layout.fillWidth: true
- }
-
- Button {
- id: cancel
- text: qsTr("Cancel")
- Layout.fillHeight: true
- Layout.fillWidth: true
- }
- }
-}
-
diff --git a/doc/examples/uiforms/Settings.qml b/doc/examples/uiforms/Settings.qml
deleted file mode 100644
index 6240d75ef6..0000000000
--- a/doc/examples/uiforms/Settings.qml
+++ /dev/null
@@ -1,96 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2016 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of the examples of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:BSD$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** BSD License Usage
-** Alternatively, you may use this file under the terms of the BSD license
-** as follows:
-**
-** "Redistribution and use in source and binary forms, with or without
-** modification, are permitted provided that the following conditions are
-** met:
-** * Redistributions of source code must retain the above copyright
-** notice, this list of conditions and the following disclaimer.
-** * Redistributions in binary form must reproduce the above copyright
-** notice, this list of conditions and the following disclaimer in
-** the documentation and/or other materials provided with the
-** distribution.
-** * Neither the name of The Qt Company Ltd nor the names of its
-** contributors may be used to endorse or promote products derived
-** from this software without specific prior written permission.
-**
-**
-** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-import QtQuick 2.4
-import my.customermodel.singleton 1.0
-
-SettingsForm {
- id: form
- anchors.fill: parent
-
- function readData() {
-
- form.title.model = ["Mr.", "Ms."]
-
- CustomerModel.selection.forEach(function (rowIndex) {
- form.firstName.text = CustomerModel.get(rowIndex).firstName
- form.lastName.text = CustomerModel.get(rowIndex).lastName
- form.customerId.text = CustomerModel.get(rowIndex).customerId
- form.title.currentIndex = form.title.find(CustomerModel.get(rowIndex).title)
- })
-
- save.enabled = true
- cancel.enabled = true
- gridLayout1.enabled = true
- }
-
- function writeData() {
- CustomerModel.selection.forEach(function (rowIndex) {
- var notes = CustomerModel.get(rowIndex).notes
- CustomerModel.set(rowIndex, {
- firstName: form.firstName.text,
- lastName: form.lastName.text,
- customerId: form.customerId.text,
- title: form.title.currentText,
- notes: notes
- })
- })
- }
-
- cancel.onClicked: readData()
- save.onClicked: writeData()
-
- Connections {
- target: CustomerModel.selection
- onSelectionChanged: form.readData()
- }
-
- Component.onCompleted: readData()
-}
diff --git a/doc/examples/uiforms/SettingsForm.ui.qml b/doc/examples/uiforms/SettingsForm.ui.qml
deleted file mode 100644
index c5600440b5..0000000000
--- a/doc/examples/uiforms/SettingsForm.ui.qml
+++ /dev/null
@@ -1,162 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2016 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of the examples of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:BSD$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** BSD License Usage
-** Alternatively, you may use this file under the terms of the BSD license
-** as follows:
-**
-** "Redistribution and use in source and binary forms, with or without
-** modification, are permitted provided that the following conditions are
-** met:
-** * Redistributions of source code must retain the above copyright
-** notice, this list of conditions and the following disclaimer.
-** * Redistributions in binary form must reproduce the above copyright
-** notice, this list of conditions and the following disclaimer in
-** the documentation and/or other materials provided with the
-** distribution.
-** * Neither the name of The Qt Company Ltd nor the names of its
-** contributors may be used to endorse or promote products derived
-** from this software without specific prior written permission.
-**
-**
-** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-import QtQuick 2.4
-import QtQuick.Controls 1.2
-import QtQuick.Layouts 1.0
-
-Item {
- id: content
-
- property alias customerId: customerId
- property alias lastName: lastName
- property alias firstName: firstName
- property alias gridLayout1: gridLayout1
- property alias rowLayout1: rowLayout1
-
- property alias save: save
- property alias cancel: cancel
- property alias title: title
-
- GridLayout {
- id: gridLayout1
- rows: 4
- columns: 3
- rowSpacing: 8
- columnSpacing: 8
- anchors.right: parent.right
- anchors.rightMargin: 12
- anchors.left: parent.left
- anchors.leftMargin: 12
- anchors.top: parent.top
- anchors.topMargin: 12
-
- Label {
- id: label1
- text: qsTr("Title")
- }
-
- Label {
- id: label2
- text: qsTr("First Name")
- }
-
- Label {
- id: label3
- text: qsTr("Last Name")
- }
-
-
- ComboBox {
- id: title
- }
-
-
- TextField {
- id: firstName
- text: ""
- Layout.fillHeight: true
- Layout.fillWidth: true
- placeholderText: qsTr("First Name")
- }
-
-
-
- TextField {
- id: lastName
- Layout.fillHeight: true
- Layout.fillWidth: true
- placeholderText: qsTr("Last Name")
- }
-
-
-
-
- Label {
- id: label4
- text: qsTr("Customer Id")
- Layout.fillWidth: true
- Layout.fillHeight: true
- }
-
- TextField {
- id: customerId
- width: 0
- height: 0
- Layout.fillHeight: true
- Layout.fillWidth: true
- Layout.columnSpan: 3
- placeholderText: qsTr("Customer Id")
- }
- }
-
- RowLayout {
- id: rowLayout1
- anchors.right: parent.right
- anchors.rightMargin: 12
- anchors.bottom: parent.bottom
- anchors.bottomMargin: 12
-
- Button {
- id: save
- text: qsTr("Save")
- Layout.fillHeight: true
- Layout.fillWidth: true
- }
-
- Button {
- id: cancel
- text: qsTr("Cancel")
- Layout.fillHeight: true
- Layout.fillWidth: true
- }
- }
-}
-
diff --git a/doc/examples/uiforms/deployment.pri b/doc/examples/uiforms/deployment.pri
deleted file mode 100644
index 5441b63dc8..0000000000
--- a/doc/examples/uiforms/deployment.pri
+++ /dev/null
@@ -1,27 +0,0 @@
-android-no-sdk {
- target.path = /data/user/qt
- export(target.path)
- INSTALLS += target
-} else:android {
- x86 {
- target.path = /libs/x86
- } else: armeabi-v7a {
- target.path = /libs/armeabi-v7a
- } else {
- target.path = /libs/armeabi
- }
- export(target.path)
- INSTALLS += target
-} else:unix {
- isEmpty(target.path) {
- qnx {
- target.path = /tmp/$${TARGET}/bin
- } else {
- target.path = /opt/$${TARGET}/bin
- }
- export(target.path)
- }
- INSTALLS += target
-}
-
-export(INSTALLS)
diff --git a/doc/examples/uiforms/main.cpp b/doc/examples/uiforms/main.cpp
deleted file mode 100644
index d43c2f0fb3..0000000000
--- a/doc/examples/uiforms/main.cpp
+++ /dev/null
@@ -1,66 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2016 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of the examples of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:BSD$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** BSD License Usage
-** Alternatively, you may use this file under the terms of the BSD license
-** as follows:
-**
-** "Redistribution and use in source and binary forms, with or without
-** modification, are permitted provided that the following conditions are
-** met:
-** * Redistributions of source code must retain the above copyright
-** notice, this list of conditions and the following disclaimer.
-** * Redistributions in binary form must reproduce the above copyright
-** notice, this list of conditions and the following disclaimer in
-** the documentation and/or other materials provided with the
-** distribution.
-** * Neither the name of The Qt Company Ltd nor the names of its
-** contributors may be used to endorse or promote products derived
-** from this software without specific prior written permission.
-**
-**
-** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-#include <QApplication>
-#include <QQmlApplicationEngine>
-#include <QtQml>
-
-int main(int argc, char *argv[])
-{
- QApplication app(argc, argv);
-
- QUrl resourceUrl(QStringLiteral("qrc:/CustomerModelSingleton.qml"));
- qmlRegisterSingletonType(resourceUrl, "my.customermodel.singleton", 1, 0, "CustomerModel");
-
- QQmlApplicationEngine engine;
- engine.load(QUrl(QStringLiteral("qrc:/main.qml")));
-
- return app.exec();
-}
diff --git a/doc/examples/uiforms/main.qml b/doc/examples/uiforms/main.qml
deleted file mode 100644
index 7bba89e22b..0000000000
--- a/doc/examples/uiforms/main.qml
+++ /dev/null
@@ -1,140 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2016 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of the examples of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:BSD$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** BSD License Usage
-** Alternatively, you may use this file under the terms of the BSD license
-** as follows:
-**
-** "Redistribution and use in source and binary forms, with or without
-** modification, are permitted provided that the following conditions are
-** met:
-** * Redistributions of source code must retain the above copyright
-** notice, this list of conditions and the following disclaimer.
-** * Redistributions in binary form must reproduce the above copyright
-** notice, this list of conditions and the following disclaimer in
-** the documentation and/or other materials provided with the
-** distribution.
-** * Neither the name of The Qt Company Ltd nor the names of its
-** contributors may be used to endorse or promote products derived
-** from this software without specific prior written permission.
-**
-**
-** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-import QtQuick 2.4
-import QtQuick.Controls 1.2
-import QtQuick.Dialogs 1.2
-import QtQuick.Layouts 1.1
-import my.customermodel.singleton 1.0
-
-ApplicationWindow {
- visible: true
- width: 640
- height: 480
- title: qsTr("Qt Quick UI Forms")
-
- menuBar: MenuBar {
- Menu {
- title: qsTr("&File")
- MenuItem {
- text: qsTr("E&xit")
- onTriggered: Qt.quit();
- }
- }
- Menu {
- title: qsTr("&Edit")
- MenuItem {
- action: cutAction
- }
- MenuItem {
- action: copyAction
- }
- MenuItem {
- action: pasteAction
- }
- }
- Menu {
- title: qsTr("&Help")
- MenuItem {
- text: qsTr("About...")
- onTriggered: aboutDialog.open()
- }
- }
- }
-
- Action {
- id: copyAction
- text: qsTr("&Copy")
- shortcut: StandardKey.Copy
- iconName: "edit-copy"
- enabled: (!!activeFocusItem && !!activeFocusItem["copy"])
- onTriggered: activeFocusItem.copy()
- }
-
- Action {
- id: cutAction
- text: qsTr("Cu&t")
- shortcut: StandardKey.Cut
- iconName: "edit-cut"
- enabled: (!!activeFocusItem && !!activeFocusItem["cut"])
- onTriggered: activeFocusItem.cut()
- }
-
- Action {
- id: pasteAction
- text: qsTr("&Paste")
- shortcut: StandardKey.Paste
- iconName: "edit-paste"
- enabled: (!!activeFocusItem && !!activeFocusItem["paste"])
- onTriggered: activeFocusItem.paste()
- }
-
- MainForm {
- anchors.fill: parent
- Layout.minimumWidth: 800
- Layout.minimumHeight: 480
- Layout.preferredWidth: 768
- Layout.preferredHeight: 480
- tableView1.model: CustomerModel
-
- Component.onCompleted: CustomerModel.selection = tableView1.selection
- }
-
- MessageDialog {
- id: aboutDialog
- icon: StandardIcon.Information
- title: qsTr("About")
- text: "Qt Quick UI Forms"
- informativeText: qsTr("This example demonstrates how to separate the "
- + "implementation of an application from the UI "
- + "using ui.qml files.")
- }
-}
-
diff --git a/doc/examples/uiforms/qml.qrc b/doc/examples/uiforms/qml.qrc
deleted file mode 100644
index a459cec038..0000000000
--- a/doc/examples/uiforms/qml.qrc
+++ /dev/null
@@ -1,14 +0,0 @@
-<RCC>
- <qresource prefix="/">
- <file>main.qml</file>
- <file>MainForm.ui.qml</file>
- <file>CustomerModelSingleton.qml</file>
- <file>Settings.qml</file>
- <file>SettingsForm.ui.qml</file>
- <file>Notes.qml</file>
- <file>NotesForm.ui.qml</file>
- <file>History.qml</file>
- <file>HistoryTableView.qml</file>
- <file>CustomerTableView.qml</file>
- </qresource>
-</RCC>
diff --git a/doc/examples/uiforms/uiforms.pro b/doc/examples/uiforms/uiforms.pro
deleted file mode 100644
index d11099c2b5..0000000000
--- a/doc/examples/uiforms/uiforms.pro
+++ /dev/null
@@ -1,15 +0,0 @@
-TEMPLATE = app
-
-QT += qml quick widgets
-
-SOURCES += main.cpp
-
-RESOURCES += qml.qrc
-
-# Additional import path used to resolve QML modules in Qt Creator's code model
-QML_IMPORT_PATH =
-
-# Default rules for deployment.
-include(deployment.pri)
-
-DISTFILES +=