aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quickcontrols/customization/data/styles/override/ItemDelegate.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/quickcontrols/customization/data/styles/override/ItemDelegate.qml')
-rw-r--r--tests/auto/quickcontrols/customization/data/styles/override/ItemDelegate.qml18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/auto/quickcontrols/customization/data/styles/override/ItemDelegate.qml b/tests/auto/quickcontrols/customization/data/styles/override/ItemDelegate.qml
new file mode 100644
index 0000000000..4e4f8d0fdd
--- /dev/null
+++ b/tests/auto/quickcontrols/customization/data/styles/override/ItemDelegate.qml
@@ -0,0 +1,18 @@
+// Copyright (C) 2017 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
+
+import QtQuick
+import "../simple" as Simple
+
+Simple.ItemDelegate {
+ id: control
+ objectName: "itemdelegate-override"
+
+ contentItem: Item {
+ objectName: "itemdelegate-contentItem-override"
+ }
+
+ background: Item {
+ objectName: "itemdelegate-background-override"
+ }
+}