~ubuntu-branches/debian/jessie/qtdeclarative-opensource-src/jessie

« back to all changes in this revision

Viewing changes to examples/quick/demos/stocqt/content/StockInfo.qml

  • Committer: Package Import Robot
  • Author(s): Lisandro Damián Nicanor Pérez Meyer
  • Date: 2014-06-05 23:53:56 UTC
  • mfrom: (8.1.11 experimental)
  • Revision ID: package-import@ubuntu.com-20140605235356-cf36ioh08oh2oow4
Tags: 5.3.0-5
* Upload to unstable.
* Backport v4_yarr_jit_push_pop_addressTempRegister.patch to fix a bug
  of the JIT compiler in arm. Thanks Scott Kitterman for pointing it out.
* Update symbols files with buildds' logs.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/****************************************************************************
 
2
**
 
3
** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
 
4
** Contact: http://www.qt-project.org/legal
 
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 Digia Plc and its Subsidiary(-ies) nor the names
 
21
**     of its contributors may be used to endorse or promote products derived
 
22
**     from this software without specific prior written permission.
 
23
**
 
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: root
 
45
    width: 440
 
46
    height: 160
 
47
    color: "transparent"
 
48
 
 
49
    property var stock: null
 
50
 
 
51
    Text {
 
52
        id: stockIdText
 
53
        anchors.left: parent.left
 
54
        anchors.leftMargin: 5
 
55
        anchors.top: parent.top
 
56
        anchors.topMargin: 15
 
57
        color: "#000000"
 
58
        font.family: "Open Sans"
 
59
        font.pointSize: 38
 
60
        font.weight: Font.DemiBold
 
61
        text: root.stock.stockId
 
62
    }
 
63
 
 
64
    Text {
 
65
        id: stockNameText
 
66
        anchors.left: parent.left
 
67
        anchors.leftMargin: 5
 
68
        anchors.bottom: priceChangePercentage.bottom
 
69
        anchors.right: priceChangePercentage.left
 
70
        anchors.rightMargin: 15
 
71
        color: "#000000"
 
72
        font.family: "Open Sans"
 
73
        font.pointSize: 16
 
74
        elide: Text.ElideRight
 
75
        text: root.stock.stockName
 
76
    }
 
77
 
 
78
    Text {
 
79
        id: price
 
80
        anchors.right: parent.right
 
81
        anchors.rightMargin: 5
 
82
        anchors.top: parent.top
 
83
        anchors.topMargin: 15
 
84
        horizontalAlignment: Text.AlignRight
 
85
        color: "#000000"
 
86
        font.family: "Open Sans"
 
87
        font.pointSize: 30
 
88
        font.weight: Font.DemiBold
 
89
        text: root.stock.stockPrice
 
90
    }
 
91
 
 
92
    Text {
 
93
        id: priceChange
 
94
        anchors.right: parent.right
 
95
        anchors.rightMargin: 20
 
96
        anchors.top: price.bottom
 
97
        anchors.topMargin: 5
 
98
        horizontalAlignment: Text.AlignRight
 
99
        color: root.stock.stockPriceChanged < 0 ? "#d40000" : "#328930"
 
100
        font.family: "Open Sans"
 
101
        font.pointSize: 20
 
102
        font.weight: Font.Bold
 
103
        text: root.stock.stockPriceChanged
 
104
    }
 
105
 
 
106
    Text {
 
107
        id: priceChangePercentage
 
108
        anchors.right: parent.right
 
109
        anchors.rightMargin: 20
 
110
        anchors.top: priceChange.bottom
 
111
        anchors.topMargin: 5
 
112
        horizontalAlignment: Text.AlignRight
 
113
        color: root.stock.stockPriceChanged < 0 ? "#d40000" : "#328930"
 
114
        font.family: "Open Sans"
 
115
        font.pointSize: 18
 
116
        font.weight: Font.Bold
 
117
        text: Math.abs(Math.round(root.stock.stockPriceChanged/(root.stock.stockPrice - root.stock.stockPriceChanged) * 100))/100  +"%"
 
118
    }
 
119
}