mirror of
https://github.com/savoirfairelinux/jami-client-qt.git
synced 2025-12-16 23:14:57 +08:00
- better manage QML interop object lifetimes - allow intellisense to pick up QML registered symbols - fix for PreviewEngine threading Change-Id: I416cdede70b155dc34fc3ee94f428ae2128c8950
111 lines
4.0 KiB
C++
111 lines
4.0 KiB
C++
/*
|
|
* Copyright (C) 2021-2024 Savoir-faire Linux Inc.
|
|
* Author: Mingrui Zhang <mingrui.zhang@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 <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "qmladapterbase.h"
|
|
|
|
#include "systemtray.h"
|
|
#include "lrcinstance.h"
|
|
|
|
#include <QSettings>
|
|
#include <QString>
|
|
#include <QQmlEngine> // QML registration
|
|
#include <QApplication> // QML registration
|
|
|
|
class AppSettingsManager;
|
|
|
|
class AccountAdapter final : public QmlAdapterBase
|
|
{
|
|
Q_OBJECT
|
|
QML_SINGLETON
|
|
|
|
Q_PROPERTY(lrc::api::AccountModel* model READ getModel NOTIFY modelChanged)
|
|
|
|
public:
|
|
lrc::api::AccountModel* getModel();
|
|
|
|
Q_SIGNALS:
|
|
void modelChanged();
|
|
|
|
public:
|
|
static AccountAdapter* create(QQmlEngine*, QJSEngine*)
|
|
{
|
|
return new AccountAdapter(qApp->property("AppSettingsManager").value<AppSettingsManager*>(),
|
|
qApp->property("SystemTray").value<SystemTray*>(),
|
|
qApp->property("LRCInstance").value<LRCInstance*>());
|
|
}
|
|
|
|
explicit AccountAdapter(AppSettingsManager* settingsManager,
|
|
SystemTray* systemTray,
|
|
LRCInstance* instance,
|
|
QObject* parent = nullptr);
|
|
~AccountAdapter() = default;
|
|
|
|
// Change to account corresponding to combox box index.
|
|
Q_INVOKABLE void changeAccount(int row);
|
|
|
|
// Create normal Jami account, SIP account and JAMS accounts.
|
|
Q_INVOKABLE void createJamiAccount(const QVariantMap& settings);
|
|
Q_INVOKABLE void createSIPAccount(const QVariantMap& settings);
|
|
Q_INVOKABLE void createJAMSAccount(const QVariantMap& settings);
|
|
|
|
// Delete current account
|
|
Q_INVOKABLE void deleteCurrentAccount();
|
|
|
|
// Conf property
|
|
Q_INVOKABLE bool exportToFile(const QString& accountId,
|
|
const QString& path,
|
|
const QString& password = {}) const;
|
|
Q_INVOKABLE void setArchivePasswordAsync(const QString& accountID, const QString& password);
|
|
|
|
// Lrc instances functions wrappers
|
|
Q_INVOKABLE bool savePassword(const QString& accountId,
|
|
const QString& oldPassword,
|
|
const QString& newPassword);
|
|
Q_INVOKABLE bool hasVideoCall();
|
|
Q_INVOKABLE void setCurrAccDisplayName(const QString& text);
|
|
Q_INVOKABLE void setCurrentAccountAvatarFile(const QString& source);
|
|
Q_INVOKABLE void setCurrentAccountAvatarBase64(const QString& source = {});
|
|
Q_INVOKABLE void setDefaultModerator(const QString& accountId,
|
|
const QString& peerURI,
|
|
const bool& state);
|
|
Q_INVOKABLE QStringList getDefaultModerators(const QString& accountId);
|
|
|
|
Q_SIGNALS:
|
|
// Trigger other components to reconnect account related signals.
|
|
void accountStatusChanged(QString accountId);
|
|
|
|
// Send report failure to QML to make it show the right UI state .
|
|
void reportFailure();
|
|
void accountCreationFailed();
|
|
void accountAdded(const QString& accountId, int index);
|
|
void accountRemoved(const QString& accountId);
|
|
void accountConfigFinalized();
|
|
|
|
private:
|
|
// Implement what to do when account creation fails.
|
|
void connectFailure();
|
|
|
|
QMetaObject::Connection registeredNameSavedConnection_;
|
|
|
|
AppSettingsManager* settingsManager_;
|
|
SystemTray* systemTray_;
|
|
};
|
|
Q_DECLARE_METATYPE(AccountAdapter*)
|