2021-03-11 13:30:45 -05:00
|
|
|
/*
|
2022-01-06 11:24:13 -05:00
|
|
|
* Copyright (C) 2015-2022 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 <QApplication>
|
|
|
|
#include <QObject>
|
|
|
|
|
|
|
|
#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
|
|
|
|
|
|
|
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
|
|
|
|
|
2021-03-11 13:30:45 -05:00
|
|
|
class UtilsAdapter final : public QmlAdapterBase
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
2021-08-26 14:57:24 -04:00
|
|
|
QML_PROPERTY(QStringList, logList)
|
2021-03-11 13:30:45 -05:00
|
|
|
public:
|
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;
|
|
|
|
|
|
|
|
void safeInit() override {}
|
|
|
|
|
|
|
|
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);
|
|
|
|
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);
|
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 const QStringList getCurrAccList();
|
|
|
|
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 bool validateRegNameForm(const QString& regName);
|
|
|
|
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);
|
|
|
|
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 QVariant getAppValue(const Settings::Key key);
|
|
|
|
Q_INVOKABLE void setAppValue(const Settings::Key key, const QVariant& value);
|
|
|
|
Q_INVOKABLE QString getDirDocument();
|
|
|
|
Q_INVOKABLE QString getDirDownload();
|
|
|
|
Q_INVOKABLE void setRunOnStartUp(bool state);
|
|
|
|
Q_INVOKABLE void setDownloadPath(QString dir);
|
|
|
|
Q_INVOKABLE void monitor(const bool& continuous);
|
2021-12-20 09:50:48 -05:00
|
|
|
Q_INVOKABLE void clearInteractionsCache(const QString& accountId, const QString& convUid);
|
2022-01-28 12:11:04 -05:00
|
|
|
Q_INVOKABLE QVariantMap supportedLang();
|
2022-02-11 16:25:42 -05:00
|
|
|
Q_INVOKABLE QString swarmCreationImage(const QString& imageId = "temp") const;
|
|
|
|
Q_INVOKABLE void setSwarmCreationImageFromString(const QString& image = "",
|
|
|
|
const QString& imageId = "temp");
|
|
|
|
Q_INVOKABLE void setSwarmCreationImageFromFile(const QString& path,
|
|
|
|
const QString& imageId = "temp");
|
|
|
|
Q_INVOKABLE void setSwarmCreationImageFromImage(const QImage& image,
|
2022-03-01 16:45:06 -05:00
|
|
|
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;
|
2021-12-07 10:50:11 -05:00
|
|
|
|
2021-08-26 14:57:24 -04:00
|
|
|
Q_SIGNALS:
|
|
|
|
void debugMessageReceived(const QString& message);
|
2022-02-21 15:26:36 -05:00
|
|
|
void showExperimentalSwarm();
|
2022-07-04 13:15:20 -04:00
|
|
|
void changeFontSize();
|
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;
|
2021-03-11 13:30:45 -05:00
|
|
|
};
|
|
|
|
Q_DECLARE_METATYPE(UtilsAdapter*)
|