added android components
[mardrone] / mardrone / imports / com / nokia / android.1.1 / ToolTip.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 import QtQuick 1.1
41 import "." 1.1
42 import "AppManager.js" as AppView
43
44 Item {
45     id: root
46
47     // Public API
48     property alias font: label.font
49     property alias text: label.text
50     property variant target: null
51     property bool platformInverted: false
52
53     implicitWidth: Math.min(privy.maxWidth, (privateStyle.textWidth(text, font) + privy.hMargin * 2))
54     implicitHeight: privateStyle.fontHeight(font) + privy.vMargin * 2
55     opacity: 0
56
57     function show() {
58         opacity = 1
59         visible = true
60     }
61
62     function hide() {
63         opacity = 0
64     }
65
66     Behavior on opacity {
67         PropertyAnimation { duration: 100 }
68     }
69
70     Component.onCompleted: {
71         if (visible)
72             show()
73     }
74
75     onOpacityChanged: {
76         if (opacity == 0)
77             visible = false
78         else
79             visible = true
80     }
81
82     onVisibleChanged: {
83         if (visible) {
84             root.parent = AppView.rootObject()
85             privy.calculatePosition()
86             opacity = 1
87             privy.targetSceneXChanged.connect(privy.targetMoved)
88             privy.targetSceneYChanged.connect(privy.targetMoved)
89         } else {
90             privy.targetSceneXChanged.disconnect(privy.targetMoved)
91             privy.targetSceneYChanged.disconnect(privy.targetMoved)
92         }
93     }
94
95     Binding { target: privy; property: "targetSceneX"; value: AppView.sceneX(root.target); when: root.visible && (root.target != null) }
96     Binding { target: privy; property: "targetSceneY"; value: AppView.sceneY(root.target); when: root.visible && (root.target != null) }
97
98     QtObject {
99         id: privy
100
101         property real hMargin: platformStyle.paddingMedium * 2
102         property real vMargin: platformStyle.paddingMedium
103         property real spacing: platformStyle.paddingLarge
104         property real maxWidth: screen.width - spacing * 2
105         property real targetSceneX
106         property real targetSceneY
107
108         function targetMoved() {
109             if (root.opacity == 1)
110                 hide()
111         }
112
113         function calculatePosition() {
114             if (!target)
115                 return
116
117             // Determine and set the main position for the ToolTip, order: top, right, left, bottom
118             var targetPos = root.parent.mapFromItem(target, 0, 0)
119
120             // Top
121             if (targetPos.y >= (root.height + privy.vMargin + privy.spacing)) {
122                 root.x = targetPos.x + (target.width / 2) - (root.width / 2)
123                 root.y = targetPos.y - root.height - privy.vMargin
124
125             // Right
126             } else if (targetPos.x <= (screen.width - target.width - privy.hMargin - root.width - privy.spacing)) {
127                 root.x = targetPos.x + target.width + privy.hMargin;
128                 root.y = targetPos.y + (target.height / 2) - (root.height / 2)
129
130             // Left
131             } else if (targetPos.x >= (root.width + privy.hMargin + privy.spacing)) {
132                 root.x = targetPos.x - root.width - privy.hMargin
133                 root.y = targetPos.y + (target.height / 2) - (root.height / 2)
134
135             // Bottom
136             } else {
137                 root.x = targetPos.x + (target.width / 2) - (root.width / 2)
138                 root.y = targetPos.y + target.height + privy.vMargin
139             }
140
141             // Fine-tune the ToolTip position based on the screen borders
142             if (root.x > (screen.width - privy.spacing - root.width))
143                 root.x = screen.width - root.width - privy.spacing
144
145             if (root.x < privy.spacing)
146                 root.x = privy.spacing;
147
148             if (root.y > (screen.height - root.height - privy.spacing))
149                 root.y = screen.height - root.height - privy.spacing
150
151             if (root.y < privy.spacing)
152                 root.y = privy.spacing
153         }
154     }
155
156     BorderImage {
157         id: frame
158         anchors.fill: parent
159         source: privateStyle.imagePath("qtg_fr_tooltip", root.platformInverted)
160         border { left: 20; top: 20; right: 20; bottom: 20 }
161     }
162
163     Text {
164        id: label
165        clip: true
166        color: root.platformInverted ? platformStyle.colorNormalLightInverted
167                                     : platformStyle.colorNormalLight
168        elide: Text.ElideRight
169        font { family: platformStyle.fontFamilyRegular; pixelSize: platformStyle.fontSizeMedium }
170        verticalAlignment: Text.AlignVCenter
171        horizontalAlignment: Text.AlignHCenter
172        anchors {
173            fill: parent
174            leftMargin: privy.hMargin
175            rightMargin: privy.hMargin
176            topMargin: privy.vMargin
177            bottomMargin: privy.vMargin
178        }
179     }
180 }