summary refs log tree commit diff
path: root/resources/qml
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2021-03-05 00:35:15 +0100
committerNicolas Werner <nicolas.werner@hotmail.de>2021-03-05 01:04:07 +0100
commita6f0d2ea7d8eb359e7d9ca7b5aac91ffe9d140ec (patch)
treeaab5ff97d57e57ea675e27adbf80449939cedebe /resources/qml
parentAvoid some duplicate property queries (diff)
downloadnheko-a6f0d2ea7d8eb359e7d9ca7b5aac91ffe9d140ec.tar.xz
Update license headers
Diffstat (limited to 'resources/qml')
-rw-r--r--resources/qml/Avatar.qml4
-rw-r--r--resources/qml/Completer.qml4
-rw-r--r--resources/qml/EncryptionIndicator.qml4
-rw-r--r--resources/qml/ImageButton.qml4
-rw-r--r--resources/qml/MatrixText.qml4
-rw-r--r--resources/qml/MessageInput.qml4
-rw-r--r--resources/qml/MessageView.qml4
-rw-r--r--resources/qml/NhekoBusyIndicator.qml4
-rw-r--r--resources/qml/PrivacyScreen.qml4
-rw-r--r--resources/qml/Reactions.qml4
-rw-r--r--resources/qml/ReplyPopup.qml4
-rw-r--r--resources/qml/RoomSettings.qml4
-rw-r--r--resources/qml/ScrollHelper.qml24
-rw-r--r--resources/qml/StatusIndicator.qml4
-rw-r--r--resources/qml/TimelineRow.qml4
-rw-r--r--resources/qml/TimelineView.qml4
-rw-r--r--resources/qml/ToggleButton.qml4
-rw-r--r--resources/qml/TopBar.qml4
-rw-r--r--resources/qml/TypingIndicator.qml4
-rw-r--r--resources/qml/UserProfile.qml4
-rw-r--r--resources/qml/delegates/FileMessage.qml4
-rw-r--r--resources/qml/delegates/ImageMessage.qml4
-rw-r--r--resources/qml/delegates/MessageDelegate.qml4
-rw-r--r--resources/qml/delegates/NoticeMessage.qml4
-rw-r--r--resources/qml/delegates/Pill.qml4
-rw-r--r--resources/qml/delegates/Placeholder.qml4
-rw-r--r--resources/qml/delegates/PlayableMediaMessage.qml4
-rw-r--r--resources/qml/delegates/Reply.qml4
-rw-r--r--resources/qml/delegates/TextMessage.qml4
-rw-r--r--resources/qml/device-verification/AwaitingVerificationConfirmation.qml4
-rw-r--r--resources/qml/device-verification/DeviceVerification.qml4
-rw-r--r--resources/qml/device-verification/DigitVerification.qml4
-rw-r--r--resources/qml/device-verification/EmojiElement.qml4
-rw-r--r--resources/qml/device-verification/EmojiVerification.qml4
-rw-r--r--resources/qml/device-verification/Failed.qml4
-rw-r--r--resources/qml/device-verification/NewVerificationRequest.qml4
-rw-r--r--resources/qml/device-verification/Success.qml4
-rw-r--r--resources/qml/device-verification/Waiting.qml4
-rw-r--r--resources/qml/emoji/EmojiButton.qml4
-rw-r--r--resources/qml/emoji/EmojiPicker.qml4
-rw-r--r--resources/qml/ui/Ripple.qml4
-rw-r--r--resources/qml/voip/ActiveCallBar.qml4
-rw-r--r--resources/qml/voip/CallDevices.qml4
-rw-r--r--resources/qml/voip/CallInvite.qml4
-rw-r--r--resources/qml/voip/CallInviteBar.qml4
-rw-r--r--resources/qml/voip/DeviceError.qml4
-rw-r--r--resources/qml/voip/PlaceCall.qml4
-rw-r--r--resources/qml/voip/ScreenShare.qml4
-rw-r--r--resources/qml/voip/VideoCall.qml4
49 files changed, 198 insertions, 18 deletions
diff --git a/resources/qml/Avatar.qml b/resources/qml/Avatar.qml

