summary refs log tree commit diff
path: root/resources
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2023-06-19 01:38:40 +0200
committerNicolas Werner <nicolas.werner@hotmail.de>2023-06-19 01:38:40 +0200
commitce1a64bc19ffc21e115bdf2587bb053d7a417f3e (patch)
treea195d127228218772a535448de642f0bb7b6d053 /resources
parentRemove explicit link styling (diff)
downloadnheko-ce1a64bc19ffc21e115bdf2587bb053d7a417f3e.tar.xz
Move to automatic type registration
Diffstat (limited to 'resources')
-rw-r--r--resources/qml/Avatar.qml2
-rw-r--r--resources/qml/ImageButton.qml2
-rw-r--r--resources/qml/MatrixText.qml2
-rw-r--r--resources/qml/MessageView.qml4
-rw-r--r--resources/qml/Root.qml8
-rw-r--r--resources/qml/TimelineRow.qml2
-rw-r--r--resources/qml/TimelineView.qml19
-rw-r--r--resources/qml/TopBar.qml2
-rw-r--r--resources/qml/components/AdaptiveLayout.qml2
-rw-r--r--resources/qml/components/TextButton.qml2
-rw-r--r--resources/qml/delegates/FileMessage.qml2
-rw-r--r--resources/qml/delegates/Reply.qml2
-rw-r--r--resources/qml/delegates/TextMessage.qml2
-rw-r--r--resources/qml/dialogs/InviteDialog.qml2
-rw-r--r--resources/qml/dialogs/ReadReceipts.qml2
-rw-r--r--resources/qml/dialogs/RoomMembers.qml2
-rw-r--r--resources/qml/dialogs/RoomSettings.qml2
-rw-r--r--resources/qml/emoji/StickerPicker.qml1
-rw-r--r--resources/qml/ui/animations/qmldir2
-rw-r--r--resources/qml/ui/media/qmldir3
-rw-r--r--resources/qml/ui/qmldir4
-rw-r--r--resources/qml/voip/ActiveCallBar.qml24
-rw-r--r--resources/qml/voip/CallDevices.qml2
-rw-r--r--resources/qml/voip/CallInvite.qml8
-rw-r--r--resources/qml/voip/CallInviteBar.qml8
-rw-r--r--resources/qml/voip/PlaceCall.qml4
-rw-r--r--resources/qml/voip/ScreenShare.qml8
-rw-r--r--resources/res.qrc100
28 files changed, 55 insertions, 168 deletions
diff --git a/resources/qml/Avatar.qml b/resources/qml/Avatar.qml

