Remove "All rights reserved" line from license headers.
[profile/ivi/qtdeclarative.git] / examples / tutorials / gettingStartedQml / core / MenuBar.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 QtDeclarative module 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     id: menuBar
45     width: 1000; height:300
46     color:"transparent"
47     property color fileColor: "plum"
48     property color editColor: "powderblue"
49
50     property real partition: 1/10
51
52     Column {
53         anchors.fill: parent
54         //container for the header and the buttons
55         z: 1
56         Rectangle {
57             id: labelList
58             height:menuBar.height*partition
59             width: menuBar.width
60             color: "beige"
61             gradient: Gradient {
62                 GradientStop { position: 0.0; color: "#8C8F8C" }
63                 GradientStop { position: 0.17; color: "#6A6D6A" }
64                 GradientStop { position: 0.98;color: "#3F3F3F" }
65                 GradientStop { position: 1.0; color: "#0e1B20" }
66             }
67             Text {
68                 height: parent.height
69                 anchors { right: labelRow.left ; verticalCenter: parent.bottom }
70                 text: "menu:    " 
71                 color: "lightblue"
72                 font { weight: Font.Light; italic: true }
73                 smooth: true
74             }
75             //row displays its children in a vertical row
76             Row {
77                 id: labelRow
78                 anchors.centerIn: parent
79                 spacing:40
80                 Button {
81                     id: fileButton
82                     height: 20; width: 50
83                     label: "File"
84                     buttonColor : menuListView.currentIndex == 0? fileColor : Qt.darker(fileColor, 1.5)
85                     scale: menuListView.currentIndex == 0? 1.25: 1
86                     labelSize: menuListView.currentIndex == 0? 16:12
87                     radius: 1
88                     smooth:true
89                     //on a button click, change the list's currently selected item to FileMenu
90                     onButtonClick: menuListView.currentIndex = 0
91                     gradient: Gradient {
92                         GradientStop { position: 0.0; color: fileColor }
93                         GradientStop { position: 1.0; color: "#136F6F6F" }
94                     }
95                 }
96                 Button {
97                     id: editButton
98                     height: 20; width: 50
99                     buttonColor : menuListView.currentIndex == 1? Qt.darker(editColor, 1.5) : Qt.darker(editColor, 1.9)
100                     scale: menuListView.currentIndex == 1? 1.25: 1    
101                     label: "Edit"
102                     radius: 1
103                     labelSize: menuListView.currentIndex == 1? 16:12
104                     smooth:true
105                     //on a button click, change the list's currently selected item to EditMenu
106                     onButtonClick: menuListView.currentIndex = 1    
107                     gradient: Gradient {
108                         GradientStop { position: 0.0; color: editColor }
109                         GradientStop { position: 1.0; color: "#136F6F6F" }
110                     }
111                 }
112             }
113         }
114
115         //list view will display a model according to a delegate
116         ListView {
117             id: menuListView
118             width:menuBar.width; height: 9*menuBar.height*partition
119
120             //the model contains the data
121             model: menuListModel
122
123             //control the movement of the menu switching
124             snapMode: ListView.SnapOneItem
125             orientation: ListView.Horizontal
126             boundsBehavior: Flickable.StopAtBounds 
127             flickDeceleration: 5000
128             highlightFollowsCurrentItem: true
129             highlightMoveDuration:240
130             highlightRangeMode: ListView.StrictlyEnforceRange
131         }
132     }
133     //a list of visual items already have delegates handling their display
134     VisualItemModel {
135         id: menuListModel
136
137         FileMenu {
138             id:fileMenu
139             width: menuListView.width; height: menuListView.height
140             color: fileColor
141         }
142         EditMenu {
143             color: editColor
144             width:  menuListView.width; height: menuListView.height
145         }
146     }
147 }