65 lines
1.5 KiB
QML
65 lines
1.5 KiB
QML
|
import QtQuick 2.14
|
||
|
import QtQuick.Controls 2.14
|
||
|
|
||
|
import StatusQ.Controls 0.1
|
||
|
import StatusQ.Core 0.1
|
||
|
import StatusQ.Core.Theme 0.1
|
||
|
|
||
|
StatusInput {
|
||
|
id: cursorInput
|
||
|
|
||
|
property string cursorColor: Theme.palette.primaryColor1
|
||
|
|
||
|
height: input.edit.height
|
||
|
leftPadding: 0
|
||
|
rightPadding: 0
|
||
|
|
||
|
input.placeholderText: ""
|
||
|
input.edit.cursorVisible: true
|
||
|
input.edit.font.pixelSize: 32
|
||
|
input.placeholderFont.pixelSize: 32
|
||
|
input.leftPadding: 0
|
||
|
input.rightPadding: 0
|
||
|
input.topPadding: 0
|
||
|
input.bottomPadding: 0
|
||
|
input.edit.padding: 0
|
||
|
input.background.color: "transparent"
|
||
|
input.background.border.width: 0
|
||
|
// To-do this needs to be removed once https://github.com/status-im/StatusQ/issues/578 is implemented and cursor is moved to StatusInput
|
||
|
input.edit.cursorDelegate: Rectangle {
|
||
|
id: cursor
|
||
|
visible: input.edit.cursorVisible
|
||
|
color: cursorColor
|
||
|
width: 2
|
||
|
|
||
|
SequentialAnimation {
|
||
|
loops: Animation.Infinite
|
||
|
running: input.edit.cursorVisible
|
||
|
|
||
|
PropertyAction {
|
||
|
target: cursor
|
||
|
property: 'visible'
|
||
|
value: true
|
||
|
}
|
||
|
|
||
|
PauseAnimation {
|
||
|
duration: 600
|
||
|
}
|
||
|
|
||
|
PropertyAction {
|
||
|
target: cursor
|
||
|
property: 'visible'
|
||
|
value: false
|
||
|
}
|
||
|
|
||
|
PauseAnimation {
|
||
|
duration: 600
|
||
|
}
|
||
|
|
||
|
onStopped: {
|
||
|
cursor.visible = false
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|