Remove "All rights reserved" line from license headers.
[profile/ivi/qtdeclarative.git] / examples / declarative / modelviews / visualdatamodel / sortedmodel.qml
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/
5 **
6 ** This file is part of the examples of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:BSD$
9 ** You may use this file under the terms of the BSD license as follows:
10 **
11 ** "Redistribution and use in source and binary forms, with or without
12 ** modification, are permitted provided that the following conditions are
13 ** met:
14 **   * Redistributions of source code must retain the above copyright
15 **     notice, this list of conditions and the following disclaimer.
16 **   * Redistributions in binary form must reproduce the above copyright
17 **     notice, this list of conditions and the following disclaimer in
18 **     the documentation and/or other materials provided with the
19 **     distribution.
20 **   * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor
21 **     the names of its contributors may be used to endorse or promote
22 **     products derived from this software without specific prior written
23 **     permission.
24 **
25 ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26 ** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27 ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28 ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29 ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30 ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31 ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32 ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33 ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34 ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35 ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
36 **
37 ** $QT_END_LICENSE$
38 **
39 ****************************************************************************/
40
41 import QtQuick 2.0
42
43 Rectangle {
44     width: 480; height: 640
45
46     Component {
47         id: numberDelegate
48
49         Text {
50             id: numberText
51             anchors { left: parent.left; right: parent.right }
52             text: number
53
54             horizontalAlignment: Text.AlignHCenter
55             font.pixelSize: 18
56
57             Text {
58                 anchors { left: parent.left; baseline: parent.baseline }
59                 text: index
60
61                 horizontalAlignment: Text.AlignLeft
62                 font.pixelSize: 12
63             }
64             Text {
65                 anchors { right: parent.right; baseline: parent.baseline }
66                 text: numberText.VisualDataModel.itemsIndex
67
68                 horizontalAlignment: Text.AlignRight
69                 font.pixelSize: 12
70             }
71         }
72     }
73
74     ListView {
75         anchors {
76             left: parent.left; top: parent.top;
77             right: parent.horizontalCenter; bottom: button.top
78             leftMargin: 2; topMargin: 2; rightMargin: 1; bottomMargin: 2
79         }
80
81         model: ListModel {
82             id: unsortedModel
83         }
84         delegate: numberDelegate
85     }
86     ListView {
87         anchors {
88             left: parent.horizontalCenter; top: parent.top;
89             right: parent.right; bottom: button.top
90             leftMargin: 1; topMargin: 2; rightMargin: 2; bottomMargin: 2
91         }
92         model: VisualDataModel {
93             model: unsortedModel
94             delegate: numberDelegate
95
96             items.onChanged: {
97                 for (var i = 0; i < inserted.length; ++i) {
98                     for (var j = inserted[i].index; j < inserted[i].index + inserted[i].count; ++j) {
99                         var number = items.get(j).model.number
100                         for (var l = 0, k = 0; l < unsortedModel.count; ++l) {
101                             if (l == inserted[k].index) {
102                                 l += inserted[k].count - 1
103                                 ++k
104                             } else if (number < items.get(l).model.number) {
105                                 items.move(j, l, 1)
106                                 break
107                             }
108                         }
109                         inserted[i].index += 1;
110                         inserted[i].count -= 1;
111                     }
112                 }
113             }
114         }
115     }
116
117     Rectangle {
118         id: button
119
120         anchors { left: parent.left; right: parent.right; bottom: parent.bottom; margins: 2 }
121         height: moreText.implicitHeight + 4
122
123         color: "black"
124
125         Text {
126             id: moreText
127
128             anchors.fill: parent
129             text: "More"
130             color: "white"
131             font.pixelSize: 18
132             horizontalAlignment: Text.AlignHCenter
133             verticalAlignment: Text.AlignVCenter
134         }
135         MouseArea {
136             anchors.fill: parent
137
138             onClicked: unsortedModel.append({ "number": Math.floor(Math.random() * 100) })
139         }
140     }
141 }