aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativegridview/data
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativegridview/data')
-rw-r--r--tests/auto/qtquick1/qdeclarativegridview/data/attachedSignals.qml27
-rw-r--r--tests/auto/qtquick1/qdeclarativegridview/data/displaygrid.qml39
-rw-r--r--tests/auto/qtquick1/qdeclarativegridview/data/footer.qml40
-rw-r--r--tests/auto/qtquick1/qdeclarativegridview/data/gridview-enforcerange.qml58
-rw-r--r--tests/auto/qtquick1/qdeclarativegridview/data/gridview-initCurrent.qml52
-rw-r--r--tests/auto/qtquick1/qdeclarativegridview/data/gridview-noCurrent.qml52
-rw-r--r--tests/auto/qtquick1/qdeclarativegridview/data/gridview1.qml66
-rw-r--r--tests/auto/qtquick1/qdeclarativegridview/data/gridview2.qml26
-rw-r--r--tests/auto/qtquick1/qdeclarativegridview/data/gridview3.qml6
-rw-r--r--tests/auto/qtquick1/qdeclarativegridview/data/header.qml40
-rw-r--r--tests/auto/qtquick1/qdeclarativegridview/data/manual-highlight.qml48
-rw-r--r--tests/auto/qtquick1/qdeclarativegridview/data/mirroring.qml43
-rw-r--r--tests/auto/qtquick1/qdeclarativegridview/data/propertychangestest.qml69
-rw-r--r--tests/auto/qtquick1/qdeclarativegridview/data/setindex.qml29
14 files changed, 0 insertions, 595 deletions
diff --git a/tests/auto/qtquick1/qdeclarativegridview/data/attachedSignals.qml b/tests/auto/qtquick1/qdeclarativegridview/data/attachedSignals.qml
deleted file mode 100644
index d527e9d256..0000000000
--- a/tests/auto/qtquick1/qdeclarativegridview/data/attachedSignals.qml
+++ /dev/null
@@ -1,27 +0,0 @@
-import QtQuick 1.0
-
-GridView {
- id: view
- width: 240; height: 320
-
- property variant addedDelegates: []
- property int removedDelegateCount
-
- model: testModel
-
- cellWidth: delegateWidth; cellHeight: delegateHeight
-
- delegate: Rectangle {
- width: delegateWidth; height: delegateHeight
- border.width: 1
- GridView.onAdd: {
- var obj = GridView.view.addedDelegates
- obj.push(model.name)
- GridView.view.addedDelegates = obj
- }
- GridView.onRemove: {
- view.removedDelegateCount += 1
- }
- }
-}
-
diff --git a/tests/auto/qtquick1/qdeclarativegridview/data/displaygrid.qml b/tests/auto/qtquick1/qdeclarativegridview/data/displaygrid.qml
deleted file mode 100644
index 93f39ffd96..0000000000
--- a/tests/auto/qtquick1/qdeclarativegridview/data/displaygrid.qml
+++ /dev/null
@@ -1,39 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- width: 240
- height: 320
- color: "#ffffff"
- resources: [
- Component {
- id: myDelegate
- Rectangle {
- id: wrapper
- objectName: "wrapper"
- width: 80
- height: 60
- border.color: "blue"
- Text {
- text: index
- }
- Text {
- y: 20
- id: displayText
- objectName: "displayText"
- text: display
- }
- color: GridView.isCurrentItem ? "lightsteelblue" : "white"
- }
- }
- ]
- GridView {
- id: grid
- objectName: "grid"
- width: 240
- height: 320
- cellWidth: 80
- cellHeight: 60
- model: testModel
- delegate: myDelegate
- }
-}
diff --git a/tests/auto/qtquick1/qdeclarativegridview/data/footer.qml b/tests/auto/qtquick1/qdeclarativegridview/data/footer.qml
deleted file mode 100644
index b41e2ac0b2..0000000000
--- a/tests/auto/qtquick1/qdeclarativegridview/data/footer.qml
+++ /dev/null
@@ -1,40 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- function changeFooter() {
- grid.footer = footer2
- }
- width: 240
- height: 320
- color: "#ffffff"
- Component {
- id: myDelegate
- Rectangle {
- id: wrapper
- objectName: "wrapper"
- width: 80
- height: 60
- border.color: "blue"
- Text {
- text: index
- }
- color: GridView.isCurrentItem ? "lightsteelblue" : "white"
- }
- }
- GridView {
- id: grid
- objectName: "grid"
- width: 240
- height: 320
- cellWidth: 80
- cellHeight: 60
- model: testModel
- delegate: myDelegate
- footer: Text { objectName: "footer"; text: "Footer"; height: 30 }
- }
-
- Component {
- id: footer2
- Text { objectName: "footer2"; text: "Footer 2"; height: 20 }
- }
-}
diff --git a/tests/auto/qtquick1/qdeclarativegridview/data/gridview-enforcerange.qml b/tests/auto/qtquick1/qdeclarativegridview/data/gridview-enforcerange.qml
deleted file mode 100644
index 69eaa4774c..0000000000
--- a/tests/auto/qtquick1/qdeclarativegridview/data/gridview-enforcerange.qml
+++ /dev/null
@@ -1,58 +0,0 @@
-import QtQuick 1.1
-
-Rectangle {
- width: 240
- height: 320
- color: "#ffffff"
- Component {
- id: myDelegate
- Item {
- id: wrapper
- objectName: "wrapper"
- height: 100
- width: 100
- Text {
- text: index
- }
- Text {
- y: 25
- id: textName
- objectName: "textName"
- text: name
- }
- Text {
- y: 50
- id: textNumber
- objectName: "textNumber"
- text: number
- }
- Text {
- y: 75
- text: wrapper.y
- }
- }
- }
-
- Component {
- id: myHighlight
- Rectangle {
- color: "lightsteelblue"
- }
- }
-
- GridView {
- id: grid
- objectName: "grid"
- width: 240
- height: 320
- model: testModel
- delegate: myDelegate
- highlight: myHighlight
- flow: (testTopToBottom == true) ? GridView.TopToBottom : GridView.LeftToRight
- layoutDirection: (testRightToLeft == true) ? Qt.RightToLeft : Qt.LeftToRight
- preferredHighlightBegin: 100
- preferredHighlightEnd: 100
- highlightRangeMode: "StrictlyEnforceRange"
- focus: true
- }
-}
diff --git a/tests/auto/qtquick1/qdeclarativegridview/data/gridview-initCurrent.qml b/tests/auto/qtquick1/qdeclarativegridview/data/gridview-initCurrent.qml
deleted file mode 100644
index 421f810f2c..0000000000
--- a/tests/auto/qtquick1/qdeclarativegridview/data/gridview-initCurrent.qml
+++ /dev/null
@@ -1,52 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- property int current: grid.currentIndex
- width: 240
- height: 320
- color: "#ffffff"
- resources: [
- Component {
- id: myDelegate
- Rectangle {
- id: wrapper
- objectName: "wrapper"
- width: 80
- height: 60
- border.color: "blue"
- Text {
- text: index
- }
- Text {
- x: 40
- text: wrapper.x + ", " + wrapper.y
- }
- Text {
- y: 20
- id: textName
- objectName: "textName"
- text: name
- }
- Text {
- y: 40
- id: textNumber
- objectName: "textNumber"
- text: number
- }
- color: GridView.isCurrentItem ? "lightsteelblue" : "white"
- }
- }
- ]
- GridView {
- id: grid
- objectName: "grid"
- focus: true
- width: 240
- height: 320
- currentIndex: 35
- cellWidth: 80
- cellHeight: 60
- delegate: myDelegate
- model: testModel
- }
-}
diff --git a/tests/auto/qtquick1/qdeclarativegridview/data/gridview-noCurrent.qml b/tests/auto/qtquick1/qdeclarativegridview/data/gridview-noCurrent.qml
deleted file mode 100644
index 1189649ea1..0000000000
--- a/tests/auto/qtquick1/qdeclarativegridview/data/gridview-noCurrent.qml
+++ /dev/null
@@ -1,52 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- property int current: grid.currentIndex
- width: 240
- height: 320
- color: "#ffffff"
- resources: [
- Component {
- id: myDelegate
- Rectangle {
- id: wrapper
- objectName: "wrapper"
- width: 80
- height: 60
- border.color: "blue"
- Text {
- text: index
- }
- Text {
- x: 40
- text: wrapper.x + ", " + wrapper.y
- }
- Text {
- y: 20
- id: textName
- objectName: "textName"
- text: name
- }
- Text {
- y: 40
- id: textNumber
- objectName: "textNumber"
- text: number
- }
- color: GridView.isCurrentItem ? "lightsteelblue" : "white"
- }
- }
- ]
- GridView {
- id: grid
- objectName: "grid"
- focus: true
- width: 240
- height: 320
- currentIndex: -1
- cellWidth: 80
- cellHeight: 60
- delegate: myDelegate
- model: testModel
- }
-}
diff --git a/tests/auto/qtquick1/qdeclarativegridview/data/gridview1.qml b/tests/auto/qtquick1/qdeclarativegridview/data/gridview1.qml
deleted file mode 100644
index a2b0a915d9..0000000000
--- a/tests/auto/qtquick1/qdeclarativegridview/data/gridview1.qml
+++ /dev/null
@@ -1,66 +0,0 @@
-import QtQuick 1.1
-
-Rectangle {
- id: root
- property int count: grid.count
- property bool showHeader: false
- property bool showFooter: false
- property int added: -1
- property variant removed
-
- width: 240
- height: 320
- color: "#ffffff"
- resources: [
- Component {
- id: myDelegate
- Rectangle {
- id: wrapper
- objectName: "wrapper"
- width: 80
- height: 60
- border.color: "blue"
- Text {
- text: index
- }
- Text {
- x: 40
- text: wrapper.x + ", " + wrapper.y
- }
- Text {
- y: 20
- id: textName
- objectName: "textName"
- text: name
- }
- Text {
- y: 40
- id: textNumber
- objectName: "textNumber"
- text: number
- }
- color: GridView.isCurrentItem ? "lightsteelblue" : "white"
- GridView.onAdd: root.added = index
- GridView.onRemove: root.removed = name
- }
- },
- Component {
- id: headerFooter
- Rectangle { width: 30; height: 320; color: "blue" }
- }
- ]
- GridView {
- id: grid
- objectName: "grid"
- width: 240
- height: 320
- cellWidth: 80
- cellHeight: 60
- flow: (testTopToBottom == false) ? GridView.LeftToRight : GridView.TopToBottom
- layoutDirection: (testRightToLeft == true) ? Qt.RightToLeft : Qt.LeftToRight
- model: testModel
- delegate: myDelegate
- header: root.showHeader ? headerFooter : null
- footer: root.showFooter ? headerFooter : null
- }
-}
diff --git a/tests/auto/qtquick1/qdeclarativegridview/data/gridview2.qml b/tests/auto/qtquick1/qdeclarativegridview/data/gridview2.qml
deleted file mode 100644
index 7559a7ff36..0000000000
--- a/tests/auto/qtquick1/qdeclarativegridview/data/gridview2.qml
+++ /dev/null
@@ -1,26 +0,0 @@
-import QtQuick 1.0
-
-GridView {
- anchors.fill: parent
- width: 320; height: 200
- cellWidth: 100; cellHeight: 100; cacheBuffer: 200; focus: true
- keyNavigationWraps: true; highlightFollowsCurrentItem: false
-
- model: ListModel {
- id: appModel
- ListElement { lColor: "red" }
- ListElement { lColor: "yellow" }
- ListElement { lColor: "green" }
- ListElement { lColor: "blue" }
- }
-
- delegate: Item {
- width: 100; height: 100
- Rectangle {
- color: lColor; x: 4; y: 4
- width: 92; height: 92
- }
- }
-
- highlight: Rectangle { width: 100; height: 100; color: "black" }
-}
diff --git a/tests/auto/qtquick1/qdeclarativegridview/data/gridview3.qml b/tests/auto/qtquick1/qdeclarativegridview/data/gridview3.qml
deleted file mode 100644
index ab4ceeb76d..0000000000
--- a/tests/auto/qtquick1/qdeclarativegridview/data/gridview3.qml
+++ /dev/null
@@ -1,6 +0,0 @@
-import QtQuick 1.0
-
-GridView {
- anchors.fill: parent
- width: 320; height: 200
-}
diff --git a/tests/auto/qtquick1/qdeclarativegridview/data/header.qml b/tests/auto/qtquick1/qdeclarativegridview/data/header.qml
deleted file mode 100644
index f39da55dda..0000000000
--- a/tests/auto/qtquick1/qdeclarativegridview/data/header.qml
+++ /dev/null
@@ -1,40 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- function changeHeader() {
- grid.header = header2
- }
- width: 240
- height: 320
- color: "#ffffff"
- Component {
- id: myDelegate
- Rectangle {
- id: wrapper
- objectName: "wrapper"
- width: 80
- height: 60
- border.color: "blue"
- Text {
- text: index
- }
- color: GridView.isCurrentItem ? "lightsteelblue" : "white"
- }
- }
- GridView {
- id: grid
- objectName: "grid"
- width: 240
- height: 320
- cellWidth: 80
- cellHeight: 60
- model: testModel
- delegate: myDelegate
- header: Text { objectName: "header"; text: "Header"; height: 30 }
- }
-
- Component {
- id: header2
- Text { objectName: "header2"; text: "Header 2"; height: 20 }
- }
-}
diff --git a/tests/auto/qtquick1/qdeclarativegridview/data/manual-highlight.qml b/tests/auto/qtquick1/qdeclarativegridview/data/manual-highlight.qml
deleted file mode 100644
index d08284792e..0000000000
--- a/tests/auto/qtquick1/qdeclarativegridview/data/manual-highlight.qml
+++ /dev/null
@@ -1,48 +0,0 @@
-import QtQuick 1.0
-
-Item {
-
- ListModel {
- id: model
- ListElement {
- name: "Bill Smith"
- number: "555 3264"
- }
- ListElement {
- name: "John Brown"
- number: "555 8426"
- }
- ListElement {
- name: "Sam Wise"
- number: "555 0473"
- }
- ListElement {
- name: "Bob Brown"
- number: "555 5845"
- }
- }
-
- Component {
- id: highlight
- Rectangle {
- objectName: "highlight"
- width: 80; height: 80
- color: "lightsteelblue"; radius: 5
- y: grid.currentItem.y+5
- x: grid.currentItem.x+5
- }
- }
-
- GridView {
- id: grid
- objectName: "grid"
- anchors.fill: parent
- model: model
- delegate: Text { objectName: "wrapper"; text: name; width: 80; height: 80 }
-
- highlight: highlight
- highlightFollowsCurrentItem: false
- focus: true
- }
-
-}
diff --git a/tests/auto/qtquick1/qdeclarativegridview/data/mirroring.qml b/tests/auto/qtquick1/qdeclarativegridview/data/mirroring.qml
deleted file mode 100644
index 54de16bc41..0000000000
--- a/tests/auto/qtquick1/qdeclarativegridview/data/mirroring.qml
+++ /dev/null
@@ -1,43 +0,0 @@
-// This example demonstrates how item positioning
-// changes in right-to-left layout direction
-
-import QtQuick 1.1
-
-Rectangle {
- color: "lightgray"
- width: 340
- height: 370
-
- VisualItemModel {
- id: itemModel
- objectName: "itemModel"
- Rectangle {
- objectName: "item1"
- height: 110; width: 120; color: "#FFFEF0"
- Text { objectName: "text1"; text: "index: " + parent.VisualItemModel.index; font.bold: true; anchors.centerIn: parent }
- }
- Rectangle {
- objectName: "item2"
- height: 130; width: 150; color: "#F0FFF7"
- Text { objectName: "text2"; text: "index: " + parent.VisualItemModel.index; font.bold: true; anchors.centerIn: parent }
- }
- Rectangle {
- objectName: "item3"
- height: 170; width: 190; color: "#F4F0FF"
- Text { objectName: "text3"; text: "index: " + parent.VisualItemModel.index; font.bold: true; anchors.centerIn: parent }
- }
- }
-
- GridView {
- id: view
- objectName: "view"
- cellWidth: 190
- cellHeight: 170
- anchors.fill: parent
- anchors.bottomMargin: 30
- model: itemModel
- highlightRangeMode: "StrictlyEnforceRange"
- flow: GridView.TopToBottom
- flickDeceleration: 2000
- }
-}
diff --git a/tests/auto/qtquick1/qdeclarativegridview/data/propertychangestest.qml b/tests/auto/qtquick1/qdeclarativegridview/data/propertychangestest.qml
deleted file mode 100644
index 10df234261..0000000000
--- a/tests/auto/qtquick1/qdeclarativegridview/data/propertychangestest.qml
+++ /dev/null
@@ -1,69 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- width: 360; height: 120; color: "white"
- Component {
- id: delegate
- Item {
- id: wrapper
- width: 180; height: 40;
- Column {
- x: 5; y: 5
- Text { text: '<b>Name:</b> ' + name }
- Text { text: '<b>Number:</b> ' + number }
- }
- }
- }
- Component {
- id: highlightRed
- Rectangle {
- color: "red"
- radius: 10
- opacity: 0.5
- }
- }
- GridView {
- cellWidth:180
- cellHeight:40
- objectName: "gridView"
- anchors.fill: parent
- model: listModel
- delegate: delegate
- highlight: highlightRed
- focus: true
- keyNavigationWraps: true
- cacheBuffer: 10
- flow: GridView.LeftToRight
- }
-
- data:[
- ListModel {
- id: listModel
- ListElement {
- name: "Bill Smith"
- number: "555 3264"
- }
- ListElement {
- name: "John Brown"
- number: "555 8426"
- }
- ListElement {
- name: "Sam Wise"
- number: "555 0473"
- }
- },
- ListModel {
- objectName: "alternateModel"
- ListElement {
- name: "Jack"
- number: "555 8426"
- }
- ListElement {
- name: "Mary"
- number: "555 3264"
- }
- }
- ]
-}
-
-
diff --git a/tests/auto/qtquick1/qdeclarativegridview/data/setindex.qml b/tests/auto/qtquick1/qdeclarativegridview/data/setindex.qml
deleted file mode 100644
index 36bf67de15..0000000000
--- a/tests/auto/qtquick1/qdeclarativegridview/data/setindex.qml
+++ /dev/null
@@ -1,29 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- width: 200
- height: 200
- Component {
- id: appDelegate
-
- Item {
- id : wrapper
- function startupFunction() {
- if (index == 5) view.currentIndex = index;
- }
- Component.onCompleted: startupFunction();
- width: 30; height: 30
- Text { text: index }
- }
- }
-
- GridView {
- id: view
- objectName: "grid"
- anchors.fill: parent
- cellWidth: 30; cellHeight: 30
- model: 35
- delegate: appDelegate
- focus: true
- }
-}