moment/harmonyqml/components/Base/HTextField.qml

18 lines
388 B
QML
Raw Normal View History

2019-04-26 16:02:20 -04:00
import QtQuick 2.7
2019-04-28 15:36:43 -04:00
import QtQuick.Controls 2.2
2019-04-26 16:02:20 -04:00
TextField {
2019-04-28 15:13:18 -04:00
property alias backgroundColor: textFieldBackground.color
2019-04-26 16:02:20 -04:00
font.family: HStyle.fontFamily.sans
font.pixelSize: HStyle.fontSize.normal
2019-04-28 15:13:18 -04:00
color: HStyle.colors.foreground
2019-04-28 15:13:18 -04:00
background: Rectangle {
id: textFieldBackground
color: HStyle.controls.textField.background
}
2019-04-26 16:02:20 -04:00
selectByMouse: true
}