053a7a2d5d7a390fe06c82374360ce094f0ae20d
[profile/ivi/qtdeclarative.git] / examples / declarative / qtquick1 / modelviews / visualitemmodel / visualitemmodel.qml
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
4 ** All rights reserved.
5 ** Contact: http://www.qt-project.org/
6 **
7 ** This file is part of the examples of the Qt Toolkit.
8 **
9 ** $QT_BEGIN_LICENSE:BSD$
10 ** You may use this file under the terms of the BSD license as follows:
11 **
12 ** "Redistribution and use in source and binary forms, with or without
13 ** modification, are permitted provided that the following conditions are
14 ** met:
15 **   * Redistributions of source code must retain the above copyright
16 **     notice, this list of conditions and the following disclaimer.
17 **   * Redistributions in binary form must reproduce the above copyright
18 **     notice, this list of conditions and the following disclaimer in
19 **     the documentation and/or other materials provided with the
20 **     distribution.
21 **   * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor
22 **     the names of its contributors may be used to endorse or promote
23 **     products derived from this software without specific prior written
24 **     permission.
25 **
26 ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
27 ** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
28 ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
29 ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
30 ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
31 ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
32 ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
33 ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
34 ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
35 ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
36 ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
37 ** $QT_END_LICENSE$
38 **
39 ****************************************************************************/
40
41 // This example demonstrates placing items in a view using
42 // a VisualItemModel
43
44 import QtQuick 1.0
45
46 Rectangle {
47     color: "lightgray"
48     width: 240
49     height: 320
50
51     VisualItemModel {
52         id: itemModel
53
54         Rectangle {
55             width: view.width; height: view.height
56             color: "#FFFEF0"
57             Text { text: "Page 1"; font.bold: true; anchors.centerIn: parent }
58
59             Component.onDestruction: print("destroyed 1")
60         }
61         Rectangle {
62             width: view.width; height: view.height
63             color: "#F0FFF7"
64             Text { text: "Page 2"; font.bold: true; anchors.centerIn: parent }
65
66             Component.onDestruction: print("destroyed 2")
67         }
68         Rectangle {
69             width: view.width; height: view.height
70             color: "#F4F0FF"
71             Text { text: "Page 3"; font.bold: true; anchors.centerIn: parent }
72
73             Component.onDestruction: print("destroyed 3")
74         }
75     }
76
77     ListView {
78         id: view
79         anchors { fill: parent; bottomMargin: 30 }
80         model: itemModel
81         preferredHighlightBegin: 0; preferredHighlightEnd: 0
82         highlightRangeMode: ListView.StrictlyEnforceRange
83         orientation: ListView.Horizontal
84         snapMode: ListView.SnapOneItem; flickDeceleration: 2000
85         cacheBuffer: 200
86     }
87
88     Rectangle {
89         width: 240; height: 30
90         anchors { top: view.bottom; bottom: parent.bottom }
91         color: "gray"
92
93         Row {
94             anchors.centerIn: parent
95             spacing: 20
96
97             Repeater {
98                 model: itemModel.count
99
100                 Rectangle {
101                     width: 5; height: 5
102                     radius: 3
103                     color: view.currentIndex == index ? "blue" : "white"
104
105                     MouseArea {
106                         width: 20; height: 20
107                         anchors.centerIn: parent
108                         onClicked: view.currentIndex = index
109                     }
110                 }
111             }
112         }
113     }
114 }