Start with voice notes
This commit is contained in:
parent
a8ad2a6a22
commit
9662df3c74
14 changed files with 176 additions and 2 deletions
|
@ -58,6 +58,7 @@ DISTFILES += qml/harbour-fernschreiber.qml \
|
|||
qml/components/ReplyMarkupButtons.qml \
|
||||
qml/components/StickerPicker.qml \
|
||||
qml/components/PhotoTextsListItem.qml \
|
||||
qml/components/VoiceNoteOverlay.qml \
|
||||
qml/components/WebPagePreview.qml \
|
||||
qml/components/chatInformationPage/ChatInformationEditArea.qml \
|
||||
qml/components/chatInformationPage/ChatInformationPageContent.qml \
|
||||
|
|
72
qml/components/VoiceNoteOverlay.qml
Normal file
72
qml/components/VoiceNoteOverlay.qml
Normal file
|
@ -0,0 +1,72 @@
|
|||
/*
|
||||
Copyright (C) 2020 Sebastian J. Wolf and other contributors
|
||||
|
||||
This file is part of Fernschreiber.
|
||||
|
||||
Fernschreiber is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
Fernschreiber is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with Fernschreiber. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
import QtQuick 2.6
|
||||
import Sailfish.Silica 1.0
|
||||
import "../components"
|
||||
import "../js/twemoji.js" as Emoji
|
||||
|
||||
Item {
|
||||
id: voiceNoteOverlayItem
|
||||
anchors.fill: parent
|
||||
|
||||
Rectangle {
|
||||
id: stickerPickerOverlayBackground
|
||||
anchors.fill: parent
|
||||
|
||||
color: Theme.overlayBackgroundColor
|
||||
opacity: Theme.opacityHigh
|
||||
}
|
||||
|
||||
Flickable {
|
||||
id: voiceNoteFlickable
|
||||
anchors.fill: parent
|
||||
anchors.margins: Theme.paddingMedium
|
||||
|
||||
Behavior on opacity { NumberAnimation {} }
|
||||
|
||||
contentHeight: voiceNoteColumn.height
|
||||
clip: true
|
||||
|
||||
Column {
|
||||
id: voiceNoteColumn
|
||||
spacing: Theme.paddingMedium
|
||||
width: voiceNoteFlickable.width
|
||||
|
||||
InfoLabel {
|
||||
text: qsTr("Record a Voice Note")
|
||||
}
|
||||
|
||||
Image {
|
||||
id: recorderImage
|
||||
source: "image://theme/icon-l-recorder"
|
||||
anchors {
|
||||
horizontalCenter: parent.horizontalCenter
|
||||
}
|
||||
|
||||
fillMode: Image.PreserveAspectFit
|
||||
asynchronous: true
|
||||
width: Theme.itemSizeLarge
|
||||
height: Theme.itemSizeLarge
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -621,7 +621,7 @@ Page {
|
|||
contentWidth: width
|
||||
|
||||
PullDownMenu {
|
||||
visible: chatInformation.id !== chatPage.myUserId && !stickerPickerLoader.active && !messageOverlayLoader.active
|
||||
visible: chatInformation.id !== chatPage.myUserId && !stickerPickerLoader.active && !voiceNoteOverlayLoader.active && !messageOverlayLoader.active
|
||||
MenuItem {
|
||||
id: closeSecretChatMenuItem
|
||||
visible: chatPage.isSecretChat && chatPage.secretChatDetails.state["@type"] !== "secretChatStateClosed"
|
||||
|
@ -874,7 +874,7 @@ Page {
|
|||
id: chatView
|
||||
|
||||
visible: !blurred
|
||||
property bool blurred: messageOverlayLoader.item
|
||||
property bool blurred: messageOverlayLoader.item || stickerPickerLoader.item || voiceNoteOverlayLoader.item
|
||||
|
||||
anchors.fill: parent
|
||||
opacity: chatPage.loading ? 0 : 1
|
||||
|
@ -1132,6 +1132,15 @@ Page {
|
|||
}
|
||||
}
|
||||
|
||||
Loader {
|
||||
id: voiceNoteOverlayLoader
|
||||
active: false
|
||||
asynchronous: true
|
||||
width: parent.width
|
||||
height: active ? parent.height : 0
|
||||
source: "../components/VoiceNoteOverlay.qml"
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Column {
|
||||
|
@ -1216,6 +1225,19 @@ Page {
|
|||
})
|
||||
}
|
||||
}
|
||||
IconButton {
|
||||
visible: chatPage.hasSendPrivilege("can_send_media_messages")
|
||||
icon.source: "image://theme/icon-m-mic"
|
||||
icon.sourceSize {
|
||||
width: Theme.iconSizeMedium
|
||||
height: Theme.iconSizeMedium
|
||||
}
|
||||
highlighted: down || voiceNoteOverlayLoader.active
|
||||
onClicked: {
|
||||
voiceNoteOverlayLoader.active = !voiceNoteOverlayLoader.active;
|
||||
stickerPickerLoader.active = false;
|
||||
}
|
||||
}
|
||||
IconButton {
|
||||
visible: chatPage.hasSendPrivilege("can_send_media_messages")
|
||||
icon.source: "image://theme/icon-m-document"
|
||||
|
@ -1243,6 +1265,7 @@ Page {
|
|||
highlighted: down || stickerPickerLoader.active
|
||||
onClicked: {
|
||||
stickerPickerLoader.active = !stickerPickerLoader.active;
|
||||
voiceNoteOverlayLoader.active = false;
|
||||
}
|
||||
}
|
||||
IconButton {
|
||||
|
@ -1528,6 +1551,7 @@ Page {
|
|||
if (attachmentOptionsRow.isNeeded) {
|
||||
attachmentOptionsRow.isNeeded = false;
|
||||
stickerPickerLoader.active = false;
|
||||
voiceNoteOverlayLoader.active = false;
|
||||
} else {
|
||||
attachmentOptionsRow.isNeeded = true;
|
||||
}
|
||||
|
|
|
@ -1418,6 +1418,13 @@
|
|||
<translation>Download fehlgeschlagen.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>VoiceNoteOverlay</name>
|
||||
<message>
|
||||
<source>Record a Voice Note</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>WebPagePreview</name>
|
||||
<message>
|
||||
|
|
|
@ -1418,6 +1418,13 @@
|
|||
<translation>Download failed.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>VoiceNoteOverlay</name>
|
||||
<message>
|
||||
<source>Record a Voice Note</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>WebPagePreview</name>
|
||||
<message>
|
||||
|
|
|
@ -1399,6 +1399,13 @@
|
|||
<translation>Error al bajar</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>VoiceNoteOverlay</name>
|
||||
<message>
|
||||
<source>Record a Voice Note</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>WebPagePreview</name>
|
||||
<message>
|
||||
|
|
|
@ -1419,6 +1419,13 @@
|
|||
<translation>Lataus epäonnistui.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>VoiceNoteOverlay</name>
|
||||
<message>
|
||||
<source>Record a Voice Note</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>WebPagePreview</name>
|
||||
<message>
|
||||
|
|
|
@ -1399,6 +1399,13 @@
|
|||
<translation>A letöltés nem sikerült.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>VoiceNoteOverlay</name>
|
||||
<message>
|
||||
<source>Record a Voice Note</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>WebPagePreview</name>
|
||||
<message>
|
||||
|
|
|
@ -1418,6 +1418,13 @@
|
|||
<translation>Download non riuscito.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>VoiceNoteOverlay</name>
|
||||
<message>
|
||||
<source>Record a Voice Note</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>WebPagePreview</name>
|
||||
<message>
|
||||
|
|
|
@ -1437,6 +1437,13 @@
|
|||
<translation>Nieudane pobieranie</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>VoiceNoteOverlay</name>
|
||||
<message>
|
||||
<source>Record a Voice Note</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>WebPagePreview</name>
|
||||
<message>
|
||||
|
|
|
@ -1437,6 +1437,13 @@
|
|||
<translation>Ошибка скачивания.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>VoiceNoteOverlay</name>
|
||||
<message>
|
||||
<source>Record a Voice Note</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>WebPagePreview</name>
|
||||
<message>
|
||||
|
|
|
@ -1418,6 +1418,13 @@
|
|||
<translation>Nerladdning misslyckades.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>VoiceNoteOverlay</name>
|
||||
<message>
|
||||
<source>Record a Voice Note</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>WebPagePreview</name>
|
||||
<message>
|
||||
|
|
|
@ -1399,6 +1399,13 @@
|
|||
<translation>下载失败</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>VoiceNoteOverlay</name>
|
||||
<message>
|
||||
<source>Record a Voice Note</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>WebPagePreview</name>
|
||||
<message>
|
||||
|
|
|
@ -1418,6 +1418,13 @@
|
|||
<translation>Download failed.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>VoiceNoteOverlay</name>
|
||||
<message>
|
||||
<source>Record a Voice Note</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>WebPagePreview</name>
|
||||
<message>
|
||||
|
|
Loading…
Reference in a new issue