improved desktop UI
[mardrone] / mardrone / imports / com / nokia / meego / Menu.qml
1 /****************************************************************************
2 **
3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
4 ** All rights reserved.
5 ** Contact: Nokia Corporation (qt-info@nokia.com)
6 **
7 ** This file is part of the Qt Components project.
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 import QtQuick 1.1
42 import "." 1.0
43
44 AbstractMenu {
45   id: root
46 /*
47     platformTitle: BorderImage {
48         id: topDivider
49         anchors.left: parent.left
50         anchors.right: parent.right
51         height: 2
52         source: "" // "image://theme/meegotouch-button-objectmenu-background-vertical-top"
53         border { top: 2; bottom: 1; left: 1; right: 1 }
54     }
55 */
56
57     __statesWrapper.transitions: [
58         Transition {
59             from: "visible"; to: "hidden"
60             SequentialAnimation {
61                 ScriptAction {script: {
62                         __fader().state = "hidden";
63                         root.status = DialogStatus.Closing;
64                     }
65                 }
66
67                 NumberAnimation {target: __menuPane;
68                                  property: screen.currentOrientation == Screen.Portrait ? "anchors.bottomMargin" : "anchors.rightMargin";
69                                  easing.type: Easing.InOutQuint;
70                                  to: screen.currentOrientation == Screen.Portrait ? -__menuPane.height : -__menuPane.width;
71                                  from: 0; duration: 350}
72
73                 NumberAnimation {target: __menuPane; property: "opacity";
74                                  from: 1.0; to: 0.0; duration: 0}
75
76                 ScriptAction {script: {
77                         status = DialogStatus.Closed;
78                     }
79                 }
80             }
81         },
82         Transition {
83             from: "hidden"; to: "visible"
84             SequentialAnimation {
85                 ScriptAction {script: {
86                         __fader().state = "visible";
87                         root.status = DialogStatus.Opening;
88                         __menuPane.anchors.rightMargin = 0;
89                         __menuPane.anchors.bottomMargin = 0;
90                     }
91                 }
92
93                 NumberAnimation {target: __menuPane;
94                                  property: screen.currentOrientation == Screen.Portrait ? "anchors.bottomMargin" : "anchors.rightMargin";
95                                  easing.type: Easing.InOutQuint;
96                                  from: screen.currentOrientation == Screen.Portrait ? -__menuPane.height : -__menuPane.width;
97                                  to: 0; duration: 350}
98
99                 ScriptAction {script: {
100                         status = DialogStatus.Open;
101                     }
102                 }
103             }
104         }
105     ]
106 }