moment/src/qml/Base/HTextField.qml

35 lines
1.1 KiB
QML
Raw Normal View History

2019-07-08 13:52:41 +10:00
// Copyright 2019 miruka
// This file is part of harmonyqml, licensed under LGPLv3.
import QtQuick 2.12
import QtQuick.Controls 2.12
2019-04-27 06:02:20 +10:00
TextField {
id: field
font.family: theme.fontFamily.sans
font.pixelSize: theme.fontSize.normal
2019-04-29 05:13:18 +10:00
readonly property QtObject _tf: theme.controls.textField
property bool bordered: false
property color backgroundColor: _tf.background
property color borderColor: _tf.border
property color focusedBackgroundColor: _tf.focusedBackground
property color focusedBorderColor: _tf.focusedBorder
property alias radius: textFieldBackground.radius
color: theme.colors.foreground
2019-04-29 05:13:18 +10:00
background: Rectangle {
id: textFieldBackground
color: field.activeFocus ? focusedBackgroundColor : backgroundColor
border.color: field.activeFocus ? focusedBorderColor : borderColor
border.width: bordered ? theme.controls.textField.borderWidth : 0
Behavior on color { HColorAnimation {} }
Behavior on border.color { HColorAnimation {} }
Behavior on border.width { HNumberAnimation {} }
2019-04-29 05:13:18 +10:00
}
2019-04-27 06:02:20 +10:00
selectByMouse: true
}