aboutsummaryrefslogtreecommitdiffstats
path: root/apps/com.pelagicore.phone/panels/KeypadViewPanel.qml
blob: 9cc7e2a8b27f13071d64727dc4a1ce8e94e00efa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
/****************************************************************************
**
** Copyright (C) 2019 Luxoft Sweden AB
** Copyright (C) 2018 Pelagicore AG
** Contact: https://www.qt.io/licensing/
**
** This file is part of the Neptune 3 IVI UI.
**
** $QT_BEGIN_LICENSE:GPL-QTAS$
** Commercial License Usage
** Licensees holding valid commercial Qt Automotive Suite licenses may use
** this file in accordance with the commercial license agreement provided
** with the Software or, alternatively, in accordance with the terms
** contained in a written agreement between you and The Qt Company.  For
** licensing terms and conditions see https://www.qt.io/terms-conditions.
** For further information use the contact form at https://www.qt.io/contact-us.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 3 or (at your option) any later version
** approved by the KDE Free Qt Foundation. The licenses are as published by
** the Free Software Foundation and appearing in the file LICENSE.GPL3
** included in the packaging of this file. Please review the following
** information to ensure the GNU General Public License requirements will
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
**
** $QT_END_LICENSE$
**
** SPDX-License-Identifier: GPL-3.0
**
****************************************************************************/

import QtQuick 2.8
import QtQuick.Controls 2.2
import QtQuick.Layouts 1.3

import shared.Style 1.0
import shared.Sizes 1.0
import shared.utils 1.0
import shared.animations 1.0
import shared.controls 1.0
import "../controls" 1.0

Item {

    Component.onCompleted: textedit.forceActiveFocus()

    opacity: visible ? 1 : 0
    Behavior on opacity { DefaultNumberAnimation { } }

    Rectangle {
        id: cursor
        visible: textedit.text !== ""
        anchors.right: textedit.right
        anchors.rightMargin: Sizes.dp(18)
        anchors.verticalCenter: textedit.verticalCenter
        width: Sizes.dp(2)
        height: Sizes.dp(60)
        color: Style.contrastColor
        opacity: 0
        SequentialAnimation {
            running: true
            loops: Animation.Infinite
            NumberAnimation { target: cursor; property: "opacity"; to: 0.2; duration: 500 }
            NumberAnimation { target: cursor; property: "opacity"; to: 0; duration: 500 }
        }
    }

    // TODO: Use a TextField instead so that it follows the current style automatically
    TextEdit {
        id: textedit
        anchors.left: gridlayout.left
        anchors.right: gridlayout.right
        anchors.top: parent.top
        anchors.topMargin: Sizes.dp(40)
        leftPadding: Sizes.dp(45 * 0.5)
        rightPadding: Sizes.dp(45 * 0.5)
        readOnly: true
        color: Style.contrastColor
        inputMethodHints: Qt.ImhDialableCharactersOnly
        font.pixelSize: Sizes.fontSizeXL
        font.weight: Font.Light
        wrapMode: TextEdit.Wrap
        horizontalAlignment: TextEdit.AlignRight
        Keys.onEscapePressed: clear()
    }

    ToolButton {
        anchors.right: parent.right
        anchors.verticalCenter: textedit.verticalCenter
        width: Sizes.dp(90)
        icon.name: "ic-erase"
        opacity: textedit.text ? 1.0 : 0.0
        visible: opacity > 0
        Behavior on opacity { DefaultNumberAnimation {} }
        onClicked: textedit.remove(textedit.length - 1, textedit.length);
    }

    GridLayout {
        id: gridlayout

        width: Sizes.dp(500)
        height: Sizes.dp(540)
        anchors.horizontalCenter: parent.horizontalCenter
        anchors.top: textedit.bottom
        anchors.topMargin: Sizes.dp(80)
        columns: 3
        columnSpacing: Sizes.dp(10)
        rowSpacing: Sizes.dp(10)
        KeypadButton {
            primaryText: "1"
            secondaryText: " " // to keep the "1" above
            onClicked: textedit.text += primaryText
        }
        KeypadButton {
            primaryText: "2"
            secondaryText: "ABC"
            onClicked: textedit.text += primaryText
        }
        KeypadButton {
            primaryText: "3"
            secondaryText: "DEF"
            onClicked: textedit.text += primaryText
        }
        KeypadButton {
            primaryText: "4"
            secondaryText: "GHI"
            onClicked: textedit.text += primaryText
        }
        KeypadButton {
            primaryText: "5"
            secondaryText: "JKL"
            onClicked: textedit.text += primaryText
        }
        KeypadButton {
            primaryText: "6"
            secondaryText: "MNO"
            onClicked: textedit.text += primaryText
        }
        KeypadButton {
            primaryText: "7"
            secondaryText: "PQRS"
            onClicked: textedit.text += primaryText
        }
        KeypadButton {
            primaryText: "8"
            secondaryText: "TUV"
            onClicked: textedit.text += primaryText
        }
        KeypadButton {
            primaryText: "9"
            secondaryText: "WXYZ"
            onClicked: textedit.text += primaryText
        }
        KeypadButton {
            primaryText: "*"
            onClicked: textedit.text += primaryText
        }
        KeypadButton {
            primaryText: "0"
            secondaryText: "+"
            onClicked: textedit.text += primaryText
        }
        KeypadButton {
            primaryText: "#"
            onClicked: textedit.text += primaryText
        }
        KeypadButton {
            Layout.row: 4
            Layout.column: 1
            enabled: textedit.text
            backgroundColor: "#68C97D" // app specific color
            backgroundOpacity: 1.0
            iconSource: Style.image("ic-call")
        }
    }
}