blob: 6f677102ecf0b58cdfe0a3e935a85ee65c7673ab (
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
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
import QtQuick 2.0
import QtQuick.Controls 2.5
import QtQuick.Layouts 1.14
import "../themes/themes.js" as Theme
RoundButton {
id: root
property var visualStateItem: root
property var uiState: Theme.uiState
property var loaderVisible: false
property var handleKeyClick: function () {
clicked()
}
focusPolicy: Qt.StrongFocus
Keys.onPressed: {
if (loaderVisible) {
return
}
if (event.key === Qt.Key_Return || event.key === Qt.Key_Space)
visualStateItem.state = uiState.statePressed
}
Keys.onReleased: {
if (loaderVisible) {
return
}
if (event.key === Qt.Key_Return || event.key === Qt.Key_Space) {
visualStateItem.state = uiState.stateDefault
}
if (event.key === Qt.Key_Return)
handleKeyClick()
}
Accessible.role: Accessible.Button
Accessible.onPressAction: handleKeyClick()
Accessible.focusable: true
onActiveFocusChanged: {
if (!activeFocus)
return visualStateItem.state = uiState.stateDefault
if (vpnFlickable && typeof (vpnFlickable.ensureVisible) !== "undefined")
return vpnFlickable.ensureVisible(visualStateItem)
}
background: Rectangle {
color: "transparent"
}
}
|