mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-23 11:17:15 +08:00
补提交漏掉的文件
This commit is contained in:
parent
a54a99bbe1
commit
a7ff28466d
91
src/imports/FluentUI/Controls/FluEditableText.qml
Normal file
91
src/imports/FluentUI/Controls/FluEditableText.qml
Normal file
@ -0,0 +1,91 @@
|
||||
import QtQuick
|
||||
import FluentUI
|
||||
Item {
|
||||
id:root
|
||||
property bool editable: false
|
||||
property string text: ""
|
||||
property int elide
|
||||
property color color
|
||||
property color editBgColor: FluTheme.dark ? Qt.rgba(62/255,62/255,62/255,1) : Qt.rgba(255/255,255/255,255/255,1)
|
||||
property color editTextColor: FluTheme.dark ? Qt.rgba(255/255,255/255,255/255,1) : Qt.rgba(27/255,27/255,27/255,1)
|
||||
|
||||
property alias editBgRect : editBackgroundComponent
|
||||
property alias normalText :normalTextComponent
|
||||
property alias editableText :editableTextComponent
|
||||
|
||||
|
||||
signal fluTextEdited(var newText)
|
||||
signal fluLostFocus(bool isActiveFocus)
|
||||
|
||||
|
||||
height:24
|
||||
|
||||
function setEditable(value){
|
||||
editable = value;
|
||||
}
|
||||
|
||||
Keys.onPressed:function(event) {
|
||||
if (event.key === Qt.Key_Return || event.key === Qt.Key_Enter) {
|
||||
if(editableTextComponent.text !== "" && editableTextComponent.text !== root.text){
|
||||
fluTextEdited(editableTextComponent.text)
|
||||
}
|
||||
|
||||
fluLostFocus(false)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
//property alias anchors:normalText.anchors
|
||||
FluText{
|
||||
id:normalTextComponent
|
||||
text: root.text
|
||||
elide:root.elide
|
||||
color:root.color
|
||||
visible: !editable
|
||||
anchors.fill: parent
|
||||
lineHeight: height
|
||||
verticalAlignment: Text.AlignVCenter
|
||||
}
|
||||
|
||||
Rectangle{
|
||||
id:editBackgroundComponent
|
||||
width: Math.max(editableText.implicitWidth,20)
|
||||
height:parent.height
|
||||
radius: 5
|
||||
|
||||
|
||||
color:editable? editBgColor:"transparent"
|
||||
visible: editable
|
||||
TextInput{
|
||||
id:editableTextComponent
|
||||
anchors.fill: parent
|
||||
|
||||
text:root.text
|
||||
color:editTextColor
|
||||
visible: editable
|
||||
renderType: FluTheme.nativeText ? Text.NativeRendering : Text.QtRendering
|
||||
font: FluTextStyle.Body
|
||||
verticalAlignment: Text.AlignVCenter
|
||||
//focus: editable
|
||||
|
||||
onActiveFocusChanged: {
|
||||
if(editableTextComponent.text !== "" && editableTextComponent.text !== root.text){
|
||||
fluTextEdited(text)
|
||||
}
|
||||
fluLostFocus(activeFocus);
|
||||
}
|
||||
}
|
||||
}
|
||||
onEditableChanged: {
|
||||
if(editable){
|
||||
editableTextComponent.forceActiveFocus()
|
||||
editableTextComponent.selectAll()
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user