mirror of
https://git.jami.net/savoirfairelinux/jami-client-qt.git
synced 2025-08-12 02:35:38 +02:00

In preparation for vendoring libjamiclient into 'src/libclient/'. GitLab: #734 Change-Id: Ibd956abc8fe9bd454ac0e9a5a28b77a5a74174e7
227 lines
7.1 KiB
QML
227 lines
7.1 KiB
QML
/*
|
|
* Copyright (C) 2020-2022 Savoir-faire Linux Inc.
|
|
* Author: Aline Gondim Santos <aline.gondimsantos@savoirfairelinux.com>
|
|
* Author: Andreas Traczyk <andreas.traczyk@savoirfairelinux.com>
|
|
* Author: Albert Babí <albert.babi@savoirfairelinux.com>
|
|
* Author: Mingrui Zhang <mingrui.zhang@savoirfairelinux.com>
|
|
* Author: Yang Wang <yang.wang@savoirfairelinux.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 3 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, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
import QtQuick
|
|
import QtQuick.Window
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
import Qt5Compat.GraphicalEffects
|
|
|
|
import net.jami.Models 1.1
|
|
import net.jami.Adapters 1.1
|
|
import net.jami.Enums 1.1
|
|
import net.jami.Helpers 1.1
|
|
import net.jami.Constants 1.1
|
|
|
|
import "mainview"
|
|
import "mainview/components"
|
|
import "wizardview"
|
|
import "commoncomponents"
|
|
|
|
ApplicationWindow {
|
|
id: root
|
|
|
|
enum LoadedSource {
|
|
WizardView = 0,
|
|
MainView,
|
|
AccountMigrationView,
|
|
None
|
|
}
|
|
|
|
property ApplicationWindow appWindow: root
|
|
property LayoutManager layoutManager: LayoutManager {
|
|
appContainer: appContainer
|
|
}
|
|
|
|
property bool windowSettingsLoaded: false
|
|
property bool allowVisibleWindow: true
|
|
|
|
function checkLoadedSource() {
|
|
var sourceString = mainApplicationLoader.source.toString()
|
|
|
|
if (sourceString === JamiQmlUtils.wizardViewLoadPath)
|
|
return MainApplicationWindow.LoadedSource.WizardView
|
|
else if (sourceString === JamiQmlUtils.mainViewLoadPath)
|
|
return MainApplicationWindow.LoadedSource.MainView
|
|
|
|
return MainApplicationWindow.LoadedSource.None
|
|
}
|
|
|
|
function startClient() {
|
|
if (UtilsAdapter.getAccountListSize() !== 0) {
|
|
mainApplicationLoader.setSource(JamiQmlUtils.mainViewLoadPath)
|
|
} else {
|
|
mainApplicationLoader.setSource(JamiQmlUtils.wizardViewLoadPath)
|
|
}
|
|
}
|
|
|
|
function startAccountMigration() {
|
|
mainApplicationLoader.setSource(JamiQmlUtils.accountMigrationViewLoadPath)
|
|
}
|
|
|
|
function close(force = false) {
|
|
// If we're in the onboarding wizard or 'MinimizeOnClose'
|
|
// is set, then we can quit
|
|
if (force || !UtilsAdapter.getAppValue(Settings.MinimizeOnClose) ||
|
|
!UtilsAdapter.getAccountListSize()) {
|
|
// Save the window geometry and state before quitting.
|
|
layoutManager.saveWindowSettings()
|
|
Qt.quit()
|
|
} else {
|
|
layoutManager.closeToTray()
|
|
}
|
|
}
|
|
|
|
title: JamiStrings.appTitle
|
|
|
|
visible: mainApplicationLoader.status === Loader.Ready
|
|
&& windowSettingsLoaded
|
|
&& allowVisibleWindow
|
|
|
|
// To facilitate reparenting of the callview during
|
|
// fullscreen mode, we need QQuickItem based object.
|
|
Item {
|
|
id: appContainer
|
|
|
|
anchors.fill: parent
|
|
}
|
|
|
|
DaemonReconnectPopup {
|
|
id: daemonReconnectPopup
|
|
}
|
|
|
|
Loader {
|
|
id: mainApplicationLoader
|
|
|
|
anchors.fill: parent
|
|
z: -1
|
|
|
|
asynchronous: true
|
|
visible: status == Loader.Ready
|
|
source: ""
|
|
|
|
Connections {
|
|
target: mainApplicationLoader.item
|
|
|
|
function onLoaderSourceChangeRequested(sourceToLoad) {
|
|
if (sourceToLoad === MainApplicationWindow.LoadedSource.WizardView)
|
|
mainApplicationLoader.setSource(JamiQmlUtils.wizardViewLoadPath)
|
|
else
|
|
mainApplicationLoader.setSource(JamiQmlUtils.mainViewLoadPath)
|
|
}
|
|
}
|
|
|
|
// Set `visible = false` when loading a new QML file.
|
|
onSourceChanged: windowSettingsLoaded = false
|
|
|
|
onLoaded: {
|
|
if (checkLoadedSource() === MainApplicationWindow.LoadedSource.WizardView) {
|
|
// Onboarding wizard window, these settings are fixed.
|
|
// - window screen should default to the primary
|
|
// - position should default to being centered based on the
|
|
// following dimensions
|
|
// - the window will showNormal once windowSettingsLoaded is
|
|
// set to true(then forcing visible to true)
|
|
appWindow.width = JamiTheme.wizardViewMinWidth
|
|
appWindow.height = JamiTheme.wizardViewMinHeight
|
|
appWindow.minimumWidth = JamiTheme.wizardViewMinWidth
|
|
appWindow.minimumHeight = JamiTheme.wizardViewMinHeight
|
|
} else {
|
|
// Main window, load any valid app settings, and allow the
|
|
// layoutManager to handle as much as possible.
|
|
layoutManager.restoreWindowSettings()
|
|
}
|
|
if (Qt.platform.os.toString() === "osx") {
|
|
MainApplication.setEventFilter()
|
|
}
|
|
|
|
// This will trigger `visible = true`.
|
|
windowSettingsLoaded = true
|
|
|
|
// Quiet check for updates on start if set to.
|
|
if (Qt.platform.os.toString() !== "osx") {
|
|
if (UtilsAdapter.getAppValue(Settings.AutoUpdate)) {
|
|
UpdateManager.checkForUpdates(true)
|
|
UpdateManager.setAutoUpdateCheck(true)
|
|
}
|
|
}
|
|
|
|
// Handle a start URI if set as start option.
|
|
MainApplication.handleUriAction();
|
|
}
|
|
}
|
|
|
|
Connections {
|
|
target: LRCInstance
|
|
|
|
function onRestoreAppRequested() {
|
|
requestActivate()
|
|
layoutManager.restoreApp()
|
|
}
|
|
|
|
function onNotificationClicked() {
|
|
requestActivate()
|
|
raise()
|
|
layoutManager.restoreApp()
|
|
}
|
|
}
|
|
|
|
Connections {
|
|
target: MainApplication
|
|
|
|
function onCloseRequested() {
|
|
close(true)
|
|
}
|
|
}
|
|
|
|
Connections {
|
|
target: {
|
|
if (Qt.platform.os.toString() !== "windows" && Qt.platform.os.toString() !== "osx")
|
|
return DBusErrorHandler
|
|
return null
|
|
}
|
|
ignoreUnknownSignals: true
|
|
|
|
function onShowDaemonReconnectPopup(visible) {
|
|
if (visible)
|
|
daemonReconnectPopup.open()
|
|
else
|
|
daemonReconnectPopup.close()
|
|
}
|
|
|
|
function onDaemonReconnectFailed() {
|
|
daemonReconnectPopup.connectionFailed = true
|
|
}
|
|
}
|
|
|
|
onClosing: root.close()
|
|
|
|
Component.onCompleted: {
|
|
if (CurrentAccountToMigrate.accountToMigrateListSize <= 0)
|
|
startClient()
|
|
else
|
|
startAccountMigration()
|
|
|
|
if (Qt.platform.os.toString() !== "windows" && Qt.platform.os.toString() !== "osx")
|
|
DBusErrorHandler.setActive(true)
|
|
}
|
|
}
|