index 5a28b5de..39061d2b 100644 --- a/resources/qml/Avatar.qml +++ b/resources/qml/Avatar.qml
@@ -102,7 +102,7 @@ AbstractButton { target: Presence } } - CursorShape { + NhekoCursorShape { anchors.fill: parent cursorShape: Qt.PointingHandCursor } diff --git a/resources/qml/ImageButton.qml b/resources/qml/ImageButton.qml
index 4115cd0a..e2e1b914 100644 --- a/resources/qml/ImageButton.qml +++ b/resources/qml/ImageButton.qml
@@ -31,7 +31,7 @@ AbstractButton { sourceSize.height: button.height sourceSize.width: button.width } - CursorShape { + NhekoCursorShape { id: mouseArea anchors.fill: parent diff --git a/resources/qml/MatrixText.qml b/resources/qml/MatrixText.qml
index 6d611311..7a71182b 100644 --- a/resources/qml/MatrixText.qml +++ b/resources/qml/MatrixText.qml
@@ -44,7 +44,7 @@ TextArea { onPressAndHold: (event) => event.accepted = false onPressed: (event) => event.accepted = (event.button == Qt.LeftButton) - CursorShape { + NhekoCursorShape { id: cs anchors.fill: parent diff --git a/resources/qml/MessageView.qml b/resources/qml/MessageView.qml
index 3eed4c48..af3a3371 100644 --- a/resources/qml/MessageView.qml +++ b/resources/qml/MessageView.qml
@@ -332,7 +332,7 @@ Item { sourceSize.height: button.height sourceSize.width: button.width } - CursorShape { + NhekoCursorShape { anchors.fill: parent cursorShape: Qt.PointingHandCursor } @@ -590,7 +590,7 @@ Item { elideWidth: userInfo.remainingWidth - Math.min(statusMsg.implicitWidth, userInfo.remainingWidth / 3) text: userName } - CursorShape { + NhekoCursorShape { anchors.fill: parent cursorShape: Qt.PointingHandCursor } diff --git a/resources/qml/Root.qml b/resources/qml/Root.qml
index b869f95a..85c10ddd 100644 --- a/resources/qml/Root.qml +++ b/resources/qml/Root.qml
@@ -15,7 +15,6 @@ import QtQuick.Controls import QtQuick.Layouts import QtQuick.Window import im.nheko -import im.nheko.EmojiModel Pane { id: timelineRoot @@ -93,14 +92,13 @@ Pane { id: fontMetrics } - RoomDirectoryModel { - id: publicRooms - - } UserDirectoryModel { id: userDirectory } + RoomDirectoryModel { + id: publicRooms + } Component { id: readReceiptsDialog diff --git a/resources/qml/TimelineRow.qml b/resources/qml/TimelineRow.qml
index 9c8ebdc6..16a31a3c 100644 --- a/resources/qml/TimelineRow.qml +++ b/resources/qml/TimelineRow.qml
@@ -173,7 +173,7 @@ AbstractButton { Layout.row: 0 blurhash: r.relatedEventCacheBuster, fromModel(Room.Blurhash) ?? "" body: r.relatedEventCacheBuster, fromModel(Room.Body) ?? "" - callType: r.relatedEventCacheBuster, fromModel(Room.CallType) ?? "" + callType: r.relatedEventCacheBuster, fromModel(Room.Voip) ?? "" duration: r.relatedEventCacheBuster, fromModel(Room.Duration) ?? 0 encryptionError: r.relatedEventCacheBuster, fromModel(Room.EncryptionError) ?? 0 eventId: fromModel(Room.EventId) ?? "" diff --git a/resources/qml/TimelineView.qml b/resources/qml/TimelineView.qml
index 18085f28..7b89eb4b 100644 --- a/resources/qml/TimelineView.qml +++ b/resources/qml/TimelineView.qml
@@ -8,14 +8,13 @@ import "./device-verification" import "./emoji" import "./ui" import "./voip" -import Qt.labs.platform 1.1 as Platform -import QtQuick 2.15 -import QtQuick.Controls 2.5 -import QtQuick.Layouts 1.3 -import QtQuick.Particles 2.15 -import QtQuick.Window 2.13 -import im.nheko 1.0 -import im.nheko.EmojiModel 1.0 +import Qt.labs.platform as Platform +import QtQuick +import QtQuick.Controls +import QtQuick.Layouts +import QtQuick.Particles +import QtQuick.Window +import im.nheko Item { id: timelineView @@ -123,7 +122,7 @@ Item { searchString: topBar.searchString } Loader { - source: CallManager.isOnCall && CallManager.callType != CallType.VOICE ? "voip/VideoCall.qml" : "" + source: CallManager.isOnCall && CallManager.callType != Voip.VOICE ? "voip/VideoCall.qml" : "" onLoaded: TimelineManager.setVideoCallItem() } @@ -249,7 +248,7 @@ Item { onLinkActivated: Nheko.openLink(link) - CursorShape { + NhekoCursorShape { anchors.fill: parent cursorShape: parent.hoveredLink ? Qt.PointingHandCursor : Qt.ArrowCursor } diff --git a/resources/qml/TopBar.qml b/resources/qml/TopBar.qml
index 3f2d8d2a..699595e6 100644 --- a/resources/qml/TopBar.qml +++ b/resources/qml/TopBar.qml
@@ -369,7 +369,7 @@ Pane { onAccepted: topBar.searchString = text } } - CursorShape { + NhekoCursorShape { anchors.bottomMargin: (pinnedMessages.visible ? pinnedMessages.height : 0) + (widgets.visible ? widgets.height : 0) anchors.fill: parent cursorShape: Qt.PointingHandCursor diff --git a/resources/qml/components/AdaptiveLayout.qml b/resources/qml/components/AdaptiveLayout.qml
index 9fc27055..eea74006 100644 --- a/resources/qml/components/AdaptiveLayout.qml +++ b/resources/qml/components/AdaptiveLayout.qml
@@ -87,7 +87,7 @@ Container { x: parent.preferredWidth z: 3 - CursorShape { + NhekoCursorShape { height: parent.height width: container.splitterGrabMargin * 2 x: -container.splitterGrabMargin diff --git a/resources/qml/components/TextButton.qml b/resources/qml/components/TextButton.qml
index 0b1ac270..b6153f22 100644 --- a/resources/qml/components/TextButton.qml +++ b/resources/qml/components/TextButton.qml
@@ -32,7 +32,7 @@ AbstractButton { horizontalAlignment: Text.AlignHCenter } - CursorShape { + NhekoCursorShape { id: mouseArea anchors.fill: parent diff --git a/resources/qml/delegates/FileMessage.qml b/resources/qml/delegates/FileMessage.qml
index 48546592..82b82c1b 100644 --- a/resources/qml/delegates/FileMessage.qml +++ b/resources/qml/delegates/FileMessage.qml
@@ -49,7 +49,7 @@ Item { gesturePolicy: TapHandler.ReleaseWithinBounds } - CursorShape { + NhekoCursorShape { anchors.fill: parent cursorShape: Qt.PointingHandCursor } diff --git a/resources/qml/delegates/Reply.qml b/resources/qml/delegates/Reply.qml
index 94128960..4d4983ac 100644 --- a/resources/qml/delegates/Reply.qml +++ b/resources/qml/delegates/Reply.qml
@@ -43,7 +43,7 @@ AbstractButton { implicitHeight: replyContainer.height implicitWidth: visible? colorLine.width+Math.max(replyContainer.implicitWidth,userName_.fullTextWidth) : 0 // visible? seems to be causing issues - CursorShape { + NhekoCursorShape { anchors.fill: parent cursorShape: Qt.PointingHandCursor } diff --git a/resources/qml/delegates/TextMessage.qml b/resources/qml/delegates/TextMessage.qml
index 1237180b..1eb5e2c0 100644 --- a/resources/qml/delegates/TextMessage.qml +++ b/resources/qml/delegates/TextMessage.qml
@@ -46,7 +46,7 @@ MatrixText { enabled: !Settings.mobileMode font.pointSize: (Settings.enlargeEmojiOnlyMessages && isOnlyEmoji > 0 && isOnlyEmoji < 4) ? Settings.fontSize * 3 : Settings.fontSize - CursorShape { + NhekoCursorShape { enabled: isReply anchors.fill: parent cursorShape: Qt.PointingHandCursor diff --git a/resources/qml/dialogs/InviteDialog.qml b/resources/qml/dialogs/InviteDialog.qml
index f5d467db..58bae7fd 100644 --- a/resources/qml/dialogs/InviteDialog.qml +++ b/resources/qml/dialogs/InviteDialog.qml
@@ -212,7 +212,7 @@ ApplicationWindow { onClicked: invitees.removeUser(model.mxid) } - CursorShape { + NhekoCursorShape { anchors.fill: parent cursorShape: Qt.PointingHandCursor } diff --git a/resources/qml/dialogs/ReadReceipts.qml b/resources/qml/dialogs/ReadReceipts.qml
index 523b47cb..d65de73c 100644 --- a/resources/qml/dialogs/ReadReceipts.qml +++ b/resources/qml/dialogs/ReadReceipts.qml
@@ -110,7 +110,7 @@ ApplicationWindow { } - CursorShape { + NhekoCursorShape { anchors.fill: parent cursorShape: Qt.PointingHandCursor } diff --git a/resources/qml/dialogs/RoomMembers.qml b/resources/qml/dialogs/RoomMembers.qml
index 916c6c86..bbf1605d 100644 --- a/resources/qml/dialogs/RoomMembers.qml +++ b/resources/qml/dialogs/RoomMembers.qml
@@ -220,7 +220,7 @@ ApplicationWindow { } - CursorShape { + NhekoCursorShape { anchors.fill: parent cursorShape: Qt.PointingHandCursor } diff --git a/resources/qml/dialogs/RoomSettings.qml b/resources/qml/dialogs/RoomSettings.qml
index 0fa98fff..1f011bf1 100644 --- a/resources/qml/dialogs/RoomSettings.qml +++ b/resources/qml/dialogs/RoomSettings.qml
@@ -213,7 +213,7 @@ ApplicationWindow { horizontalAlignment: TextEdit.AlignHCenter onLinkActivated: Nheko.openLink(link) - CursorShape { + NhekoCursorShape { anchors.fill: parent cursorShape: parent.hoveredLink ? Qt.PointingHandCursor : Qt.ArrowCursor } diff --git a/resources/qml/emoji/StickerPicker.qml b/resources/qml/emoji/StickerPicker.qml
index c10e57e7..b7721db6 100644 --- a/resources/qml/emoji/StickerPicker.qml +++ b/resources/qml/emoji/StickerPicker.qml
@@ -7,7 +7,6 @@ import QtQuick import QtQuick.Controls import QtQuick.Layouts import im.nheko -import im.nheko.EmojiModel Menu { id: stickerPopup diff --git a/resources/qml/ui/animations/qmldir b/resources/qml/ui/animations/qmldir deleted file mode 100644
index 14f9ad86..00000000 --- a/resources/qml/ui/animations/qmldir +++ /dev/null
@@ -1,2 +0,0 @@ -module im.nheko.UI.Animations -BlinkAnimation 1.0 BlinkAnimation.qml diff --git a/resources/qml/ui/media/qmldir b/resources/qml/ui/media/qmldir deleted file mode 100644
index 143b603d..00000000 --- a/resources/qml/ui/media/qmldir +++ /dev/null
@@ -1,3 +0,0 @@ -module im.nheko.UI.Media -VolumeSlider 1.0 VolumeSlider.qml -MediaControls 1.0 MediaControls.qml \ No newline at end of file diff --git a/resources/qml/ui/qmldir b/resources/qml/ui/qmldir deleted file mode 100644
index a2ce7514..00000000 --- a/resources/qml/ui/qmldir +++ /dev/null
@@ -1,4 +0,0 @@ -module im.nheko.UI -NhekoSlider 1.0 NhekoSlider.qml -Ripple 1.0 Ripple.qml -Spinner 1.0 Spinner.qml \ No newline at end of file diff --git a/resources/qml/voip/ActiveCallBar.qml b/resources/qml/voip/ActiveCallBar.qml
index d055c013..45afedab 100644 --- a/resources/qml/voip/ActiveCallBar.qml +++ b/resources/qml/voip/ActiveCallBar.qml
@@ -16,7 +16,7 @@ Rectangle { MouseArea { anchors.fill: parent onClicked: { - if (CallManager.callType != CallType.VOICE) + if (CallManager.callType != Voip.VOICE) stackLayout.currentIndex = stackLayout.currentIndex ? 0 : 1; } @@ -58,7 +58,7 @@ Rectangle { states: [ State { name: "VOICE" - when: CallManager.callType == CallType.VOICE + when: CallManager.callType == Voip.VOICE PropertyChanges { target: callTypeIcon @@ -68,7 +68,7 @@ Rectangle { }, State { name: "VIDEO" - when: CallManager.callType == CallType.VIDEO + when: CallManager.callType == Voip.VIDEO PropertyChanges { target: callTypeIcon @@ -78,7 +78,7 @@ Rectangle { }, State { name: "SCREEN" - when: CallManager.callType == CallType.SCREEN + when: CallManager.callType == Voip.SCREEN PropertyChanges { target: callTypeIcon @@ -100,7 +100,7 @@ Rectangle { states: [ State { name: "OFFERSENT" - when: CallManager.callState == WebRTCState.OFFERSENT + when: CallManager.callState == Voip.OFFERSENT PropertyChanges { target: callStateLabel @@ -110,7 +110,7 @@ Rectangle { }, State { name: "CONNECTING" - when: CallManager.callState == WebRTCState.CONNECTING + when: CallManager.callState == Voip.CONNECTING PropertyChanges { target: callStateLabel @@ -120,7 +120,7 @@ Rectangle { }, State { name: "ANSWERSENT" - when: CallManager.callState == WebRTCState.ANSWERSENT + when: CallManager.callState == Voip.ANSWERSENT PropertyChanges { target: callStateLabel @@ -130,7 +130,7 @@ Rectangle { }, State { name: "CONNECTED" - when: CallManager.callState == WebRTCState.CONNECTED + when: CallManager.callState == Voip.CONNECTED PropertyChanges { target: callStateLabel @@ -144,13 +144,13 @@ Rectangle { PropertyChanges { target: stackLayout - currentIndex: CallManager.callType != CallType.VOICE ? 1 : 0 + currentIndex: CallManager.callType != Voip.VOICE ? 1 : 0 } }, State { name: "DISCONNECTED" - when: CallManager.callState == WebRTCState.DISCONNECTED + when: CallManager.callState == Voip.DISCONNECTED PropertyChanges { target: callStateLabel @@ -176,7 +176,7 @@ Rectangle { } interval: 1000 - running: CallManager.callState == WebRTCState.CONNECTED + running: CallManager.callState == Voip.CONNECTED repeat: true onTriggered: { var d = new Date(); @@ -190,7 +190,7 @@ Rectangle { Label { Layout.leftMargin: 16 - visible: CallManager.callType == CallType.SCREEN && CallManager.callState == WebRTCState.CONNECTED + visible: CallManager.callType == Voip.SCREEN && CallManager.callState == Voip.CONNECTED text: qsTr("You are screen sharing") font.pointSize: fontMetrics.font.pointSize * 1.1 color: "#000000" diff --git a/resources/qml/voip/CallDevices.qml b/resources/qml/voip/CallDevices.qml
index d4c554dc..46c8cde3 100644 --- a/resources/qml/voip/CallDevices.qml +++ b/resources/qml/voip/CallDevices.qml
@@ -43,7 +43,7 @@ Popup { } RowLayout { - visible: CallManager.callType == CallType.VIDEO && CallManager.cameras.length > 0 + visible: CallManager.callType == Voip.VIDEO && CallManager.cameras.length > 0 Image { Layout.preferredWidth: 22 diff --git a/resources/qml/voip/CallInvite.qml b/resources/qml/voip/CallInvite.qml
index 25aa0818..8a609c32 100644 --- a/resources/qml/voip/CallInvite.qml +++ b/resources/qml/voip/CallInvite.qml
@@ -62,7 +62,7 @@ Popup { Layout.bottomMargin: callInv.height / 25 Image { - property string image: CallManager.callType == CallType.VIDEO ? ":/icons/icons/ui/video.svg" : ":/icons/icons/ui/place-call.svg" + property string image: CallManager.callType == Voip.VIDEO ? ":/icons/icons/ui/video.svg" : ":/icons/icons/ui/place-call.svg" Layout.alignment: Qt.AlignCenter Layout.preferredWidth: callInv.height / 10 @@ -72,7 +72,7 @@ Popup { Label { Layout.alignment: Qt.AlignCenter - text: CallManager.callType == CallType.VIDEO ? qsTr("Video Call") : qsTr("Voice Call") + text: CallManager.callType == Voip.VIDEO ? qsTr("Video Call") : qsTr("Voice Call") font.pointSize: fontMetrics.font.pointSize * 2 color: palette.windowText } @@ -106,7 +106,7 @@ Popup { } RowLayout { - visible: CallManager.callType == CallType.VIDEO && CallManager.cameras.length > 0 + visible: CallManager.callType == Voip.VIDEO && CallManager.cameras.length > 0 Layout.alignment: Qt.AlignCenter Image { @@ -169,7 +169,7 @@ Popup { RoundButton { id: acceptButton - property string image: CallManager.callType == CallType.VIDEO ? ":/icons/icons/ui/video.svg" : ":/icons/icons/ui/place-call.svg" + property string image: CallManager.callType == Voip.VIDEO ? ":/icons/icons/ui/video.svg" : ":/icons/icons/ui/place-call.svg" implicitWidth: buttonLayout.buttonSize implicitHeight: buttonLayout.buttonSize diff --git a/resources/qml/voip/CallInviteBar.qml b/resources/qml/voip/CallInviteBar.qml
index 3c7426cc..d82bd143 100644 --- a/resources/qml/voip/CallInviteBar.qml +++ b/resources/qml/voip/CallInviteBar.qml
@@ -57,12 +57,12 @@ Rectangle { Layout.leftMargin: 4 Layout.preferredWidth: 24 Layout.preferredHeight: 24 - source: CallManager.callType == CallType.VIDEO ? "qrc:/icons/icons/ui/video.svg" : "qrc:/icons/icons/ui/place-call.svg" + source: CallManager.callType == Voip.VIDEO ? "qrc:/icons/icons/ui/video.svg" : "qrc:/icons/icons/ui/place-call.svg" } Label { font.pointSize: fontMetrics.font.pointSize * 1.1 - text: CallManager.callType == CallType.VIDEO ? qsTr("Video Call") : qsTr("Voice Call") + text: CallManager.callType == Voip.VIDEO ? qsTr("Video Call") : qsTr("Voice Call") color: "#000000" } @@ -88,7 +88,7 @@ Rectangle { Button { Layout.rightMargin: 4 - icon.source: CallManager.callType == CallType.VIDEO ? "qrc:/icons/icons/ui/video.svg" : "qrc:/icons/icons/ui/place-call.svg" + icon.source: CallManager.callType == Voip.VIDEO ? "qrc:/icons/icons/ui/video.svg" : "qrc:/icons/icons/ui/place-call.svg" text: qsTr("Accept") onClicked: { if (CallManager.mics.length == 0) { @@ -108,7 +108,7 @@ Rectangle { timelineRoot.destroyOnClose(dialog); return ; } - if (CallManager.callType == CallType.VIDEO && CallManager.cameras.length > 0 && !CallManager.cameras.includes(Settings.camera)) { + if (CallManager.callType == Voip.VIDEO && CallManager.cameras.length > 0 && !CallManager.cameras.includes(Settings.camera)) { var dialog = deviceError.createObject(timelineRoot, { "errorString": qsTr("Unknown camera: %1").arg(Settings.camera), "image": ":/icons/icons/ui/video.svg" diff --git a/resources/qml/voip/PlaceCall.qml b/resources/qml/voip/PlaceCall.qml
index 5d9387c3..2d4c46f8 100644 --- a/resources/qml/voip/PlaceCall.qml +++ b/resources/qml/voip/PlaceCall.qml
@@ -81,7 +81,7 @@ Popup { onClicked: { if (buttonLayout.validateMic()) { Settings.microphone = micCombo.currentText; - CallManager.sendInvite(room.roomId, CallType.VOICE); + CallManager.sendInvite(room.roomId, Voip.VOICE); close(); } } @@ -95,7 +95,7 @@ Popup { if (buttonLayout.validateMic()) { Settings.microphone = micCombo.currentText; Settings.camera = cameraCombo.currentText; - CallManager.sendInvite(room.roomId, CallType.VIDEO); + CallManager.sendInvite(room.roomId, Voip.VIDEO); close(); } } diff --git a/resources/qml/voip/ScreenShare.qml b/resources/qml/voip/ScreenShare.qml
index ce998299..2337f6d0 100644 --- a/resources/qml/voip/ScreenShare.qml +++ b/resources/qml/voip/ScreenShare.qml
@@ -47,7 +47,7 @@ Popup { Layout.fillWidth: true model: CallManager.screenShareTypeList() - onCurrentIndexChanged: CallManager.setScreenShareType(currentIndex); + onCurrentIndexChanged: CallManager.setVoip(currentIndex); } } @@ -63,7 +63,7 @@ Popup { } ComboBox { - visible: CallManager.screenShareType == ScreenShareType.X11 + visible: CallManager.screenShareType == Voip.X11 id: windowCombo Layout.fillWidth: true @@ -71,7 +71,7 @@ Popup { } Button { - visible: CallManager.screenShareType == ScreenShareType.XDP + visible: CallManager.screenShareType == Voip.XDP highlighted: !CallManager.screenShareReady text: qsTr("Request screencast") onClicked: { @@ -165,7 +165,7 @@ Popup { Settings.screenShareRemoteVideo = remoteVideoCheckBox.checked; Settings.screenShareHideCursor = hideCursorCheckBox.checked; - CallManager.sendInvite(room.roomId, CallType.SCREEN, windowCombo.currentIndex); + CallManager.sendInvite(room.roomId, Voip.SCREEN, windowCombo.currentIndex); close(); } } diff --git a/resources/res.qrc b/resources/res.qrc
index ed32b2bf..fb857d4a 100644 --- a/resources/res.qrc +++ b/resources/res.qrc
@@ -92,107 +92,7 @@ </qresource> <qresource prefix="/"> <file>qtquickcontrols2.conf</file> - <file>qml/Root.qml</file> - <file>qml/ChatPage.qml</file> - <file>qml/CommunitiesList.qml</file> - <file>qml/RoomList.qml</file> - <file>qml/TimelineView.qml</file> - <file>qml/Avatar.qml</file> - <file>qml/Completer.qml</file> - <file>qml/EncryptionIndicator.qml</file> - <file>qml/ImageButton.qml</file> - <file>qml/ElidedLabel.qml</file> - <file>qml/MatrixText.qml</file> - <file>qml/MatrixTextField.qml</file> - <file>qml/ToggleButton.qml</file> - <file>qml/UploadBox.qml</file> - <file>qml/MessageInput.qml</file> - <file>qml/MessageView.qml</file> - <file>qml/PrivacyScreen.qml</file> - <file>qml/Reactions.qml</file> - <file>qml/ReplyPopup.qml</file> - <file>qml/StatusIndicator.qml</file> - <file>qml/TimelineRow.qml</file> - <file>qml/TopBar.qml</file> - <file>qml/QuickSwitcher.qml</file> - <file>qml/ForwardCompleter.qml</file> - <file>qml/SelfVerificationCheck.qml</file> - <file>qml/TypingIndicator.qml</file> - <file>qml/MessageInputWarning.qml</file> - <file>qml/components/AdaptiveLayout.qml</file> - <file>qml/components/AdaptiveLayoutElement.qml</file> - <file>qml/components/AvatarListTile.qml</file> - <file>qml/components/FlatButton.qml</file> - <file>qml/components/MainWindowDialog.qml</file> - <file>qml/components/NhekoTabButton.qml</file> - <file>qml/components/NotificationBubble.qml</file> - <file>qml/components/ReorderableListview.qml</file> - <file>qml/components/SpaceMenuLevel.qml</file> - <file>qml/components/TextButton.qml</file> - <file>qml/components/UserListRow.qml</file> - <file>qml/delegates/Encrypted.qml</file> - <file>qml/delegates/FileMessage.qml</file> - <file>qml/delegates/ImageMessage.qml</file> - <file>qml/delegates/MessageDelegate.qml</file> - <file>qml/delegates/NoticeMessage.qml</file> - <file>qml/delegates/Pill.qml</file> - <file>qml/delegates/Placeholder.qml</file> - <file>qml/delegates/PlayableMediaMessage.qml</file> - <file>qml/delegates/Redacted.qml</file> - <file>qml/delegates/Reply.qml</file> - <file>qml/delegates/TextMessage.qml</file> - <file>qml/device-verification/DeviceVerification.qml</file> - <file>qml/device-verification/DigitVerification.qml</file> - <file>qml/device-verification/EmojiVerification.qml</file> - <file>qml/device-verification/Failed.qml</file> - <file>qml/device-verification/NewVerificationRequest.qml</file> - <file>qml/device-verification/Success.qml</file> - <file>qml/device-verification/Waiting.qml</file> - <file>qml/dialogs/AliasEditor.qml</file> - <file>qml/dialogs/ConfirmJoinRoomDialog.qml</file> - <file>qml/dialogs/CreateDirect.qml</file> - <file>qml/dialogs/CreateRoom.qml</file> - <file>qml/dialogs/HiddenEventsDialog.qml</file> - <file>qml/dialogs/ImageOverlay.qml</file> - <file>qml/dialogs/ImagePackEditorDialog.qml</file> - <file>qml/dialogs/ImagePackSettingsDialog.qml</file> - <file>qml/dialogs/InputDialog.qml</file> - <file>qml/dialogs/InviteDialog.qml</file> - <file>qml/dialogs/JoinRoomDialog.qml</file> - <file>qml/dialogs/LeaveRoomDialog.qml</file> - <file>qml/dialogs/LogoutDialog.qml</file> - <file>qml/dialogs/PhoneNumberInputDialog.qml</file> - <file>qml/dialogs/PowerLevelEditor.qml</file> - <file>qml/dialogs/PowerLevelSpacesApplyDialog.qml</file> - <file>qml/dialogs/RawMessageDialog.qml</file> - <file>qml/dialogs/ReadReceipts.qml</file> - <file>qml/dialogs/RoomDirectory.qml</file> - <file>qml/dialogs/RoomMembers.qml</file> - <file>qml/dialogs/AllowedRoomsSettingsDialog.qml</file> - <file>qml/dialogs/RoomSettings.qml</file> - <file>qml/dialogs/UserProfile.qml</file> - <file>qml/emoji/StickerPicker.qml</file> - <file>qml/pages/LoginPage.qml</file> - <file>qml/pages/RegisterPage.qml</file> - <file>qml/pages/UserSettingsPage.qml</file> - <file>qml/pages/WelcomePage.qml</file> - <file>qml/ui/NhekoSlider.qml</file> - <file>qml/ui/Ripple.qml</file> - <file>qml/ui/Snackbar.qml</file> - <file>qml/ui/Spinner.qml</file> - <file>qml/ui/animations/BlinkAnimation.qml</file> - <file>qml/ui/media/MediaControls.qml</file> - <file>qml/voip/ActiveCallBar.qml</file> - <file>qml/voip/CallDevices.qml</file> - <file>qml/voip/CallInvite.qml</file> - <file>qml/voip/CallInviteBar.qml</file> - <file>qml/voip/DeviceError.qml</file> - <file>qml/voip/PlaceCall.qml</file> - <file>qml/voip/ScreenShare.qml</file> - <file>qml/voip/VideoCall.qml</file> <file>confettiparticle.svg</file> - <file>qml/delegates/EncryptionEnabled.qml</file> - <file>qml/ui/TimelineEffects.qml</file> </qresource> <qresource prefix="/media"> <file>media/ring.ogg</file>