components for android added
[mardrone] / mardrone / imports / Qt / labs / components / native / MenuItem.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 // MenuItem is a component that is used in menus.
42
43 import QtQuick 1.1
44 import "." 1.0
45 import "UIConstants.js" as UI
46
47 Item {
48     id: root
49
50     // Common API
51     property string text
52     signal clicked
53     property alias pressed: mouseArea.pressed
54
55     // platformStyle API
56     property Style platformStyle: MenuItemStyle{
57         position: root.parent.children.length == 1 ? ""
58       : root.parent.children[0] == root ? "vertical-top"
59       : root.parent.children[root.parent.children.length-1] == root ? "vertical-bottom"
60       : "vertical-center"
61     }
62     property alias style: root.platformStyle // Deprecated
63
64     width: parent ? parent.width: 0
65     height: ( root.platformStyle.height == 0 ) ?
66             root.platformStyle.topMargin + menuText.paintedHeight + root.platformStyle.bottomMargin :
67             root.platformStyle.topMargin + root.platformStyle.height + root.platformStyle.bottomMargin
68 /*
69     Rectangle {
70        id: backgroundRec
71        // ToDo: remove hardcoded values
72        color: pressed ? "darkgray" : "transparent"
73        anchors.fill : root
74        opacity : 0.5
75     }
76 */
77     BorderImage {
78        id: backgroundImage
79        source:   // !enabled ? root.platformStyle.disabledBackground :
80                   pressed ? root.platformStyle.pressedBackground
81                 : root.platformStyle.background
82        anchors.fill : root
83        border { left: 22; top: 22;
84                 right: 22; bottom: 22 }
85     }
86
87     Text {
88         id: menuText
89         text: parent.text
90         elide: Text.ElideRight
91         font.family : root.platformStyle.fontFamily
92         font.pixelSize : root.platformStyle.fontPixelSize
93         font.weight: root.platformStyle.fontWeight
94         color: !root.enabled ? root.platformStyle.disabledTextColor :
95                 root.pressed ? root.platformStyle.pressedTextColor :
96                 root.platformStyle.textColor
97
98         anchors.topMargin : root.platformStyle.topMargin
99         anchors.bottomMargin : root.platformStyle.bottomMargin
100         anchors.leftMargin : root.platformStyle.leftMargin
101         anchors.rightMargin : root.platformStyle.rightMargin
102
103         anchors.top : root.platformStyle.centered ? undefined : root.top
104         anchors.bottom : root.platformStyle.centered ? undefined : root.bottom
105         anchors.left : root.left
106         anchors.right : root.right
107 //        anchors.centerIn : parent.centerIn
108         anchors.verticalCenter : root.platformStyle.centered ? parent.verticalCenter : undefined
109   }
110
111     MouseArea {
112         id: mouseArea
113         anchors.fill: parent
114         onClicked: { if (parent.enabled) parent.clicked();}
115     }
116
117     onClicked: if (parent) parent.closeLayout();
118 }