2019-07-08 13:52:41 +10:00
|
|
|
// Copyright 2019 miruka
|
|
|
|
// This file is part of harmonyqml, licensed under LGPLv3.
|
|
|
|
|
2019-07-13 19:39:01 +10:00
|
|
|
import QtQuick 2.12
|
|
|
|
import QtQuick.Controls 2.12
|
2019-04-27 06:02:20 +10:00
|
|
|
|
|
|
|
TextField {
|
2019-07-14 10:15:20 +10:00
|
|
|
property bool bordered: false
|
2019-04-29 05:13:18 +10:00
|
|
|
property alias backgroundColor: textFieldBackground.color
|
2019-07-14 10:15:20 +10:00
|
|
|
property alias radius: textFieldBackground.radius
|
2019-04-29 05:13:18 +10:00
|
|
|
|
2019-07-07 07:50:55 +10:00
|
|
|
font.family: theme.fontFamily.sans
|
|
|
|
font.pixelSize: theme.fontSize.normal
|
2019-04-29 05:13:18 +10:00
|
|
|
|
2019-07-07 07:50:55 +10:00
|
|
|
color: theme.colors.foreground
|
2019-04-29 05:13:18 +10:00
|
|
|
background: Rectangle {
|
|
|
|
id: textFieldBackground
|
2019-07-07 07:50:55 +10:00
|
|
|
color: theme.controls.textField.background
|
2019-07-14 10:15:20 +10:00
|
|
|
border.color: theme.controls.textField.borderColor
|
|
|
|
border.width: bordered ? theme.controls.textField.borderWidth : 0
|
2019-04-29 05:13:18 +10:00
|
|
|
}
|
2019-04-27 06:02:20 +10:00
|
|
|
|
|
|
|
selectByMouse: true
|
|
|
|
}
|