index f01911bb..07e68e10 100644 --- a/resources/qml/Avatar.qml +++ b/resources/qml/Avatar.qml
@@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2021 Nheko Contributors +// +// SPDX-License-Identifier: GPL-3.0-or-later + import "./ui" import QtGraphicalEffects 1.0 import QtQuick 2.6 diff --git a/resources/qml/Completer.qml b/resources/qml/Completer.qml
index f77f50e9..e1b5c129 100644 --- a/resources/qml/Completer.qml +++ b/resources/qml/Completer.qml
@@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2021 Nheko Contributors +// +// SPDX-License-Identifier: GPL-3.0-or-later + import "./ui" import QtQuick 2.9 import QtQuick.Controls 2.3 diff --git a/resources/qml/EncryptionIndicator.qml b/resources/qml/EncryptionIndicator.qml
index 00efe9e4..ebb9031a 100644 --- a/resources/qml/EncryptionIndicator.qml +++ b/resources/qml/EncryptionIndicator.qml
@@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2021 Nheko Contributors +// +// SPDX-License-Identifier: GPL-3.0-or-later + import QtQuick 2.12 import QtQuick.Controls 2.1 import im.nheko 1.0 diff --git a/resources/qml/ImageButton.qml b/resources/qml/ImageButton.qml
index 159c750f..76cc0b42 100644 --- a/resources/qml/ImageButton.qml +++ b/resources/qml/ImageButton.qml
@@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2021 Nheko Contributors +// +// SPDX-License-Identifier: GPL-3.0-or-later + import "./ui" import QtQuick 2.3 import QtQuick.Controls 2.3 diff --git a/resources/qml/MatrixText.qml b/resources/qml/MatrixText.qml
index 4ea15518..dfe7122d 100644 --- a/resources/qml/MatrixText.qml +++ b/resources/qml/MatrixText.qml
@@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2021 Nheko Contributors +// +// SPDX-License-Identifier: GPL-3.0-or-later + import QtQuick 2.5 import QtQuick.Controls 2.3 import im.nheko 1.0 diff --git a/resources/qml/MessageInput.qml b/resources/qml/MessageInput.qml
index c526aa2c..7b651bc0 100644 --- a/resources/qml/MessageInput.qml +++ b/resources/qml/MessageInput.qml
@@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2021 Nheko Contributors +// +// SPDX-License-Identifier: GPL-3.0-or-later + import "./voip" import QtQuick 2.12 import QtQuick.Controls 2.3 diff --git a/resources/qml/MessageView.qml b/resources/qml/MessageView.qml
index 0503f467..bdde8d47 100644 --- a/resources/qml/MessageView.qml +++ b/resources/qml/MessageView.qml
@@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2021 Nheko Contributors +// +// SPDX-License-Identifier: GPL-3.0-or-later + import "./delegates" import QtGraphicalEffects 1.0 import QtQuick 2.12 diff --git a/resources/qml/NhekoBusyIndicator.qml b/resources/qml/NhekoBusyIndicator.qml
index 89a40dd5..917e11dc 100644 --- a/resources/qml/NhekoBusyIndicator.qml +++ b/resources/qml/NhekoBusyIndicator.qml
@@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2021 Nheko Contributors +// +// SPDX-License-Identifier: GPL-3.0-or-later + import QtQuick 2.9 import QtQuick.Controls 2.3 import QtQuick.Layouts 1.2 diff --git a/resources/qml/PrivacyScreen.qml b/resources/qml/PrivacyScreen.qml
index 76520706..ca73cfd7 100644 --- a/resources/qml/PrivacyScreen.qml +++ b/resources/qml/PrivacyScreen.qml
@@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2021 Nheko Contributors +// +// SPDX-License-Identifier: GPL-3.0-or-later + import QtGraphicalEffects 1.0 import QtQuick 2.12 import im.nheko 1.0 diff --git a/resources/qml/Reactions.qml b/resources/qml/Reactions.qml
index 836087ef..f53c89ad 100644 --- a/resources/qml/Reactions.qml +++ b/resources/qml/Reactions.qml
@@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2021 Nheko Contributors +// +// SPDX-License-Identifier: GPL-3.0-or-later + import QtQuick 2.6 import QtQuick.Controls 2.2 import im.nheko 1.0 diff --git a/resources/qml/ReplyPopup.qml b/resources/qml/ReplyPopup.qml
index c07c2c44..37b6f6cc 100644 --- a/resources/qml/ReplyPopup.qml +++ b/resources/qml/ReplyPopup.qml
@@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2021 Nheko Contributors +// +// SPDX-License-Identifier: GPL-3.0-or-later + import "./delegates/" import QtQuick 2.9 import QtQuick.Controls 2.3 diff --git a/resources/qml/RoomSettings.qml b/resources/qml/RoomSettings.qml
index 1808ebf0..2117e513 100644 --- a/resources/qml/RoomSettings.qml +++ b/resources/qml/RoomSettings.qml
@@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2021 Nheko Contributors +// +// SPDX-License-Identifier: GPL-3.0-or-later + import Qt.labs.platform 1.1 as Platform import QtQuick 2.9 import QtQuick.Controls 2.3 diff --git a/resources/qml/ScrollHelper.qml b/resources/qml/ScrollHelper.qml
index ab955552..2dd56f27 100644 --- a/resources/qml/ScrollHelper.qml +++ b/resources/qml/ScrollHelper.qml
@@ -1,21 +1,9 @@ -/* - * Copyright (C) 2016 Michael Bohlender, <michael.bohlender@kdemail.net> - * Copyright (C) 2017 Christian Mollekopf, <mollekopf@kolabsystems.com> - * - * This program 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 2 of the License, or - * (at your option) any later version. - * - * This program 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 this program; if not, write to the Free Software Foundation, Inc., - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - */ +// Copyright (C) 2016 Michael Bohlender, <michael.bohlender@kdemail.net> +// Copyright (C) 2017 Christian Mollekopf, <mollekopf@kolabsystems.com> +// SPDX-FileCopyrightText: 2021 Nheko Contributors +// +// SPDX-License-Identifier: GPL-3.0-or-later + /* * Shamelessly stolen from: * https://cgit.kde.org/kube.git/tree/framework/qml/ScrollHelper.qml diff --git a/resources/qml/StatusIndicator.qml b/resources/qml/StatusIndicator.qml
index 165e730d..3d2d8278 100644 --- a/resources/qml/StatusIndicator.qml +++ b/resources/qml/StatusIndicator.qml
@@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2021 Nheko Contributors +// +// SPDX-License-Identifier: GPL-3.0-or-later + import QtQuick 2.5 import QtQuick.Controls 2.1 import im.nheko 1.0 diff --git a/resources/qml/TimelineRow.qml b/resources/qml/TimelineRow.qml
index b731d29d..4c010ca4 100644 --- a/resources/qml/TimelineRow.qml +++ b/resources/qml/TimelineRow.qml
@@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2021 Nheko Contributors +// +// SPDX-License-Identifier: GPL-3.0-or-later + import "./delegates" import "./emoji" import QtQuick 2.12 diff --git a/resources/qml/TimelineView.qml b/resources/qml/TimelineView.qml
index 4eac48f2..905926c4 100644 --- a/resources/qml/TimelineView.qml +++ b/resources/qml/TimelineView.qml
@@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2021 Nheko Contributors +// +// SPDX-License-Identifier: GPL-3.0-or-later + import "./delegates" import "./device-verification" import "./emoji" diff --git a/resources/qml/ToggleButton.qml b/resources/qml/ToggleButton.qml
index 9f079c62..bd82e4f9 100644 --- a/resources/qml/ToggleButton.qml +++ b/resources/qml/ToggleButton.qml
@@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2021 Nheko Contributors +// +// SPDX-License-Identifier: GPL-3.0-or-later + import QtQuick 2.5 import QtQuick 2.12 import QtQuick.Controls 2.12 diff --git a/resources/qml/TopBar.qml b/resources/qml/TopBar.qml
index 967aa11e..444a4572 100644 --- a/resources/qml/TopBar.qml +++ b/resources/qml/TopBar.qml
@@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2021 Nheko Contributors +// +// SPDX-License-Identifier: GPL-3.0-or-later + import QtQuick 2.9 import QtQuick.Controls 2.3 import QtQuick.Layouts 1.2 diff --git a/resources/qml/TypingIndicator.qml b/resources/qml/TypingIndicator.qml
index 239fd662..ffe88fb6 100644 --- a/resources/qml/TypingIndicator.qml +++ b/resources/qml/TypingIndicator.qml
@@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2021 Nheko Contributors +// +// SPDX-License-Identifier: GPL-3.0-or-later + import QtQuick 2.9 import QtQuick.Controls 2.3 import QtQuick.Layouts 1.2 diff --git a/resources/qml/UserProfile.qml b/resources/qml/UserProfile.qml
index 4797a38e..dbf13796 100644 --- a/resources/qml/UserProfile.qml +++ b/resources/qml/UserProfile.qml
@@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2021 Nheko Contributors +// +// SPDX-License-Identifier: GPL-3.0-or-later + import "./device-verification" import QtQuick 2.9 import QtQuick.Controls 2.3 diff --git a/resources/qml/delegates/FileMessage.qml b/resources/qml/delegates/FileMessage.qml
index 4bc202eb..293b7a78 100644 --- a/resources/qml/delegates/FileMessage.qml +++ b/resources/qml/delegates/FileMessage.qml
@@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2021 Nheko Contributors +// +// SPDX-License-Identifier: GPL-3.0-or-later + import QtQuick 2.12 import QtQuick.Layouts 1.2 import im.nheko 1.0 diff --git a/resources/qml/delegates/ImageMessage.qml b/resources/qml/delegates/ImageMessage.qml
index 3bb9eb05..0521258e 100644 --- a/resources/qml/delegates/ImageMessage.qml +++ b/resources/qml/delegates/ImageMessage.qml
@@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2021 Nheko Contributors +// +// SPDX-License-Identifier: GPL-3.0-or-later + import QtQuick 2.12 import im.nheko 1.0 diff --git a/resources/qml/delegates/MessageDelegate.qml b/resources/qml/delegates/MessageDelegate.qml
index 816ab183..211e03a6 100644 --- a/resources/qml/delegates/MessageDelegate.qml +++ b/resources/qml/delegates/MessageDelegate.qml
@@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2021 Nheko Contributors +// +// SPDX-License-Identifier: GPL-3.0-or-later + import QtQuick 2.6 import im.nheko 1.0 diff --git a/resources/qml/delegates/NoticeMessage.qml b/resources/qml/delegates/NoticeMessage.qml
index c38cb555..ef15ac26 100644 --- a/resources/qml/delegates/NoticeMessage.qml +++ b/resources/qml/delegates/NoticeMessage.qml
@@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2021 Nheko Contributors +// +// SPDX-License-Identifier: GPL-3.0-or-later + TextMessage { font.italic: true color: colors.buttonText diff --git a/resources/qml/delegates/Pill.qml b/resources/qml/delegates/Pill.qml
index 88f6c7fd..a3fa0d9e 100644 --- a/resources/qml/delegates/Pill.qml +++ b/resources/qml/delegates/Pill.qml
@@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2021 Nheko Contributors +// +// SPDX-License-Identifier: GPL-3.0-or-later + import QtQuick 2.5 import QtQuick.Controls 2.1 diff --git a/resources/qml/delegates/Placeholder.qml b/resources/qml/delegates/Placeholder.qml
index db023d8a..addbc7e7 100644 --- a/resources/qml/delegates/Placeholder.qml +++ b/resources/qml/delegates/Placeholder.qml
@@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2021 Nheko Contributors +// +// SPDX-License-Identifier: GPL-3.0-or-later + import ".." MatrixText { diff --git a/resources/qml/delegates/PlayableMediaMessage.qml b/resources/qml/delegates/PlayableMediaMessage.qml
index 70f39e43..f871e492 100644 --- a/resources/qml/delegates/PlayableMediaMessage.qml +++ b/resources/qml/delegates/PlayableMediaMessage.qml
@@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2021 Nheko Contributors +// +// SPDX-License-Identifier: GPL-3.0-or-later + import QtMultimedia 5.6 import QtQuick 2.12 import QtQuick.Controls 2.1 diff --git a/resources/qml/delegates/Reply.qml b/resources/qml/delegates/Reply.qml
index 28c4bf6e..6763b71b 100644 --- a/resources/qml/delegates/Reply.qml +++ b/resources/qml/delegates/Reply.qml
@@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2021 Nheko Contributors +// +// SPDX-License-Identifier: GPL-3.0-or-later + import QtQuick 2.12 import QtQuick.Controls 2.3 import QtQuick.Layouts 1.2 diff --git a/resources/qml/delegates/TextMessage.qml b/resources/qml/delegates/TextMessage.qml
index 82d0d0e4..1624d95c 100644 --- a/resources/qml/delegates/TextMessage.qml +++ b/resources/qml/delegates/TextMessage.qml
@@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2021 Nheko Contributors +// +// SPDX-License-Identifier: GPL-3.0-or-later + import ".." import im.nheko 1.0 diff --git a/resources/qml/device-verification/AwaitingVerificationConfirmation.qml b/resources/qml/device-verification/AwaitingVerificationConfirmation.qml
index 43f6d086..ae62c334 100644 --- a/resources/qml/device-verification/AwaitingVerificationConfirmation.qml +++ b/resources/qml/device-verification/AwaitingVerificationConfirmation.qml
@@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2021 Nheko Contributors +// +// SPDX-License-Identifier: GPL-3.0-or-later + import QtQuick 2.3 import QtQuick.Controls 2.3 import QtQuick.Layouts 1.10 diff --git a/resources/qml/device-verification/DeviceVerification.qml b/resources/qml/device-verification/DeviceVerification.qml
index 93cbc9bd..fee0284a 100644 --- a/resources/qml/device-verification/DeviceVerification.qml +++ b/resources/qml/device-verification/DeviceVerification.qml
@@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2021 Nheko Contributors +// +// SPDX-License-Identifier: GPL-3.0-or-later + import QtQuick 2.10 import QtQuick.Controls 2.3 import QtQuick.Window 2.10 diff --git a/resources/qml/device-verification/DigitVerification.qml b/resources/qml/device-verification/DigitVerification.qml
index cfc246e0..a387756d 100644 --- a/resources/qml/device-verification/DigitVerification.qml +++ b/resources/qml/device-verification/DigitVerification.qml
@@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2021 Nheko Contributors +// +// SPDX-License-Identifier: GPL-3.0-or-later + import QtQuick 2.3 import QtQuick.Controls 2.3 import QtQuick.Layouts 1.10 diff --git a/resources/qml/device-verification/EmojiElement.qml b/resources/qml/device-verification/EmojiElement.qml
index e498017e..f5c87a56 100644 --- a/resources/qml/device-verification/EmojiElement.qml +++ b/resources/qml/device-verification/EmojiElement.qml
@@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2021 Nheko Contributors +// +// SPDX-License-Identifier: GPL-3.0-or-later + import QtQuick 2.3 import QtQuick.Controls 2.3 import QtQuick.Layouts 1.10 diff --git a/resources/qml/device-verification/EmojiVerification.qml b/resources/qml/device-verification/EmojiVerification.qml
index 90cb4932..be9e3938 100644 --- a/resources/qml/device-verification/EmojiVerification.qml +++ b/resources/qml/device-verification/EmojiVerification.qml
@@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2021 Nheko Contributors +// +// SPDX-License-Identifier: GPL-3.0-or-later + import QtQuick 2.3 import QtQuick.Controls 2.3 import QtQuick.Layouts 1.10 diff --git a/resources/qml/device-verification/Failed.qml b/resources/qml/device-verification/Failed.qml
index 5e44fc6e..5c71b02e 100644 --- a/resources/qml/device-verification/Failed.qml +++ b/resources/qml/device-verification/Failed.qml
@@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2021 Nheko Contributors +// +// SPDX-License-Identifier: GPL-3.0-or-later + import QtQuick 2.3 import QtQuick.Controls 2.3 import QtQuick.Layouts 1.10 diff --git a/resources/qml/device-verification/NewVerificationRequest.qml b/resources/qml/device-verification/NewVerificationRequest.qml
index b37c4641..e8589cf7 100644 --- a/resources/qml/device-verification/NewVerificationRequest.qml +++ b/resources/qml/device-verification/NewVerificationRequest.qml
@@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2021 Nheko Contributors +// +// SPDX-License-Identifier: GPL-3.0-or-later + import QtQuick 2.3 import QtQuick.Controls 2.3 import QtQuick.Layouts 1.10 diff --git a/resources/qml/device-verification/Success.qml b/resources/qml/device-verification/Success.qml
index 1336df65..f2657b12 100644 --- a/resources/qml/device-verification/Success.qml +++ b/resources/qml/device-verification/Success.qml
@@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2021 Nheko Contributors +// +// SPDX-License-Identifier: GPL-3.0-or-later + import QtQuick 2.3 import QtQuick.Controls 2.3 import QtQuick.Layouts 1.10 diff --git a/resources/qml/device-verification/Waiting.qml b/resources/qml/device-verification/Waiting.qml
index 68c73d5d..3bfa153d 100644 --- a/resources/qml/device-verification/Waiting.qml +++ b/resources/qml/device-verification/Waiting.qml
@@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2021 Nheko Contributors +// +// SPDX-License-Identifier: GPL-3.0-or-later + import QtQuick 2.3 import QtQuick.Controls 2.3 import QtQuick.Layouts 1.10 diff --git a/resources/qml/emoji/EmojiButton.qml b/resources/qml/emoji/EmojiButton.qml
index dd7530a6..cec51d75 100644 --- a/resources/qml/emoji/EmojiButton.qml +++ b/resources/qml/emoji/EmojiButton.qml
@@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2021 Nheko Contributors +// +// SPDX-License-Identifier: GPL-3.0-or-later + import "../" import QtQuick 2.10 import QtQuick.Controls 2.1 diff --git a/resources/qml/emoji/EmojiPicker.qml b/resources/qml/emoji/EmojiPicker.qml
index 7c75e010..2db9dc07 100644 --- a/resources/qml/emoji/EmojiPicker.qml +++ b/resources/qml/emoji/EmojiPicker.qml
@@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2021 Nheko Contributors +// +// SPDX-License-Identifier: GPL-3.0-or-later + import "../" import QtGraphicalEffects 1.0 import QtQuick 2.9 diff --git a/resources/qml/ui/Ripple.qml b/resources/qml/ui/Ripple.qml
index ccf93c83..b240f421 100644 --- a/resources/qml/ui/Ripple.qml +++ b/resources/qml/ui/Ripple.qml
@@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2021 Nheko Contributors +// +// SPDX-License-Identifier: GPL-3.0-or-later + import QtGraphicalEffects 1.0 import QtQuick 2.10 import QtQuick.Controls 2.3 diff --git a/resources/qml/voip/ActiveCallBar.qml b/resources/qml/voip/ActiveCallBar.qml
index d7f3c6fd..68d3bc4a 100644 --- a/resources/qml/voip/ActiveCallBar.qml +++ b/resources/qml/voip/ActiveCallBar.qml
@@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2021 Nheko Contributors +// +// SPDX-License-Identifier: GPL-3.0-or-later + import "../" import QtQuick 2.9 import QtQuick.Controls 2.3 diff --git a/resources/qml/voip/CallDevices.qml b/resources/qml/voip/CallDevices.qml
index 3c1108fb..11644797 100644 --- a/resources/qml/voip/CallDevices.qml +++ b/resources/qml/voip/CallDevices.qml
@@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2021 Nheko Contributors +// +// SPDX-License-Identifier: GPL-3.0-or-later + import QtQuick 2.9 import QtQuick.Controls 2.3 import QtQuick.Layouts 1.2 diff --git a/resources/qml/voip/CallInvite.qml b/resources/qml/voip/CallInvite.qml
index df3343ed..15d987e7 100644 --- a/resources/qml/voip/CallInvite.qml +++ b/resources/qml/voip/CallInvite.qml
@@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2021 Nheko Contributors +// +// SPDX-License-Identifier: GPL-3.0-or-later + import "../" import QtQuick 2.9 import QtQuick.Controls 2.3 diff --git a/resources/qml/voip/CallInviteBar.qml b/resources/qml/voip/CallInviteBar.qml
index 7fc8cd05..fe3f791f 100644 --- a/resources/qml/voip/CallInviteBar.qml +++ b/resources/qml/voip/CallInviteBar.qml
@@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2021 Nheko Contributors +// +// SPDX-License-Identifier: GPL-3.0-or-later + import "../" import QtQuick 2.9 import QtQuick.Controls 2.3 diff --git a/resources/qml/voip/DeviceError.qml b/resources/qml/voip/DeviceError.qml
index a5000ada..05cfd409 100644 --- a/resources/qml/voip/DeviceError.qml +++ b/resources/qml/voip/DeviceError.qml
@@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2021 Nheko Contributors +// +// SPDX-License-Identifier: GPL-3.0-or-later + import QtQuick 2.9 import QtQuick.Controls 2.3 import QtQuick.Layouts 1.2 diff --git a/resources/qml/voip/PlaceCall.qml b/resources/qml/voip/PlaceCall.qml
index 5dbeb6e1..c9aa8ea1 100644 --- a/resources/qml/voip/PlaceCall.qml +++ b/resources/qml/voip/PlaceCall.qml
@@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2021 Nheko Contributors +// +// SPDX-License-Identifier: GPL-3.0-or-later + import "../" import QtQuick 2.9 import QtQuick.Controls 2.3 diff --git a/resources/qml/voip/ScreenShare.qml b/resources/qml/voip/ScreenShare.qml
index 6402e563..af473c04 100644 --- a/resources/qml/voip/ScreenShare.qml +++ b/resources/qml/voip/ScreenShare.qml
@@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2021 Nheko Contributors +// +// SPDX-License-Identifier: GPL-3.0-or-later + import "../" import QtQuick 2.9 import QtQuick.Controls 2.3 diff --git a/resources/qml/voip/VideoCall.qml b/resources/qml/voip/VideoCall.qml
index 14408b6e..23651033 100644 --- a/resources/qml/voip/VideoCall.qml +++ b/resources/qml/voip/VideoCall.qml
@@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2021 Nheko Contributors +// +// SPDX-License-Identifier: GPL-3.0-or-later + import QtQuick 2.9 import org.freedesktop.gstreamer.GLVideoItem 1.0