ukui-menu/qml/AppControls2/FolderItem.qml

139 lines
4.9 KiB
QML
Raw Normal View History

2023-03-28 09:38:39 +08:00
import QtQuick 2.12
2023-02-14 09:34:15 +08:00
import QtQuick.Layouts 1.12
2023-03-28 09:38:39 +08:00
import QtQuick.Controls 2.5
2023-04-07 10:00:56 +08:00
import AppControls2 1.0 as AppControls2
2023-03-28 09:38:39 +08:00
import org.ukui.menu.core 1.0
2023-02-14 09:34:15 +08:00
MouseArea {
id: control
2023-04-07 10:00:56 +08:00
property bool editStatus: false
2023-04-08 14:12:11 +08:00
property bool truncate: false
hoverEnabled: true
2023-04-08 14:12:11 +08:00
ToolTip.visible: editStatus && truncate && control.containsMouse
2023-04-07 10:00:56 +08:00
ToolTip.text: name
states: State {
when: control.activeFocus
PropertyChanges {
target: controlBase
alpha: 0.55
}
}
StyleBackground {
id: controlBase
2023-03-28 09:38:39 +08:00
anchors.fill: parent
radius: 4
useStyleTransparent: false
alpha: control.containsPress ? 0.82 : control.containsMouse ? 0.55 : 0.00
2023-02-14 09:34:15 +08:00
2023-04-03 15:58:05 +08:00
RowLayout {
anchors.fill: parent
2023-04-03 15:58:05 +08:00
anchors.leftMargin: 12
spacing: 12
2023-04-07 10:00:56 +08:00
2023-04-03 15:58:05 +08:00
FolderIcon {
rows: 2; columns: 2
spacing: 2; padding: 2
icons: icon
alpha: 0.12; radius: 4
2023-04-03 15:58:05 +08:00
Layout.alignment: Qt.AlignVCenter
Layout.preferredWidth: 32
Layout.preferredHeight: 32
}
2023-04-07 10:00:56 +08:00
Item {
id: renameArea
2023-04-03 15:58:05 +08:00
Layout.fillWidth: true
Layout.fillHeight: true
2023-04-07 10:00:56 +08:00
2023-04-08 14:12:11 +08:00
Component {
id: unEditText
StyleText {
id: textShow
2023-04-07 10:00:56 +08:00
verticalAlignment: Text.AlignVCenter
2023-04-08 14:12:11 +08:00
horizontalAlignment: Text.AlignLeft
elide: Text.ElideRight
text: name
2023-04-07 10:00:56 +08:00
Component.onCompleted: {
2023-04-08 14:12:11 +08:00
control.truncate = textShow.truncated
2023-04-07 10:00:56 +08:00
}
}
2023-04-08 14:12:11 +08:00
}
2023-04-07 10:00:56 +08:00
2023-04-08 14:12:11 +08:00
Component {
id: editText
AppControls2.StyleBackground {
radius: 6
useStyleTransparent: false
alpha: textChange.activeFocus ? 0.04 : 0
paletteRole: Palette.Text
border.width: 2
borderAlpha: textChange.activeFocus ? 1 : 0
borderColor: Palette.Highlight
TextInput {
id: textChange
text: name
clip: true
anchors.left: parent.left
anchors.leftMargin: 8
anchors.right: buttonMouseArea.left
anchors.rightMargin: 8
anchors.verticalCenter: parent.verticalCenter
verticalAlignment: Text.AlignVCenter
selectByMouse: true
maximumLength: 14
onEditingFinished: {
modelManager.getAppModel().renameFolder(id, text);
control.editStatus = false;
}
function updateTextInputColor() {
color = themePalette.paletteColor(Palette.Text);
selectionColor = themePalette.paletteColor(Palette.Highlight);
}
Component.onCompleted: {
updateTextInputColor();
themePalette.styleColorChanged.connect(updateTextInputColor);
forceActiveFocus();
}
Component.onDestruction: themePalette.styleColorChanged.disconnect(updateTextInputColor);
2023-04-07 10:00:56 +08:00
}
2023-04-08 14:12:11 +08:00
MouseArea {
id: buttonMouseArea
hoverEnabled: true
width: 16; height: width
anchors.right: parent.right
anchors.rightMargin: 10
anchors.verticalCenter: parent.verticalCenter
visible: textChange.activeFocus
ThemeIcon {
anchors.centerIn: parent
width: 16; height: width
source: "image://appicon/edit-clear-symbolic"
}
onClicked: {
textChange.text = name;
control.editStatus = false;
}
2023-04-07 10:00:56 +08:00
}
2023-04-08 14:12:11 +08:00
2023-04-07 10:00:56 +08:00
}
}
2023-04-08 14:12:11 +08:00
Loader {
id: editLoader
anchors.fill: parent
sourceComponent: editStatus ? editText : unEditText
}
2023-04-03 15:58:05 +08:00
}
2023-02-14 09:34:15 +08:00
}
}
}