85 lines
2.3 KiB
QML
85 lines
2.3 KiB
QML
import QtQuick 2.13
|
|
import QtQuick.Controls 2.13
|
|
import QtQuick.Layouts 1.13
|
|
import "../../../../shared"
|
|
import "../../../../imports"
|
|
|
|
Rectangle {
|
|
id: element2
|
|
width: 200
|
|
height: 70
|
|
Layout.fillWidth: true
|
|
color: "white"
|
|
border.width: 0
|
|
|
|
visible: chatsModel.activeChannel.chatType != Constants.chatTypePrivateGroupChat || chatsModel.activeChannel.isMember(profileModel.profile.pubKey)
|
|
|
|
Rectangle {
|
|
id: rectangle
|
|
color: "#00000000"
|
|
border.color: Theme.grey
|
|
anchors.fill: parent
|
|
|
|
Button {
|
|
id: chatSendBtn
|
|
visible: txtData.length > 0
|
|
x: 100
|
|
width: 30
|
|
height: 30
|
|
text: ""
|
|
anchors.top: parent.top
|
|
anchors.topMargin: 20
|
|
anchors.right: parent.right
|
|
anchors.rightMargin: 16
|
|
onClicked: {
|
|
chatsModel.sendMessage(txtData.text)
|
|
txtData.text = ""
|
|
}
|
|
background: Rectangle {
|
|
color: parent.enabled ? Theme.blue : Theme.grey
|
|
radius: 50
|
|
}
|
|
Image {
|
|
source: "../../../img/arrowUp.svg"
|
|
width: 12
|
|
fillMode: Image.PreserveAspectFit
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
}
|
|
}
|
|
|
|
StyledTextField {
|
|
id: txtData
|
|
text: ""
|
|
padding: 0
|
|
font.pixelSize: 14
|
|
placeholderText: qsTr("Type a message...")
|
|
anchors.right: chatSendBtn.left
|
|
anchors.rightMargin: 16
|
|
anchors.top: parent.top
|
|
anchors.topMargin: 0
|
|
anchors.bottom: parent.bottom
|
|
anchors.bottomMargin: 0
|
|
anchors.left: parent.left
|
|
leftPadding: 24
|
|
selectByMouse: true
|
|
Keys.onEnterPressed: {
|
|
chatsModel.sendMessage(txtData.text)
|
|
txtData.text = ""
|
|
}
|
|
Keys.onReturnPressed: {
|
|
chatsModel.sendMessage(txtData.text)
|
|
txtData.text = ""
|
|
}
|
|
background: Rectangle {
|
|
color: "#00000000"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
/*##^##
|
|
Designer {
|
|
D{i:0;width:600}
|
|
}
|
|
##^##*/
|