-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathPrefsTextField.qml
93 lines (80 loc) · 2.49 KB
/
PrefsTextField.qml
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
import QtQuick 2.0
import QtQuick.Controls 2.0
import QtGraphicalEffects 1.0
import "../"
import FontStyle 1.0
import AppStyle 1.0
TextField {
id: root
property bool isBold: false
property color checkedColor: "#D5DBDB"
signal doubleClicked(var event)
property real backwidth: 213
property real backHeight: 42
placeholderText: qsTr("Enter ")
placeholderTextColor: AppTheme.darkTheme ? "#FFFFFF" : "grey"
color: AppTheme.darkTheme ? "#FFFFFF" : "grey"
font.family: FontStyle.getContentFont.name
font.pixelSize: isBold ? AppStyle.t1 : AppStyle.t1
font.bold: isBold ? Font.Bold : Font.Normal
font.weight: isBold ? Font.Bold : Font.Normal
antialiasing: true
verticalAlignment: Text.AlignVCenter
horizontalAlignment:Text.AlignHCenter
background: Rectangle {
implicitWidth: backwidth
implicitHeight: backHeight
radius: 8
color: root.enabled ? "transparent" : "#F4F6F6"
border.color: root.enabled ? root.checkedColor : "#D5DBDB"
border.width: 2
opacity: root.enabled ? 1 : 0.7
layer.enabled: root.hovered
layer.effect: DropShadow {
id: dropShadow
transparentBorder: true
color: root.checkedColor
samples: 10 /*20*/
}
}
cursorDelegate: Rectangle {
width: 1.5
height: parent.height * 0.6
color: root.checkedColor
visible: root.focus
Timer {
interval: 600
repeat: true
running: root.focus
onRunningChanged: parent.visible = running
onTriggered: parent.visible = !parent.visible
}
}
onDoubleClicked: selectAll()
onPressed: {
_private.mouseEvent = event
_private.isCheckDoubleClickedEvent++
if (! _checkDoubleClickedEventTimer.running)
_checkDoubleClickedEventTimer.restart()
}
/* Private */
Item {
id: _private
property int isCheckDoubleClickedEvent: 0
property var/*MouseEvent*/ mouseEvent
Timer {
id: _checkDoubleClickedEventTimer
running: false
repeat: false
interval: 180
onTriggered: {
if (_private.isCheckDoubleClickedEvent >= 2) {
/* Double Clicked Event */
root.doubleClicked(_private.mouseEvent)
}
stop()
_private.isCheckDoubleClickedEvent = 0
}
}
}
}