2023-02-22 01:48:49 +03:00
|
|
|
// SPDX-FileCopyrightText: Nheko Contributors
|
2021-03-05 02:35:15 +03:00
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
2017-11-02 01:41:13 +03:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2022-01-09 02:28:03 +03:00
|
|
|
#include <QAbstractListModel>
|
2019-08-10 20:20:13 +03:00
|
|
|
#include <QProcessEnvironment>
|
2021-08-08 19:57:38 +03:00
|
|
|
#include <QSettings>
|
2017-11-02 01:41:13 +03:00
|
|
|
#include <QSharedPointer>
|
|
|
|
|
2020-12-29 01:34:42 +03:00
|
|
|
#include <optional>
|
|
|
|
|
2017-11-02 01:41:13 +03:00
|
|
|
class Toggle;
|
2020-05-25 14:03:49 +03:00
|
|
|
class QLabel;
|
|
|
|
class QFormLayout;
|
|
|
|
class QComboBox;
|
2020-10-20 03:38:18 +03:00
|
|
|
class QFontComboBox;
|
2020-05-26 23:27:05 +03:00
|
|
|
class QSpinBox;
|
2020-05-25 14:03:49 +03:00
|
|
|
class QHBoxLayout;
|
|
|
|
class QVBoxLayout;
|
2017-11-02 01:41:13 +03:00
|
|
|
|
2022-10-10 15:38:29 +03:00
|
|
|
class UserSettings final : public QObject
|
2017-11-02 01:41:13 +03:00
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
Q_PROPERTY(QString theme READ theme WRITE setTheme NOTIFY themeChanged)
|
|
|
|
Q_PROPERTY(bool messageHoverHighlight READ messageHoverHighlight WRITE setMessageHoverHighlight
|
|
|
|
NOTIFY messageHoverHighlightChanged)
|
|
|
|
Q_PROPERTY(bool enlargeEmojiOnlyMessages READ enlargeEmojiOnlyMessages WRITE
|
|
|
|
setEnlargeEmojiOnlyMessages NOTIFY enlargeEmojiOnlyMessagesChanged)
|
|
|
|
Q_PROPERTY(bool tray READ tray WRITE setTray NOTIFY trayChanged)
|
|
|
|
Q_PROPERTY(bool startInTray READ startInTray WRITE setStartInTray NOTIFY startInTrayChanged)
|
|
|
|
Q_PROPERTY(bool groupView READ groupView WRITE setGroupView NOTIFY groupViewStateChanged)
|
2023-02-15 00:00:05 +03:00
|
|
|
Q_PROPERTY(bool scrollbarsInRoomlist READ scrollbarsInRoomlist WRITE setScrollbarsInRoomlist
|
|
|
|
NOTIFY scrollbarsInRoomlistChanged)
|
2021-09-18 01:22:33 +03:00
|
|
|
Q_PROPERTY(bool markdown READ markdown WRITE setMarkdown NOTIFY markdownChanged)
|
2022-11-05 01:42:35 +03:00
|
|
|
Q_PROPERTY(
|
|
|
|
bool invertEnterKey READ invertEnterKey WRITE setInvertEnterKey NOTIFY invertEnterKeyChanged)
|
2022-11-05 01:53:36 +03:00
|
|
|
Q_PROPERTY(bool bubbles READ bubbles WRITE setBubbles NOTIFY bubblesChanged)
|
|
|
|
Q_PROPERTY(bool smallAvatars READ smallAvatars WRITE setSmallAvatars NOTIFY smallAvatarsChanged)
|
2021-09-18 01:22:33 +03:00
|
|
|
Q_PROPERTY(bool animateImagesOnHover READ animateImagesOnHover WRITE setAnimateImagesOnHover
|
|
|
|
NOTIFY animateImagesOnHoverChanged)
|
|
|
|
Q_PROPERTY(bool typingNotifications READ typingNotifications WRITE setTypingNotifications NOTIFY
|
|
|
|
typingNotificationsChanged)
|
|
|
|
Q_PROPERTY(bool sortByImportance READ sortByImportance WRITE setSortByImportance NOTIFY
|
2023-04-13 14:45:00 +03:00
|
|
|
roomSortingChangedImportance)
|
|
|
|
Q_PROPERTY(bool sortByAlphabet READ sortByAlphabet WRITE setSortByAlphabet NOTIFY
|
|
|
|
roomSortingChangedAlphabetical)
|
2021-09-18 01:22:33 +03:00
|
|
|
Q_PROPERTY(bool buttonsInTimeline READ buttonsInTimeline WRITE setButtonsInTimeline NOTIFY
|
|
|
|
buttonInTimelineChanged)
|
|
|
|
Q_PROPERTY(bool readReceipts READ readReceipts WRITE setReadReceipts NOTIFY readReceiptsChanged)
|
|
|
|
Q_PROPERTY(bool desktopNotifications READ hasDesktopNotifications WRITE setDesktopNotifications
|
|
|
|
NOTIFY desktopNotificationsChanged)
|
|
|
|
Q_PROPERTY(bool alertOnNotification READ hasAlertOnNotification WRITE setAlertOnNotification
|
|
|
|
NOTIFY alertOnNotificationChanged)
|
|
|
|
Q_PROPERTY(
|
|
|
|
bool avatarCircles READ avatarCircles WRITE setAvatarCircles NOTIFY avatarCirclesChanged)
|
|
|
|
Q_PROPERTY(
|
|
|
|
bool decryptSidebar READ decryptSidebar WRITE setDecryptSidebar NOTIFY decryptSidebarChanged)
|
2022-10-13 18:37:28 +03:00
|
|
|
Q_PROPERTY(bool decryptNotifications READ decryptNotifications WRITE setDecryptNotifications
|
|
|
|
NOTIFY decryptNotificationsChanged)
|
2022-06-30 05:05:47 +03:00
|
|
|
Q_PROPERTY(bool spaceNotifications READ spaceNotifications WRITE setSpaceNotifications NOTIFY
|
|
|
|
spaceNotificationsChanged)
|
2022-12-10 18:17:15 +03:00
|
|
|
Q_PROPERTY(bool fancyEffects READ fancyEffects WRITE setFancyEffects NOTIFY fancyEffectsChanged)
|
2023-02-06 15:56:23 +03:00
|
|
|
Q_PROPERTY(
|
|
|
|
bool reducedMotion READ reducedMotion WRITE setReducedMotion NOTIFY reducedMotionChanged)
|
2021-09-18 01:22:33 +03:00
|
|
|
Q_PROPERTY(
|
|
|
|
bool privacyScreen READ privacyScreen WRITE setPrivacyScreen NOTIFY privacyScreenChanged)
|
|
|
|
Q_PROPERTY(int privacyScreenTimeout READ privacyScreenTimeout WRITE setPrivacyScreenTimeout
|
|
|
|
NOTIFY privacyScreenTimeoutChanged)
|
|
|
|
Q_PROPERTY(int timelineMaxWidth READ timelineMaxWidth WRITE setTimelineMaxWidth NOTIFY
|
|
|
|
timelineMaxWidthChanged)
|
|
|
|
Q_PROPERTY(
|
|
|
|
int roomListWidth READ roomListWidth WRITE setRoomListWidth NOTIFY roomListWidthChanged)
|
|
|
|
Q_PROPERTY(int communityListWidth READ communityListWidth WRITE setCommunityListWidth NOTIFY
|
|
|
|
communityListWidthChanged)
|
|
|
|
Q_PROPERTY(bool mobileMode READ mobileMode WRITE setMobileMode NOTIFY mobileModeChanged)
|
|
|
|
Q_PROPERTY(double fontSize READ fontSize WRITE setFontSize NOTIFY fontSizeChanged)
|
|
|
|
Q_PROPERTY(QString font READ font WRITE setFontFamily NOTIFY fontChanged)
|
|
|
|
Q_PROPERTY(QString emojiFont READ emojiFont WRITE setEmojiFontFamily NOTIFY emojiFontChanged)
|
|
|
|
Q_PROPERTY(Presence presence READ presence WRITE setPresence NOTIFY presenceChanged)
|
|
|
|
Q_PROPERTY(QString ringtone READ ringtone WRITE setRingtone NOTIFY ringtoneChanged)
|
|
|
|
Q_PROPERTY(QString microphone READ microphone WRITE setMicrophone NOTIFY microphoneChanged)
|
|
|
|
Q_PROPERTY(QString camera READ camera WRITE setCamera NOTIFY cameraChanged)
|
|
|
|
Q_PROPERTY(QString cameraResolution READ cameraResolution WRITE setCameraResolution NOTIFY
|
|
|
|
cameraResolutionChanged)
|
|
|
|
Q_PROPERTY(QString cameraFrameRate READ cameraFrameRate WRITE setCameraFrameRate NOTIFY
|
|
|
|
cameraFrameRateChanged)
|
|
|
|
Q_PROPERTY(int screenShareFrameRate READ screenShareFrameRate WRITE setScreenShareFrameRate
|
|
|
|
NOTIFY screenShareFrameRateChanged)
|
|
|
|
Q_PROPERTY(
|
|
|
|
bool screenSharePiP READ screenSharePiP WRITE setScreenSharePiP NOTIFY screenSharePiPChanged)
|
|
|
|
Q_PROPERTY(bool screenShareRemoteVideo READ screenShareRemoteVideo WRITE
|
|
|
|
setScreenShareRemoteVideo NOTIFY screenShareRemoteVideoChanged)
|
|
|
|
Q_PROPERTY(bool screenShareHideCursor READ screenShareHideCursor WRITE setScreenShareHideCursor
|
|
|
|
NOTIFY screenShareHideCursorChanged)
|
|
|
|
Q_PROPERTY(
|
|
|
|
bool useStunServer READ useStunServer WRITE setUseStunServer NOTIFY useStunServerChanged)
|
|
|
|
Q_PROPERTY(bool onlyShareKeysWithVerifiedUsers READ onlyShareKeysWithVerifiedUsers WRITE
|
|
|
|
setOnlyShareKeysWithVerifiedUsers NOTIFY onlyShareKeysWithVerifiedUsersChanged)
|
|
|
|
Q_PROPERTY(bool shareKeysWithTrustedUsers READ shareKeysWithTrustedUsers WRITE
|
|
|
|
setShareKeysWithTrustedUsers NOTIFY shareKeysWithTrustedUsersChanged)
|
|
|
|
Q_PROPERTY(bool useOnlineKeyBackup READ useOnlineKeyBackup WRITE setUseOnlineKeyBackup NOTIFY
|
|
|
|
useOnlineKeyBackupChanged)
|
|
|
|
Q_PROPERTY(QString profile READ profile WRITE setProfile NOTIFY profileChanged)
|
|
|
|
Q_PROPERTY(QString userId READ userId WRITE setUserId NOTIFY userIdChanged)
|
|
|
|
Q_PROPERTY(QString accessToken READ accessToken WRITE setAccessToken NOTIFY accessTokenChanged)
|
|
|
|
Q_PROPERTY(QString deviceId READ deviceId WRITE setDeviceId NOTIFY deviceIdChanged)
|
|
|
|
Q_PROPERTY(QString homeserver READ homeserver WRITE setHomeserver NOTIFY homeserverChanged)
|
|
|
|
Q_PROPERTY(bool disableCertificateValidation READ disableCertificateValidation WRITE
|
|
|
|
setDisableCertificateValidation NOTIFY disableCertificateValidationChanged)
|
|
|
|
Q_PROPERTY(bool useIdenticon READ useIdenticon WRITE setUseIdenticon NOTIFY useIdenticonChanged)
|
2022-03-19 08:31:43 +03:00
|
|
|
Q_PROPERTY(bool openImageExternal READ openImageExternal WRITE setOpenImageExternal NOTIFY
|
|
|
|
openImageExternalChanged)
|
|
|
|
Q_PROPERTY(bool openVideoExternal READ openVideoExternal WRITE setOpenVideoExternal NOTIFY
|
|
|
|
openVideoExternalChanged)
|
2021-09-18 01:22:33 +03:00
|
|
|
|
2021-12-11 08:10:41 +03:00
|
|
|
Q_PROPERTY(QStringList hiddenPins READ hiddenPins WRITE setHiddenPins NOTIFY hiddenPinsChanged)
|
2021-12-13 02:43:05 +03:00
|
|
|
Q_PROPERTY(QStringList recentReactions READ recentReactions WRITE setRecentReactions NOTIFY
|
|
|
|
recentReactionsChanged)
|
2022-02-04 20:47:17 +03:00
|
|
|
Q_PROPERTY(QStringList hiddenWidgets READ hiddenWidgets WRITE setHiddenWidgets NOTIFY
|
|
|
|
hiddenWidgetsChanged)
|
2022-04-14 18:02:55 +03:00
|
|
|
Q_PROPERTY(
|
|
|
|
bool exposeDBusApi READ exposeDBusApi WRITE setExposeDBusApi NOTIFY exposeDBusApiChanged)
|
2023-03-14 05:02:54 +03:00
|
|
|
Q_PROPERTY(bool updateSpaceVias READ updateSpaceVias WRITE setUpdateSpaceVias NOTIFY
|
|
|
|
updateSpaceViasChanged)
|
2021-12-11 08:10:41 +03:00
|
|
|
|
2021-09-18 01:22:33 +03:00
|
|
|
UserSettings();
|
2017-11-02 01:41:13 +03:00
|
|
|
|
2020-12-28 00:56:43 +03:00
|
|
|
public:
|
2021-09-18 01:22:33 +03:00
|
|
|
static QSharedPointer<UserSettings> instance();
|
|
|
|
static void initialize(std::optional<QString> profile);
|
|
|
|
|
|
|
|
QSettings *qsettings() { return &settings; }
|
|
|
|
|
|
|
|
enum class Presence
|
|
|
|
{
|
|
|
|
AutomaticPresence,
|
|
|
|
Online,
|
|
|
|
Unavailable,
|
|
|
|
Offline,
|
|
|
|
};
|
|
|
|
Q_ENUM(Presence)
|
|
|
|
|
|
|
|
void save();
|
|
|
|
void load(std::optional<QString> profile);
|
|
|
|
void applyTheme();
|
|
|
|
void setTheme(QString theme);
|
|
|
|
void setMessageHoverHighlight(bool state);
|
|
|
|
void setEnlargeEmojiOnlyMessages(bool state);
|
|
|
|
void setTray(bool state);
|
|
|
|
void setStartInTray(bool state);
|
|
|
|
void setMobileMode(bool mode);
|
|
|
|
void setFontSize(double size);
|
|
|
|
void setFontFamily(QString family);
|
|
|
|
void setEmojiFontFamily(QString family);
|
|
|
|
void setGroupView(bool state);
|
2023-02-15 00:00:05 +03:00
|
|
|
void setScrollbarsInRoomlist(bool state);
|
2021-09-18 01:22:33 +03:00
|
|
|
void setMarkdown(bool state);
|
2022-11-05 01:53:36 +03:00
|
|
|
void setInvertEnterKey(bool state);
|
2022-02-05 01:12:30 +03:00
|
|
|
void setBubbles(bool state);
|
2022-02-13 15:12:51 +03:00
|
|
|
void setSmallAvatars(bool state);
|
2021-09-18 01:22:33 +03:00
|
|
|
void setAnimateImagesOnHover(bool state);
|
|
|
|
void setReadReceipts(bool state);
|
|
|
|
void setTypingNotifications(bool state);
|
|
|
|
void setSortByImportance(bool state);
|
2023-04-13 14:45:00 +03:00
|
|
|
void setSortByAlphabet(bool state);
|
2021-09-18 01:22:33 +03:00
|
|
|
void setButtonsInTimeline(bool state);
|
|
|
|
void setTimelineMaxWidth(int state);
|
|
|
|
void setCommunityListWidth(int state);
|
|
|
|
void setRoomListWidth(int state);
|
|
|
|
void setDesktopNotifications(bool state);
|
|
|
|
void setAlertOnNotification(bool state);
|
|
|
|
void setAvatarCircles(bool state);
|
|
|
|
void setDecryptSidebar(bool state);
|
2022-10-13 18:37:28 +03:00
|
|
|
void setDecryptNotifications(bool state);
|
2022-06-06 19:07:25 +03:00
|
|
|
void setSpaceNotifications(bool state);
|
2022-12-10 18:17:15 +03:00
|
|
|
void setFancyEffects(bool state);
|
2023-02-06 15:56:23 +03:00
|
|
|
void setReducedMotion(bool state);
|
2021-09-18 01:22:33 +03:00
|
|
|
void setPrivacyScreen(bool state);
|
|
|
|
void setPrivacyScreenTimeout(int state);
|
|
|
|
void setPresence(Presence state);
|
|
|
|
void setRingtone(QString ringtone);
|
|
|
|
void setMicrophone(QString microphone);
|
|
|
|
void setCamera(QString camera);
|
|
|
|
void setCameraResolution(QString resolution);
|
|
|
|
void setCameraFrameRate(QString frameRate);
|
|
|
|
void setScreenShareFrameRate(int frameRate);
|
|
|
|
void setScreenSharePiP(bool state);
|
|
|
|
void setScreenShareRemoteVideo(bool state);
|
|
|
|
void setScreenShareHideCursor(bool state);
|
|
|
|
void setUseStunServer(bool state);
|
|
|
|
void setOnlyShareKeysWithVerifiedUsers(bool state);
|
|
|
|
void setShareKeysWithTrustedUsers(bool state);
|
|
|
|
void setUseOnlineKeyBackup(bool state);
|
|
|
|
void setProfile(QString profile);
|
|
|
|
void setUserId(QString userId);
|
|
|
|
void setAccessToken(QString accessToken);
|
|
|
|
void setDeviceId(QString deviceId);
|
2023-05-30 02:28:25 +03:00
|
|
|
void setCurrentTagId(QString currentTagId);
|
2021-09-18 01:22:33 +03:00
|
|
|
void setHomeserver(QString homeserver);
|
|
|
|
void setDisableCertificateValidation(bool disabled);
|
2022-04-29 00:00:12 +03:00
|
|
|
void setHiddenTags(const QStringList &hiddenTags);
|
|
|
|
void setMutedTags(const QStringList &mutedTags);
|
|
|
|
void setHiddenPins(const QStringList &hiddenTags);
|
|
|
|
void setHiddenWidgets(const QStringList &hiddenTags);
|
2021-12-13 02:43:05 +03:00
|
|
|
void setRecentReactions(QStringList recent);
|
2021-09-18 01:22:33 +03:00
|
|
|
void setUseIdenticon(bool state);
|
2022-03-19 07:54:02 +03:00
|
|
|
void setOpenImageExternal(bool state);
|
2022-03-19 08:31:43 +03:00
|
|
|
void setOpenVideoExternal(bool state);
|
2021-12-01 05:46:55 +03:00
|
|
|
void setCollapsedSpaces(QList<QStringList> spaces);
|
2022-04-14 18:02:55 +03:00
|
|
|
void setExposeDBusApi(bool state);
|
2023-03-14 05:02:54 +03:00
|
|
|
void setUpdateSpaceVias(bool state);
|
2021-09-18 01:22:33 +03:00
|
|
|
|
|
|
|
QString theme() const { return !theme_.isEmpty() ? theme_ : defaultTheme_; }
|
|
|
|
bool messageHoverHighlight() const { return messageHoverHighlight_; }
|
|
|
|
bool enlargeEmojiOnlyMessages() const { return enlargeEmojiOnlyMessages_; }
|
|
|
|
bool tray() const { return tray_; }
|
|
|
|
bool startInTray() const { return startInTray_; }
|
|
|
|
bool groupView() const { return groupView_; }
|
2023-02-15 00:00:05 +03:00
|
|
|
bool scrollbarsInRoomlist() const { return scrollbarsInRoomlist_; }
|
2021-09-18 01:22:33 +03:00
|
|
|
bool avatarCircles() const { return avatarCircles_; }
|
|
|
|
bool decryptSidebar() const { return decryptSidebar_; }
|
2022-10-13 18:37:28 +03:00
|
|
|
bool decryptNotifications() const { return decryptNotifications_; }
|
2022-06-06 19:07:25 +03:00
|
|
|
bool spaceNotifications() const { return spaceNotifications_; }
|
2022-12-10 18:17:15 +03:00
|
|
|
bool fancyEffects() const { return fancyEffects_; }
|
2023-02-06 15:56:23 +03:00
|
|
|
bool reducedMotion() const { return reducedMotion_; }
|
2021-09-18 01:22:33 +03:00
|
|
|
bool privacyScreen() const { return privacyScreen_; }
|
|
|
|
int privacyScreenTimeout() const { return privacyScreenTimeout_; }
|
|
|
|
bool markdown() const { return markdown_; }
|
2022-11-05 01:53:36 +03:00
|
|
|
bool invertEnterKey() const { return invertEnterKey_; }
|
2022-02-05 01:12:30 +03:00
|
|
|
bool bubbles() const { return bubbles_; }
|
2022-02-13 15:12:51 +03:00
|
|
|
bool smallAvatars() const { return smallAvatars_; }
|
2021-09-18 01:22:33 +03:00
|
|
|
bool animateImagesOnHover() const { return animateImagesOnHover_; }
|
|
|
|
bool typingNotifications() const { return typingNotifications_; }
|
|
|
|
bool sortByImportance() const { return sortByImportance_; }
|
2023-04-13 14:45:00 +03:00
|
|
|
bool sortByAlphabet() const { return sortByAlphabet_; }
|
2021-09-18 01:22:33 +03:00
|
|
|
bool buttonsInTimeline() const { return buttonsInTimeline_; }
|
|
|
|
bool mobileMode() const { return mobileMode_; }
|
|
|
|
bool readReceipts() const { return readReceipts_; }
|
|
|
|
bool hasDesktopNotifications() const { return hasDesktopNotifications_; }
|
|
|
|
bool hasAlertOnNotification() const { return hasAlertOnNotification_; }
|
|
|
|
bool hasNotifications() const { return hasDesktopNotifications() || hasAlertOnNotification(); }
|
|
|
|
int timelineMaxWidth() const { return timelineMaxWidth_; }
|
|
|
|
int communityListWidth() const { return communityListWidth_; }
|
|
|
|
int roomListWidth() const { return roomListWidth_; }
|
|
|
|
double fontSize() const { return baseFontSize_; }
|
|
|
|
QString font() const { return font_; }
|
|
|
|
QString emojiFont() const
|
|
|
|
{
|
2021-12-29 06:28:08 +03:00
|
|
|
if (emojiFont_ == QLatin1String("Default")) {
|
2021-09-18 01:22:33 +03:00
|
|
|
return tr("Default");
|
2020-06-10 12:27:21 +03:00
|
|
|
}
|
2021-09-18 01:22:33 +03:00
|
|
|
|
|
|
|
return emojiFont_;
|
|
|
|
}
|
|
|
|
Presence presence() const { return presence_; }
|
|
|
|
QString ringtone() const { return ringtone_; }
|
|
|
|
QString microphone() const { return microphone_; }
|
|
|
|
QString camera() const { return camera_; }
|
|
|
|
QString cameraResolution() const { return cameraResolution_; }
|
|
|
|
QString cameraFrameRate() const { return cameraFrameRate_; }
|
|
|
|
int screenShareFrameRate() const { return screenShareFrameRate_; }
|
|
|
|
bool screenSharePiP() const { return screenSharePiP_; }
|
|
|
|
bool screenShareRemoteVideo() const { return screenShareRemoteVideo_; }
|
|
|
|
bool screenShareHideCursor() const { return screenShareHideCursor_; }
|
|
|
|
bool useStunServer() const { return useStunServer_; }
|
|
|
|
bool shareKeysWithTrustedUsers() const { return shareKeysWithTrustedUsers_; }
|
|
|
|
bool onlyShareKeysWithVerifiedUsers() const { return onlyShareKeysWithVerifiedUsers_; }
|
|
|
|
bool useOnlineKeyBackup() const { return useOnlineKeyBackup_; }
|
|
|
|
QString profile() const { return profile_; }
|
|
|
|
QString userId() const { return userId_; }
|
|
|
|
QString accessToken() const { return accessToken_; }
|
|
|
|
QString deviceId() const { return deviceId_; }
|
2023-05-30 02:28:25 +03:00
|
|
|
QString currentTagId() const { return currentTagId_; }
|
2021-09-18 01:22:33 +03:00
|
|
|
QString homeserver() const { return homeserver_; }
|
|
|
|
bool disableCertificateValidation() const { return disableCertificateValidation_; }
|
|
|
|
QStringList hiddenTags() const { return hiddenTags_; }
|
2022-04-29 00:00:12 +03:00
|
|
|
QStringList mutedTags() const { return mutedTags_; }
|
2021-12-11 08:10:41 +03:00
|
|
|
QStringList hiddenPins() const { return hiddenPins_; }
|
2022-02-04 20:47:17 +03:00
|
|
|
QStringList hiddenWidgets() const { return hiddenWidgets_; }
|
2021-12-13 02:43:05 +03:00
|
|
|
QStringList recentReactions() const { return recentReactions_; }
|
2022-06-18 02:35:30 +03:00
|
|
|
bool useIdenticon() const;
|
2022-03-19 07:54:02 +03:00
|
|
|
bool openImageExternal() const { return openImageExternal_; }
|
2022-03-19 08:31:43 +03:00
|
|
|
bool openVideoExternal() const { return openVideoExternal_; }
|
2021-12-01 05:46:55 +03:00
|
|
|
QList<QStringList> collapsedSpaces() const { return collapsedSpaces_; }
|
2022-04-14 18:02:55 +03:00
|
|
|
bool exposeDBusApi() const { return exposeDBusApi_; }
|
2023-03-14 05:02:54 +03:00
|
|
|
bool updateSpaceVias() const { return updateSpaceVias_; }
|
2019-07-27 00:31:59 +03:00
|
|
|
|
2018-01-09 22:57:41 +03:00
|
|
|
signals:
|
2021-09-18 01:22:33 +03:00
|
|
|
void groupViewStateChanged(bool state);
|
2023-02-15 00:00:05 +03:00
|
|
|
void scrollbarsInRoomlistChanged(bool state);
|
2023-04-13 14:45:00 +03:00
|
|
|
void roomSortingChangedImportance(bool state);
|
|
|
|
void roomSortingChangedAlphabetical(bool state);
|
2021-09-18 01:22:33 +03:00
|
|
|
void themeChanged(QString state);
|
|
|
|
void messageHoverHighlightChanged(bool state);
|
|
|
|
void enlargeEmojiOnlyMessagesChanged(bool state);
|
|
|
|
void trayChanged(bool state);
|
|
|
|
void startInTrayChanged(bool state);
|
|
|
|
void markdownChanged(bool state);
|
2022-11-05 01:53:36 +03:00
|
|
|
void invertEnterKeyChanged(bool state);
|
2022-02-05 01:12:30 +03:00
|
|
|
void bubblesChanged(bool state);
|
2022-02-13 15:12:51 +03:00
|
|
|
void smallAvatarsChanged(bool state);
|
2021-09-18 01:22:33 +03:00
|
|
|
void animateImagesOnHoverChanged(bool state);
|
|
|
|
void typingNotificationsChanged(bool state);
|
|
|
|
void buttonInTimelineChanged(bool state);
|
|
|
|
void readReceiptsChanged(bool state);
|
|
|
|
void desktopNotificationsChanged(bool state);
|
|
|
|
void alertOnNotificationChanged(bool state);
|
|
|
|
void avatarCirclesChanged(bool state);
|
|
|
|
void decryptSidebarChanged(bool state);
|
2022-10-13 18:37:28 +03:00
|
|
|
void decryptNotificationsChanged(bool state);
|
2022-06-06 19:07:25 +03:00
|
|
|
void spaceNotificationsChanged(bool state);
|
2022-12-10 18:17:15 +03:00
|
|
|
void fancyEffectsChanged(bool state);
|
2023-02-06 15:56:23 +03:00
|
|
|
void reducedMotionChanged(bool state);
|
2021-09-18 01:22:33 +03:00
|
|
|
void privacyScreenChanged(bool state);
|
|
|
|
void privacyScreenTimeoutChanged(int state);
|
|
|
|
void timelineMaxWidthChanged(int state);
|
|
|
|
void roomListWidthChanged(int state);
|
|
|
|
void communityListWidthChanged(int state);
|
|
|
|
void mobileModeChanged(bool mode);
|
|
|
|
void fontSizeChanged(double state);
|
|
|
|
void fontChanged(QString state);
|
|
|
|
void emojiFontChanged(QString state);
|
|
|
|
void presenceChanged(Presence state);
|
|
|
|
void ringtoneChanged(QString ringtone);
|
|
|
|
void microphoneChanged(QString microphone);
|
|
|
|
void cameraChanged(QString camera);
|
|
|
|
void cameraResolutionChanged(QString resolution);
|
|
|
|
void cameraFrameRateChanged(QString frameRate);
|
|
|
|
void screenShareFrameRateChanged(int frameRate);
|
|
|
|
void screenSharePiPChanged(bool state);
|
|
|
|
void screenShareRemoteVideoChanged(bool state);
|
|
|
|
void screenShareHideCursorChanged(bool state);
|
|
|
|
void useStunServerChanged(bool state);
|
|
|
|
void onlyShareKeysWithVerifiedUsersChanged(bool state);
|
|
|
|
void shareKeysWithTrustedUsersChanged(bool state);
|
|
|
|
void useOnlineKeyBackupChanged(bool state);
|
|
|
|
void profileChanged(QString profile);
|
|
|
|
void userIdChanged(QString userId);
|
|
|
|
void accessTokenChanged(QString accessToken);
|
|
|
|
void deviceIdChanged(QString deviceId);
|
|
|
|
void homeserverChanged(QString homeserver);
|
|
|
|
void disableCertificateValidationChanged(bool disabled);
|
|
|
|
void useIdenticonChanged(bool state);
|
2022-03-19 07:54:02 +03:00
|
|
|
void openImageExternalChanged(bool state);
|
2022-03-19 08:31:43 +03:00
|
|
|
void openVideoExternalChanged(bool state);
|
2021-12-11 08:10:41 +03:00
|
|
|
void hiddenPinsChanged();
|
2022-02-04 20:47:17 +03:00
|
|
|
void hiddenWidgetsChanged();
|
2021-12-13 02:43:05 +03:00
|
|
|
void recentReactionsChanged();
|
2022-04-14 18:02:55 +03:00
|
|
|
void exposeDBusApiChanged(bool state);
|
2023-03-14 05:02:54 +03:00
|
|
|
void updateSpaceViasChanged(bool state);
|
2017-11-02 01:41:13 +03:00
|
|
|
|
|
|
|
private:
|
2021-09-18 01:22:33 +03:00
|
|
|
// Default to system theme if QT_QPA_PLATFORMTHEME var is set.
|
2021-12-29 08:01:38 +03:00
|
|
|
QString defaultTheme_ = QProcessEnvironment::systemEnvironment()
|
|
|
|
.value(QStringLiteral("QT_QPA_PLATFORMTHEME"), QLatin1String(""))
|
|
|
|
.isEmpty()
|
|
|
|
? "light"
|
|
|
|
: "system";
|
2021-09-18 01:22:33 +03:00
|
|
|
QString theme_;
|
|
|
|
bool messageHoverHighlight_;
|
|
|
|
bool enlargeEmojiOnlyMessages_;
|
|
|
|
bool tray_;
|
|
|
|
bool startInTray_;
|
|
|
|
bool groupView_;
|
2023-02-15 00:00:05 +03:00
|
|
|
bool scrollbarsInRoomlist_;
|
2021-09-18 01:22:33 +03:00
|
|
|
bool markdown_;
|
2022-11-05 01:53:36 +03:00
|
|
|
bool invertEnterKey_;
|
2022-02-05 01:12:30 +03:00
|
|
|
bool bubbles_;
|
2022-02-13 15:12:51 +03:00
|
|
|
bool smallAvatars_;
|
2021-09-18 01:22:33 +03:00
|
|
|
bool animateImagesOnHover_;
|
|
|
|
bool typingNotifications_;
|
|
|
|
bool sortByImportance_;
|
2023-04-13 14:45:00 +03:00
|
|
|
bool sortByAlphabet_;
|
2021-09-18 01:22:33 +03:00
|
|
|
bool buttonsInTimeline_;
|
|
|
|
bool readReceipts_;
|
|
|
|
bool hasDesktopNotifications_;
|
|
|
|
bool hasAlertOnNotification_;
|
|
|
|
bool avatarCircles_;
|
|
|
|
bool decryptSidebar_;
|
2022-10-13 18:37:28 +03:00
|
|
|
bool decryptNotifications_;
|
2022-06-06 19:07:25 +03:00
|
|
|
bool spaceNotifications_;
|
2022-12-10 18:17:15 +03:00
|
|
|
bool fancyEffects_;
|
2023-02-06 15:56:23 +03:00
|
|
|
bool reducedMotion_;
|
2021-09-18 01:22:33 +03:00
|
|
|
bool privacyScreen_;
|
|
|
|
int privacyScreenTimeout_;
|
|
|
|
bool shareKeysWithTrustedUsers_;
|
|
|
|
bool onlyShareKeysWithVerifiedUsers_;
|
|
|
|
bool useOnlineKeyBackup_;
|
|
|
|
bool mobileMode_;
|
|
|
|
int timelineMaxWidth_;
|
|
|
|
int roomListWidth_;
|
|
|
|
int communityListWidth_;
|
|
|
|
double baseFontSize_;
|
|
|
|
QString font_;
|
|
|
|
QString emojiFont_;
|
|
|
|
Presence presence_;
|
|
|
|
QString ringtone_;
|
|
|
|
QString microphone_;
|
|
|
|
QString camera_;
|
|
|
|
QString cameraResolution_;
|
|
|
|
QString cameraFrameRate_;
|
|
|
|
int screenShareFrameRate_;
|
|
|
|
bool screenSharePiP_;
|
|
|
|
bool screenShareRemoteVideo_;
|
|
|
|
bool screenShareHideCursor_;
|
|
|
|
bool useStunServer_;
|
|
|
|
bool disableCertificateValidation_ = false;
|
|
|
|
QString profile_;
|
|
|
|
QString userId_;
|
|
|
|
QString accessToken_;
|
|
|
|
QString deviceId_;
|
2023-05-30 02:28:25 +03:00
|
|
|
QString currentTagId_;
|
2021-09-18 01:22:33 +03:00
|
|
|
QString homeserver_;
|
|
|
|
QStringList hiddenTags_;
|
2022-04-29 00:00:12 +03:00
|
|
|
QStringList mutedTags_;
|
2021-12-11 08:10:41 +03:00
|
|
|
QStringList hiddenPins_;
|
2022-02-04 20:47:17 +03:00
|
|
|
QStringList hiddenWidgets_;
|
2021-12-13 02:43:05 +03:00
|
|
|
QStringList recentReactions_;
|
2021-12-01 05:46:55 +03:00
|
|
|
QList<QStringList> collapsedSpaces_;
|
2021-09-18 01:22:33 +03:00
|
|
|
bool useIdenticon_;
|
2022-03-19 07:54:02 +03:00
|
|
|
bool openImageExternal_;
|
2022-03-19 08:31:43 +03:00
|
|
|
bool openVideoExternal_;
|
2022-04-14 18:02:55 +03:00
|
|
|
bool exposeDBusApi_;
|
2023-03-14 05:02:54 +03:00
|
|
|
bool updateSpaceVias_;
|
2021-09-18 01:22:33 +03:00
|
|
|
|
|
|
|
QSettings settings;
|
|
|
|
|
|
|
|
static QSharedPointer<UserSettings> instance_;
|
2017-11-02 01:41:13 +03:00
|
|
|
};
|
|
|
|
|
2022-10-10 15:38:29 +03:00
|
|
|
class UserSettingsModel final : public QAbstractListModel
|
2017-11-02 01:41:13 +03:00
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
Q_OBJECT
|
2017-11-02 01:41:13 +03:00
|
|
|
|
2022-01-09 02:28:03 +03:00
|
|
|
enum Indices
|
|
|
|
{
|
|
|
|
GeneralSection,
|
|
|
|
Theme,
|
|
|
|
MobileMode,
|
|
|
|
#ifndef Q_OS_MAC
|
|
|
|
ScaleFactor,
|
|
|
|
#endif
|
|
|
|
Font,
|
|
|
|
FontSize,
|
|
|
|
EmojiFont,
|
|
|
|
AvatarCircles,
|
|
|
|
UseIdenticon,
|
|
|
|
PrivacyScreen,
|
|
|
|
PrivacyScreenTimeout,
|
2023-02-15 00:00:05 +03:00
|
|
|
ScrollbarsInRoomlist,
|
2022-04-14 18:02:55 +03:00
|
|
|
#ifdef NHEKO_DBUS_SYS
|
|
|
|
ExposeDBusApi,
|
|
|
|
#endif
|
2023-03-14 05:02:54 +03:00
|
|
|
UpdateSpaceVias,
|
2022-01-09 02:28:03 +03:00
|
|
|
|
2023-02-06 15:56:23 +03:00
|
|
|
AccessibilitySection,
|
|
|
|
ReducedMotion,
|
|
|
|
FancyEffects,
|
|
|
|
AnimateImagesOnHover,
|
|
|
|
MessageHoverHighlight,
|
|
|
|
|
2022-01-09 02:28:03 +03:00
|
|
|
TimelineSection,
|
|
|
|
TimelineMaxWidth,
|
|
|
|
EnlargeEmojiOnlyMessages,
|
2022-03-20 06:42:50 +03:00
|
|
|
OpenImageExternal,
|
|
|
|
OpenVideoExternal,
|
|
|
|
ButtonsInTimeline,
|
2022-01-09 02:28:03 +03:00
|
|
|
TypingNotifications,
|
|
|
|
ReadReceipts,
|
|
|
|
Markdown,
|
2022-11-05 01:53:36 +03:00
|
|
|
InvertEnterKey,
|
2022-02-05 01:12:30 +03:00
|
|
|
Bubbles,
|
2022-02-13 15:12:51 +03:00
|
|
|
SmallAvatars,
|
2022-12-10 18:17:15 +03:00
|
|
|
|
2022-01-09 02:28:03 +03:00
|
|
|
SidebarSection,
|
|
|
|
GroupView,
|
|
|
|
SortByImportance,
|
2023-04-13 14:45:00 +03:00
|
|
|
SortByAlphabet,
|
2022-01-09 02:28:03 +03:00
|
|
|
DecryptSidebar,
|
2022-04-23 03:34:15 +03:00
|
|
|
SpaceNotifications,
|
2022-01-09 02:28:03 +03:00
|
|
|
|
|
|
|
TraySection,
|
|
|
|
Tray,
|
|
|
|
StartInTray,
|
|
|
|
|
|
|
|
NotificationsSection,
|
|
|
|
DesktopNotifications,
|
|
|
|
AlertOnNotification,
|
2022-10-13 18:37:28 +03:00
|
|
|
DecryptNotifications,
|
2022-01-09 02:28:03 +03:00
|
|
|
|
|
|
|
VoipSection,
|
|
|
|
UseStunServer,
|
|
|
|
Microphone,
|
|
|
|
Camera,
|
|
|
|
CameraResolution,
|
|
|
|
CameraFrameRate,
|
|
|
|
Ringtone,
|
|
|
|
|
|
|
|
EncryptionSection,
|
|
|
|
OnlyShareKeysWithVerifiedUsers,
|
|
|
|
ShareKeysWithTrustedUsers,
|
|
|
|
SessionKeys,
|
|
|
|
UseOnlineKeyBackup,
|
|
|
|
OnlineBackupKey,
|
|
|
|
SelfSigningKey,
|
|
|
|
UserSigningKey,
|
|
|
|
MasterKey,
|
|
|
|
CrossSigningSecrets,
|
|
|
|
DeviceId,
|
|
|
|
DeviceFingerprint,
|
|
|
|
|
|
|
|
LoginInfoSection,
|
|
|
|
UserId,
|
|
|
|
Homeserver,
|
|
|
|
Profile,
|
|
|
|
Version,
|
|
|
|
Platform,
|
|
|
|
COUNT,
|
|
|
|
// hidden for now
|
|
|
|
AccessToken,
|
|
|
|
#ifdef Q_OS_MAC
|
|
|
|
ScaleFactor,
|
2022-04-14 18:02:55 +03:00
|
|
|
#endif
|
|
|
|
#ifndef NHEKO_DBUS_SYS
|
|
|
|
ExposeDBusApi,
|
2022-01-09 02:28:03 +03:00
|
|
|
#endif
|
|
|
|
};
|
2017-11-02 01:41:13 +03:00
|
|
|
|
|
|
|
public:
|
2022-01-09 02:28:03 +03:00
|
|
|
enum Types
|
|
|
|
{
|
|
|
|
Toggle,
|
|
|
|
ReadOnlyText,
|
|
|
|
Options,
|
2022-01-13 07:51:57 +03:00
|
|
|
Integer,
|
|
|
|
Double,
|
2022-01-09 02:28:03 +03:00
|
|
|
SectionTitle,
|
|
|
|
SectionBar,
|
|
|
|
KeyStatus,
|
|
|
|
SessionKeyImportExport,
|
|
|
|
XSignKeysRequestDownload,
|
|
|
|
};
|
|
|
|
Q_ENUM(Types);
|
2017-11-02 01:41:13 +03:00
|
|
|
|
2022-01-09 02:28:03 +03:00
|
|
|
enum Roles
|
|
|
|
{
|
|
|
|
Name,
|
|
|
|
Description,
|
|
|
|
Value,
|
|
|
|
Type,
|
|
|
|
ValueLowerBound,
|
|
|
|
ValueUpperBound,
|
|
|
|
ValueStep,
|
|
|
|
Values,
|
|
|
|
Good,
|
|
|
|
Enabled,
|
|
|
|
};
|
2020-12-17 00:10:09 +03:00
|
|
|
|
2022-01-09 02:28:03 +03:00
|
|
|
UserSettingsModel(QObject *parent = nullptr);
|
|
|
|
QHash<int, QByteArray> roleNames() const override;
|
|
|
|
int rowCount(const QModelIndex &parent = QModelIndex()) const override
|
|
|
|
{
|
|
|
|
(void)parent;
|
|
|
|
return (int)COUNT;
|
|
|
|
}
|
|
|
|
QVariant data(const QModelIndex &index, int role) const override;
|
|
|
|
bool setData(const QModelIndex &index, const QVariant &value, int role) override;
|
2018-09-15 23:52:14 +03:00
|
|
|
|
2022-01-09 02:28:03 +03:00
|
|
|
Q_INVOKABLE void importSessionKeys();
|
|
|
|
Q_INVOKABLE void exportSessionKeys();
|
|
|
|
Q_INVOKABLE void requestCrossSigningSecrets();
|
|
|
|
Q_INVOKABLE void downloadCrossSigningSecrets();
|
2017-11-02 01:41:13 +03:00
|
|
|
};
|