summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorDominik Holland <dominik.holland@pelagicore.com>2018-09-05 17:04:52 +0200
committerDominik Holland <dominik.holland@pelagicore.com>2018-10-15 12:50:15 +0000
commite51c9d592c477ba8ae18b3360517fdd8abf848df (patch)
treecc2eae473de3b50ab506be6d950c87c3c42f88ee /examples
parent40d3a80737d0560fb03a8de83860dc567053a96f (diff)
downloadqtivi-e51c9d592c477ba8ae18b3360517fdd8abf848df.tar.gz
Extend the addressbook example to use the new QIviSimulationEngine
Task-number: AUTOSUITE-628 Change-Id: Ia90e42d801c68d91dd71b309ea4c518f349f13f9 Reviewed-by: Robert Griebl <robert.griebl@pelagicore.com>
Diffstat (limited to 'examples')
-rw-r--r--examples/ivicore/qface-ivi-addressbook/backend_simulator/backend_simulator.pro4
-rw-r--r--examples/ivicore/qface-ivi-addressbook/backend_simulator/plugin_resource.qrc5
-rw-r--r--examples/ivicore/qface-ivi-addressbook/backend_simulator/simulation.qml71
-rw-r--r--examples/ivicore/qface-ivi-addressbook/demo/main.qml3
-rw-r--r--examples/ivicore/qface-ivi-addressbook/example-ivi-addressbook.yaml4
5 files changed, 86 insertions, 1 deletions
diff --git a/examples/ivicore/qface-ivi-addressbook/backend_simulator/backend_simulator.pro b/examples/ivicore/qface-ivi-addressbook/backend_simulator/backend_simulator.pro
index 76974e5..38e65e7 100644
--- a/examples/ivicore/qface-ivi-addressbook/backend_simulator/backend_simulator.pro
+++ b/examples/ivicore/qface-ivi-addressbook/backend_simulator/backend_simulator.pro
@@ -20,3 +20,7 @@ PLUGIN_CLASS_NAME = AddressBookPlugin
CONFIG += install_ok # Do not cargo-cult this!
target.path = $$[QT_INSTALL_EXAMPLES]/ivicore/qface-ivi-addressbook/qtivi/
INSTALLS += target
+
+#! [0]
+RESOURCES += plugin_resource.qrc
+#! [0]
diff --git a/examples/ivicore/qface-ivi-addressbook/backend_simulator/plugin_resource.qrc b/examples/ivicore/qface-ivi-addressbook/backend_simulator/plugin_resource.qrc
new file mode 100644
index 0000000..7b89deb
--- /dev/null
+++ b/examples/ivicore/qface-ivi-addressbook/backend_simulator/plugin_resource.qrc
@@ -0,0 +1,5 @@
+<RCC>
+ <qresource prefix="/plugin_resource">
+ <file>simulation.qml</file>
+ </qresource>
+</RCC>
diff --git a/examples/ivicore/qface-ivi-addressbook/backend_simulator/simulation.qml b/examples/ivicore/qface-ivi-addressbook/backend_simulator/simulation.qml
new file mode 100644
index 0000000..7810632
--- /dev/null
+++ b/examples/ivicore/qface-ivi-addressbook/backend_simulator/simulation.qml
@@ -0,0 +1,71 @@
+/****************************************************************************
+**
+** Copyright (C) 2018 Pelagicore AG
+** Contact: https://www.qt.io/licensing/
+**
+** This file is part of the QtIvi module of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:BSD-QTAS$
+** Commercial License Usage
+** Licensees holding valid commercial Qt Automotive Suite 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$
+**
+** SPDX-License-Identifier: BSD-3-Clause
+**
+****************************************************************************/
+
+//! [0]
+import QtQuick 2.0
+import example.ivi.addressbook.simulation 1.0
+
+Item {
+ AddressBookBackend {
+
+ function insertContact(reply, index, contact) {
+ print("BACKEND SIMULATION INSERT CONTACT")
+ contacts.insert(index, contact);
+ reply.setSuccess(true);
+ }
+
+ Component.onCompleted: {
+ console.log("BACKEND SIMULATION CREATED")
+ }
+ }
+}
+//! [0]
diff --git a/examples/ivicore/qface-ivi-addressbook/demo/main.qml b/examples/ivicore/qface-ivi-addressbook/demo/main.qml
index 30a6824..1f93250 100644
--- a/examples/ivicore/qface-ivi-addressbook/demo/main.qml
+++ b/examples/ivicore/qface-ivi-addressbook/demo/main.qml
@@ -78,6 +78,7 @@ Window {
Layout.fillWidth: true
Layout.fillHeight: true
model: addressBook.contacts
+ clip: true
delegate: ItemDelegate {
width: parent.width
@@ -89,7 +90,7 @@ Window {
Button {
Layout.fillWidth: true
text: "New Contact"
- onClicked: addressBook.insertContact(0, AddressBookModule.contact())
+ onClicked: addressBook.insertContact(0, AddressBookModule.contact("Foo", "Bar", "12234"))
}
}
}
diff --git a/examples/ivicore/qface-ivi-addressbook/example-ivi-addressbook.yaml b/examples/ivicore/qface-ivi-addressbook/example-ivi-addressbook.yaml
index 4762f2a..20304e3 100644
--- a/examples/ivicore/qface-ivi-addressbook/example-ivi-addressbook.yaml
+++ b/examples/ivicore/qface-ivi-addressbook/example-ivi-addressbook.yaml
@@ -1,3 +1,7 @@
+Example.IVI.AddressBook:
+ config_simulator:
+ simulationFile: ":/plugin_resource/simulation.qml"
+
Example.IVI.AddressBook.AddressBook#contacts:
config_simulator:
default: [[ "John", "Doe", "12345" ], [ "Jane", "Doe", "67890" ]]