diff options
author | Malte E <97891689+maltee1@users.noreply.github.com> | 2022-03-05 23:10:08 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-05 22:10:08 +0000 |
commit | ab05e2d8dc3e2af4d48a098724857a41c663021c (patch) | |
tree | e377f5fb76ad35d559176e025c3d70457724a16f /resources/qml | |
parent | If you replace the txn id, replace a string the length of the txn id... (diff) | |
download | nheko-ab05e2d8dc3e2af4d48a098724857a41c663021c.tar.xz |
Mobile message input (#962)
* swap send and sticker icons based on text input * collapse MessageInput options when window is narrow * buttons disappear once you type/send partial text from input method
Diffstat (limited to 'resources/qml')
-rw-r--r-- | resources/qml/MessageInput.qml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/resources/qml/MessageInput.qml b/resources/qml/MessageInput.qml index 1fdff8ed..68948452 100644 --- a/resources/qml/MessageInput.qml +++ b/resources/qml/MessageInput.qml @@ -18,6 +18,8 @@ Rectangle { Layout.fillWidth: true Layout.preferredHeight: row.implicitHeight Layout.minimumHeight: 40 + property bool showAllButtons: width > 450 || (messageInput.length == 0 && !messageInput.inputMethodComposing) + Component { id: placeCallDialog @@ -35,7 +37,7 @@ Rectangle { spacing: 0 ImageButton { - visible: CallManager.callsSupported + visible: CallManager.callsSupported && showAllButtons opacity: CallManager.haveCallInvite ? 0.3 : 1 Layout.alignment: Qt.AlignBottom hoverEnabled: true @@ -61,6 +63,7 @@ Rectangle { } ImageButton { + visible: showAllButtons Layout.alignment: Qt.AlignBottom hoverEnabled: true width: 22 @@ -134,6 +137,7 @@ Rectangle { padding: 0 topPadding: 8 bottomPadding: 8 + leftPadding: inputBar.showAllButtons? 0 : 8 focus: true onTextChanged: { if (room) @@ -387,6 +391,7 @@ Rectangle { ImageButton { id: stickerButton + visible: showAllButtons Layout.alignment: Qt.AlignRight | Qt.AlignBottom Layout.margins: 8 @@ -437,6 +442,7 @@ Rectangle { ToolTip.visible: hovered ToolTip.text: qsTr("Send") onClicked: { + messageInput.append(messageInput.preeditText) room.input.send(); } } |