2021-03-11 13:30:45 -05:00
|
|
|
/*
|
2024-01-02 15:21:23 -05:00
|
|
|
* Copyright (C) 2015-2024 Savoir-faire Linux Inc.
|
2021-03-11 13:30:45 -05:00
|
|
|
* Author: Edric Ladent Milaret <edric.ladent-milaret@savoirfairelinux.com>
|
|
|
|
* Author: Andreas Traczyk <andreas.traczyk@savoirfairelinux.com>
|
|
|
|
* Author: Isa Nanic <isa.nanic@savoirfairelinux.com>
|
|
|
|
* Author: Mingrui Zhang <mingrui.zhang@savoirfairelinux.com>
|
|
|
|
* Author: Aline Gondim Santos <aline.gondimsantos@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"
|
2021-08-26 14:57:24 -04:00
|
|
|
#include "appsettingsmanager.h"
|
|
|
|
#include "qtutils.h"
|
2021-03-11 13:30:45 -05:00
|
|
|
|
2023-12-01 16:34:51 -05:00
|
|
|
#include <api/member.h>
|
|
|
|
|
|
|
|
#include <QApplication>
|
|
|
|
#include <QObject>
|
2023-11-16 15:27:07 -05:00
|
|
|
#include <QQmlEngine> // QML registration
|
|
|
|
#include <QApplication> // QML registration
|
2023-12-01 16:34:51 -05:00
|
|
|
|
2022-08-25 17:02:14 -04:00
|
|
|
#if __has_include(<gio/gio.h>)
|
|
|
|
#include <gio/gio.h>
|
|
|
|
#endif
|
|
|
|
|
2022-11-16 16:02:59 -03:00
|
|
|
#if defined(WIN32) && __has_include(<winrt/Windows.Foundation.h>)
|
2023-11-16 15:27:07 -05:00
|
|
|
#define _SILENCE_CLANG_COROUTINE_MESSAGE
|
2022-11-16 16:02:59 -03:00
|
|
|
#include <winrt/Windows.Foundation.h>
|
2022-11-16 16:02:59 -03:00
|
|
|
|
2023-02-27 18:08:06 -05:00
|
|
|
#define WATCHSYSTEMTHEME __has_include(<winrt/Windows.UI.ViewManagement.h>)
|
2022-11-16 16:02:59 -03:00
|
|
|
|
|
|
|
#if WATCHSYSTEMTHEME
|
|
|
|
#include <winrt/Windows.UI.ViewManagement.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
using winrt::Windows::UI::ViewManagement::UISettings;
|
2022-11-16 16:02:59 -03:00
|
|
|
#endif
|
|
|
|
|
2021-03-11 13:30:45 -05:00
|
|
|
class QClipboard;
|
2021-03-30 15:15:36 -04:00
|
|
|
class SystemTray;
|
2021-03-11 13:30:45 -05:00
|
|
|
|
2021-08-26 14:57:24 -04:00
|
|
|
#define LOGSLIMIT 10000
|
|
|
|
|
2022-11-16 16:02:59 -03:00
|
|
|
#if defined(WIN32) && __has_include(<winrt/Windows.Foundation.h>)
|
|
|
|
/**
|
|
|
|
* @brief Read if "AppsUseLightTheme" registry exists and its value
|
|
|
|
*
|
|
|
|
* @param getValue false to check if registry exists;
|
|
|
|
*
|
|
|
|
* @param getValue true if want the registry value.
|
|
|
|
* @return if getValue is true, returns if the native theme is Dark (defaults to false).
|
|
|
|
*/
|
|
|
|
bool readAppsUseLightThemeRegistry(bool getValue);
|
|
|
|
#endif
|
|
|
|
|
2021-03-11 13:30:45 -05:00
|
|
|
class UtilsAdapter final : public QmlAdapterBase
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
2023-11-16 15:27:07 -05:00
|
|
|
QML_SINGLETON
|
|
|
|
|
2021-08-26 14:57:24 -04:00
|
|
|
QML_PROPERTY(QStringList, logList)
|
2023-05-10 11:05:43 -04:00
|
|
|
QML_RO_PROPERTY(bool, isRTL)
|
2021-03-11 13:30:45 -05:00
|
|
|
public:
|
2023-11-16 15:27:07 -05:00
|
|
|
static UtilsAdapter* create(QQmlEngine*, QJSEngine*)
|
|
|
|
{
|
|
|
|
return new UtilsAdapter(qApp->property("AppSettingsManager").value<AppSettingsManager*>(),
|
|
|
|
qApp->property("SystemTray").value<SystemTray*>(),
|
|
|
|
qApp->property("LRCInstance").value<LRCInstance*>());
|
|
|
|
}
|
|
|
|
|
2021-08-26 14:57:24 -04:00
|
|
|
explicit UtilsAdapter(AppSettingsManager* settingsManager,
|
|
|
|
SystemTray* systemTray,
|
|
|
|
LRCInstance* instance,
|
|
|
|
QObject* parent = nullptr);
|
2021-03-11 13:30:45 -05:00
|
|
|
~UtilsAdapter() = default;
|
|
|
|
|
2023-02-27 18:08:06 -05:00
|
|
|
Q_INVOKABLE QVariant getAppValue(const QString& key, const QVariant& defaultValue = {});
|
|
|
|
Q_INVOKABLE void setAppValue(const QString& key, const QVariant& value);
|
|
|
|
Q_INVOKABLE QVariant getAppValue(const Settings::Key key);
|
|
|
|
Q_INVOKABLE void setAppValue(const Settings::Key key, const QVariant& value);
|
2023-04-04 11:44:36 -04:00
|
|
|
Q_INVOKABLE QVariant getDefault(const Settings::Key key);
|
|
|
|
Q_INVOKABLE void setToDefault(const Settings::Key key);
|
2023-02-27 18:08:06 -05:00
|
|
|
|
2021-03-11 13:30:45 -05:00
|
|
|
Q_INVOKABLE const QString getProjectCredits();
|
|
|
|
Q_INVOKABLE const QString getVersionStr();
|
2021-04-02 10:24:46 -04:00
|
|
|
Q_INVOKABLE void setClipboardText(QString text);
|
2021-03-11 13:30:45 -05:00
|
|
|
Q_INVOKABLE const QString qStringFromFile(const QString& filename);
|
|
|
|
Q_INVOKABLE const QString getStyleSheet(const QString& name, const QString& source);
|
2023-06-26 17:12:01 -04:00
|
|
|
Q_INVOKABLE const QString getLocalDataPath();
|
2021-03-11 13:30:45 -05:00
|
|
|
Q_INVOKABLE const QString getCachePath();
|
|
|
|
Q_INVOKABLE bool createStartupLink();
|
|
|
|
Q_INVOKABLE QString GetRingtonePath();
|
|
|
|
Q_INVOKABLE bool checkStartupLink();
|
|
|
|
Q_INVOKABLE void setConversationFilter(const QString& filter);
|
|
|
|
Q_INVOKABLE const QString getBestName(const QString& accountId, const QString& uid);
|
2022-02-11 16:25:42 -05:00
|
|
|
Q_INVOKABLE QString getBestNameForUri(const QString& accountId, const QString& uri);
|
2023-03-16 16:13:53 -04:00
|
|
|
Q_INVOKABLE QString getBestIdForUri(const QString& accountId, const QString& uri);
|
|
|
|
Q_INVOKABLE QString getConvIdForUri(const QString& accountId, const QString& uri);
|
2021-03-11 13:30:45 -05:00
|
|
|
Q_INVOKABLE const QString getPeerUri(const QString& accountId, const QString& uid);
|
|
|
|
Q_INVOKABLE QString getBestId(const QString& accountId);
|
|
|
|
Q_INVOKABLE const QString getBestId(const QString& accountId, const QString& uid);
|
|
|
|
Q_INVOKABLE int getAccountListSize();
|
|
|
|
Q_INVOKABLE bool hasCall(const QString& accountId);
|
|
|
|
Q_INVOKABLE const QString getCallConvForAccount(const QString& accountId);
|
|
|
|
Q_INVOKABLE const QString getCallId(const QString& accountId, const QString& convUid);
|
|
|
|
Q_INVOKABLE int getCallStatus(const QString& callId);
|
|
|
|
Q_INVOKABLE const QString getCallStatusStr(int statusInt);
|
|
|
|
Q_INVOKABLE QString getStringUTF8(QString string);
|
|
|
|
Q_INVOKABLE QString getRecordQualityString(int value);
|
|
|
|
Q_INVOKABLE QString getCurrentPath();
|
|
|
|
Q_INVOKABLE QString stringSimplifier(QString input);
|
|
|
|
Q_INVOKABLE QString toNativeSeparators(QString inputDir);
|
|
|
|
Q_INVOKABLE QString toFileInfoName(QString inputFileName);
|
|
|
|
Q_INVOKABLE QString toFileAbsolutepath(QString inputFileName);
|
|
|
|
Q_INVOKABLE QString getAbsPath(QString path);
|
2023-04-04 11:44:36 -04:00
|
|
|
Q_INVOKABLE QString dirName(const QString& path);
|
2021-03-11 13:30:45 -05:00
|
|
|
Q_INVOKABLE QString fileName(const QString& path);
|
|
|
|
Q_INVOKABLE QString getExt(const QString& path);
|
|
|
|
Q_INVOKABLE bool isImage(const QString& fileExt);
|
|
|
|
Q_INVOKABLE QString humanFileSize(qint64 fileSize);
|
|
|
|
Q_INVOKABLE void setSystemTrayIconVisible(bool visible);
|
2021-08-26 14:57:24 -04:00
|
|
|
Q_INVOKABLE QString getDirDocument();
|
2023-01-10 16:47:18 -05:00
|
|
|
Q_INVOKABLE QString getDirScreenshot();
|
2021-08-26 14:57:24 -04:00
|
|
|
Q_INVOKABLE QString getDirDownload();
|
|
|
|
Q_INVOKABLE void setRunOnStartUp(bool state);
|
|
|
|
Q_INVOKABLE void setDownloadPath(QString dir);
|
2023-01-10 16:47:18 -05:00
|
|
|
Q_INVOKABLE void setScreenshotPath(QString dir);
|
2021-08-26 14:57:24 -04:00
|
|
|
Q_INVOKABLE void monitor(const bool& continuous);
|
2022-01-28 12:11:04 -05:00
|
|
|
Q_INVOKABLE QVariantMap supportedLang();
|
2022-07-26 11:29:26 -04:00
|
|
|
Q_INVOKABLE QString tempCreationImage(const QString& imageId = "temp") const;
|
|
|
|
Q_INVOKABLE void setTempCreationImageFromString(const QString& image = "",
|
2022-03-01 16:45:06 -05:00
|
|
|
const QString& imageId = "temp");
|
2022-07-26 11:29:26 -04:00
|
|
|
Q_INVOKABLE void setTempCreationImageFromFile(const QString& path,
|
|
|
|
const QString& imageId = "temp");
|
|
|
|
Q_INVOKABLE void setTempCreationImageFromImage(const QImage& image,
|
|
|
|
const QString& imageId = "temp");
|
2021-08-26 14:57:24 -04:00
|
|
|
|
2021-12-07 10:50:11 -05:00
|
|
|
// For Swarm details page
|
|
|
|
Q_INVOKABLE bool getContactPresence(const QString& accountId, const QString& uri);
|
|
|
|
Q_INVOKABLE QString getContactBestName(const QString& accountId, const QString& uri);
|
2021-12-17 17:00:12 -05:00
|
|
|
Q_INVOKABLE lrc::api::member::Role getParticipantRole(const QString& accountId,
|
|
|
|
const QString& convId,
|
|
|
|
const QString& uri);
|
2022-03-01 16:45:06 -05:00
|
|
|
Q_INVOKABLE bool luma(const QColor& color) const;
|
2022-08-25 17:02:14 -04:00
|
|
|
Q_INVOKABLE bool useApplicationTheme();
|
2022-11-16 16:02:59 -03:00
|
|
|
Q_INVOKABLE bool hasNativeDarkTheme() const;
|
2021-12-07 10:50:11 -05:00
|
|
|
|
2023-02-27 15:38:27 -03:00
|
|
|
Q_INVOKABLE QString getOneline(const QString& input);
|
|
|
|
|
2023-03-22 12:06:51 -04:00
|
|
|
Q_INVOKABLE QVariantMap getVideoPlayer(const QString& resource, const QString& bgColor);
|
|
|
|
|
2023-05-10 11:05:43 -04:00
|
|
|
Q_INVOKABLE bool isRTL();
|
2023-05-29 14:27:29 -04:00
|
|
|
Q_INVOKABLE bool isSystemTrayIconVisible();
|
2023-05-10 11:05:43 -04:00
|
|
|
|
2023-06-26 17:12:01 -04:00
|
|
|
Q_INVOKABLE QString base64Encode(const QString& input);
|
|
|
|
Q_INVOKABLE bool fileExists(const QString& filePath);
|
|
|
|
Q_INVOKABLE QString getStandardTempLocation();
|
2023-08-28 15:31:39 -04:00
|
|
|
Q_INVOKABLE QString getMimeNameForUrl(const QUrl& fileUrl) const;
|
|
|
|
Q_INVOKABLE QUrl urlFromLocalPath(const QString& filePath) const;
|
2023-06-26 17:12:01 -04:00
|
|
|
|
|
|
|
#ifdef ENABLE_TESTS
|
|
|
|
Q_INVOKABLE QString createDummyImage() const;
|
|
|
|
#endif
|
2023-11-08 13:12:21 -05:00
|
|
|
Q_INVOKABLE bool isWayland() const;
|
2021-08-26 14:57:24 -04:00
|
|
|
Q_SIGNALS:
|
|
|
|
void debugMessageReceived(const QString& message);
|
2022-07-04 13:15:20 -04:00
|
|
|
void changeFontSize();
|
2022-08-18 13:04:45 -04:00
|
|
|
void chatviewPositionChanged();
|
2022-08-25 17:02:14 -04:00
|
|
|
void appThemeChanged();
|
2022-06-09 11:23:14 -04:00
|
|
|
void showExperimentalCallSwarm();
|
2022-11-30 09:57:08 -03:00
|
|
|
void changeLanguage();
|
2023-11-29 21:17:54 -05:00
|
|
|
void donationCampaignSettingsChanged();
|
2023-12-21 14:37:32 -05:00
|
|
|
void useFramelessWindowChanged();
|
2021-03-11 13:30:45 -05:00
|
|
|
|
|
|
|
private:
|
|
|
|
QClipboard* clipboard_;
|
2021-03-30 15:15:36 -04:00
|
|
|
SystemTray* systemTray_;
|
2021-08-26 14:57:24 -04:00
|
|
|
AppSettingsManager* settingsManager_;
|
|
|
|
|
|
|
|
QMetaObject::Connection debugMessageReceivedConnection_;
|
2022-02-04 15:46:23 -05:00
|
|
|
QString getDefaultRecordPath() const;
|
2022-08-25 17:02:14 -04:00
|
|
|
|
|
|
|
bool isSystemThemeDark();
|
|
|
|
#if __has_include(<gio/gio.h>)
|
|
|
|
GSettings* settings {nullptr};
|
|
|
|
GSettingsSchema* schema {nullptr};
|
|
|
|
#endif
|
2022-11-16 16:02:59 -03:00
|
|
|
|
|
|
|
#if WATCHSYSTEMTHEME
|
|
|
|
UISettings settings = NULL;
|
|
|
|
#endif
|
2021-03-11 13:30:45 -05:00
|
|
|
};
|
|
|
|
Q_DECLARE_METATYPE(UtilsAdapter*)
|