2019-04-27 06:02:20 +10:00
|
|
|
import QtQuick 2.7
|
2019-04-29 05:36:43 +10:00
|
|
|
import QtQuick.Controls 2.2
|
2019-04-27 06:02:20 +10:00
|
|
|
|
|
|
|
TextField {
|
2019-04-29 05:13:18 +10:00
|
|
|
property alias backgroundColor: textFieldBackground.color
|
|
|
|
|
2019-04-27 06:02:20 +10:00
|
|
|
font.family: HStyle.fontFamily.sans
|
|
|
|
font.pixelSize: HStyle.fontSize.normal
|
2019-04-29 05:13:18 +10:00
|
|
|
|
2019-04-29 02:40:18 +10:00
|
|
|
color: HStyle.colors.foreground
|
2019-04-29 05:13:18 +10:00
|
|
|
background: Rectangle {
|
|
|
|
id: textFieldBackground
|
|
|
|
color: HStyle.controls.textField.background
|
|
|
|
}
|
2019-04-27 06:02:20 +10:00
|
|
|
|
|
|
|
selectByMouse: true
|
|
|
|
}
|