nheko/src/UserSettingsPage.cpp

1981 lines
66 KiB
C++
Raw Normal View History

2021-03-05 00:35:15 +01:00
// SPDX-FileCopyrightText: 2017 Konstantinos Sideris <siderisk@auth.gr>
// SPDX-FileCopyrightText: 2021 Nheko Contributors
// SPDX-FileCopyrightText: 2022 Nheko Contributors
2021-03-05 00:35:15 +01:00
//
// SPDX-License-Identifier: GPL-3.0-or-later
2017-11-01 23:41:13 +01:00
2017-11-25 21:47:06 +01:00
#include <QApplication>
#include <QCoreApplication>
#include <QFileDialog>
2022-01-30 13:31:39 +01:00
#include <QFontDatabase>
#include <QInputDialog>
#include <QMessageBox>
#include <QStandardPaths>
#include <QString>
#include <QTextStream>
2022-01-09 00:28:03 +01:00
#include <mtx/secret_storage.hpp>
2017-11-01 23:41:13 +01:00
#include "Cache.h"
2017-11-01 23:41:13 +01:00
#include "Config.h"
2022-01-09 00:28:03 +01:00
#include "MainWindow.h"
#include "MatrixClient.h"
2017-11-01 23:41:13 +01:00
#include "UserSettingsPage.h"
#include "Utils.h"
#include "encryption/Olm.h"
2022-01-30 13:16:36 +01:00
#include "ui/Theme.h"
#include "voip/CallDevices.h"
2017-11-01 23:41:13 +01:00
2018-09-30 13:33:54 +02:00
#include "config/nheko.h"
QSharedPointer<UserSettings> UserSettings::instance_;
UserSettings::UserSettings()
{
2021-09-18 00:22:33 +02:00
connect(
QCoreApplication::instance(), &QCoreApplication::aboutToQuit, []() { instance_.clear(); });
}
QSharedPointer<UserSettings>
UserSettings::instance()
{
2021-09-18 00:22:33 +02:00
return instance_;
}
2017-11-01 23:41:13 +01:00
void
UserSettings::initialize(std::optional<QString> profile)
{
2021-09-18 00:22:33 +02:00
instance_.reset(new UserSettings());
instance_->load(profile);
}
void
UserSettings::load(std::optional<QString> profile)
2017-11-01 23:41:13 +01:00
{
tray_ = settings.value(QStringLiteral("user/window/tray"), false).toBool();
startInTray_ = settings.value(QStringLiteral("user/window/start_in_tray"), false).toBool();
2021-09-18 00:22:33 +02:00
roomListWidth_ = settings.value(QStringLiteral("user/sidebar/room_list_width"), -1).toInt();
communityListWidth_ =
settings.value(QStringLiteral("user/sidebar/community_list_width"), -1).toInt();
hasDesktopNotifications_ =
settings.value(QStringLiteral("user/desktop_notifications"), true).toBool();
hasAlertOnNotification_ =
settings.value(QStringLiteral("user/alert_on_notification"), false).toBool();
groupView_ = settings.value(QStringLiteral("user/group_view"), true).toBool();
buttonsInTimeline_ = settings.value(QStringLiteral("user/timeline/buttons"), true).toBool();
timelineMaxWidth_ = settings.value(QStringLiteral("user/timeline/max_width"), 0).toInt();
2021-09-18 00:22:33 +02:00
messageHoverHighlight_ =
settings.value(QStringLiteral("user/timeline/message_hover_highlight"), false).toBool();
2021-09-18 00:22:33 +02:00
enlargeEmojiOnlyMessages_ =
settings.value(QStringLiteral("user/timeline/enlarge_emoji_only_msg"), false).toBool();
2022-02-13 13:22:29 +01:00
markdown_ = settings.value(QStringLiteral("user/markdown_enabled"), true).toBool();
2022-02-14 14:03:17 +01:00
bubbles_ = settings.value(QStringLiteral("user/bubbles_enabled"), false).toBool();
smallAvatars_ = settings.value(QStringLiteral("user/small_avatars_enabled"), false).toBool();
animateImagesOnHover_ =
settings.value(QStringLiteral("user/animate_images_on_hover"), false).toBool();
typingNotifications_ =
settings.value(QStringLiteral("user/typing_notifications"), true).toBool();
sortByImportance_ = settings.value(QStringLiteral("user/sort_by_unread"), true).toBool();
readReceipts_ = settings.value(QStringLiteral("user/read_receipts"), true).toBool();
theme_ = settings.value(QStringLiteral("user/theme"), defaultTheme_).toString();
font_ = settings.value(QStringLiteral("user/font_family"), "").toString();
avatarCircles_ = settings.value(QStringLiteral("user/avatar_circles"), true).toBool();
useIdenticon_ = settings.value(QStringLiteral("user/use_identicon"), true).toBool();
openImageExternal_ = settings.value(QStringLiteral("user/open_image_external"), false).toBool();
openVideoExternal_ = settings.value(QStringLiteral("user/open_video_external"), false).toBool();
decryptSidebar_ = settings.value(QStringLiteral("user/decrypt_sidebar"), true).toBool();
privacyScreen_ = settings.value(QStringLiteral("user/privacy_screen"), false).toBool();
privacyScreenTimeout_ =
settings.value(QStringLiteral("user/privacy_screen_timeout"), 0).toInt();
exposeDBusApi_ = settings.value(QStringLiteral("user/expose_dbus_api"), false).toBool();
mobileMode_ = settings.value(QStringLiteral("user/mobile_mode"), false).toBool();
emojiFont_ = settings.value(QStringLiteral("user/emoji_font_family"), "emoji").toString();
baseFontSize_ =
settings.value(QStringLiteral("user/font_size"), QFont().pointSizeF()).toDouble();
auto tempPresence =
settings.value(QStringLiteral("user/presence"), "").toString().toStdString();
auto presenceValue = QMetaEnum::fromType<Presence>().keyToValue(tempPresence.c_str());
2021-09-18 00:22:33 +02:00
if (presenceValue < 0)
presenceValue = 0;
presence_ = static_cast<Presence>(presenceValue);
ringtone_ = settings.value(QStringLiteral("user/ringtone"), "Default").toString();
microphone_ = settings.value(QStringLiteral("user/microphone"), QString()).toString();
camera_ = settings.value(QStringLiteral("user/camera"), QString()).toString();
cameraResolution_ =
settings.value(QStringLiteral("user/camera_resolution"), QString()).toString();
cameraFrameRate_ =
settings.value(QStringLiteral("user/camera_frame_rate"), QString()).toString();
screenShareFrameRate_ =
settings.value(QStringLiteral("user/screen_share_frame_rate"), 5).toInt();
screenSharePiP_ = settings.value(QStringLiteral("user/screen_share_pip"), true).toBool();
screenShareRemoteVideo_ =
settings.value(QStringLiteral("user/screen_share_remote_video"), false).toBool();
screenShareHideCursor_ =
settings.value(QStringLiteral("user/screen_share_hide_cursor"), false).toBool();
useStunServer_ = settings.value(QStringLiteral("user/use_stun_server"), false).toBool();
2021-09-18 00:22:33 +02:00
if (profile) // set to "" if it's the default to maintain compatibility
profile_ = (*profile == QLatin1String("default")) ? QLatin1String("") : *profile;
2021-09-18 00:22:33 +02:00
else
profile_ = settings.value(QStringLiteral("user/currentProfile"), "").toString();
2021-09-18 00:22:33 +02:00
QString prefix = (profile_ != QLatin1String("") && profile_ != QLatin1String("default"))
? "profile/" + profile_ + "/"
: QLatin1String("");
2021-09-18 00:22:33 +02:00
accessToken_ = settings.value(prefix + "auth/access_token", "").toString();
homeserver_ = settings.value(prefix + "auth/home_server", "").toString();
userId_ = settings.value(prefix + "auth/user_id", "").toString();
deviceId_ = settings.value(prefix + "auth/device_id", "").toString();
2021-12-01 03:46:55 +01:00
hiddenTags_ = settings.value(prefix + "user/hidden_tags", QStringList{}).toStringList();
2021-12-11 06:10:41 +01:00
hiddenPins_ = settings.value(prefix + "user/hidden_pins", QStringList{}).toStringList();
2022-02-04 18:47:17 +01:00
hiddenWidgets_ = settings.value(prefix + "user/hidden_widgets", QStringList{}).toStringList();
2021-12-13 00:43:05 +01:00
recentReactions_ =
settings.value(prefix + "user/recent_reactions", QStringList{}).toStringList();
2021-12-01 03:46:55 +01:00
collapsedSpaces_.clear();
2021-12-28 23:22:01 +01:00
auto tempSpaces = settings.value(prefix + "user/collapsed_spaces", QList<QVariant>{}).toList();
for (const auto &e : qAsConst(tempSpaces))
2021-12-01 03:46:55 +01:00
collapsedSpaces_.push_back(e.toStringList());
2021-09-18 00:22:33 +02:00
shareKeysWithTrustedUsers_ =
settings.value(prefix + "user/automatically_share_keys_with_trusted_users", false).toBool();
onlyShareKeysWithVerifiedUsers_ =
settings.value(prefix + "user/only_share_keys_with_verified_users", false).toBool();
2022-03-10 20:46:06 +01:00
useOnlineKeyBackup_ = settings.value(prefix + "user/online_key_backup", true).toBool();
2021-09-18 00:22:33 +02:00
disableCertificateValidation_ =
settings.value(QStringLiteral("disable_certificate_validation"), false).toBool();
2021-09-18 00:22:33 +02:00
applyTheme();
2017-11-25 21:47:06 +01:00
}
void
UserSettings::setMessageHoverHighlight(bool state)
{
2021-09-18 00:22:33 +02:00
if (state == messageHoverHighlight_)
return;
messageHoverHighlight_ = state;
emit messageHoverHighlightChanged(state);
save();
}
void
UserSettings::setEnlargeEmojiOnlyMessages(bool state)
{
2021-09-18 00:22:33 +02:00
if (state == enlargeEmojiOnlyMessages_)
return;
enlargeEmojiOnlyMessages_ = state;
emit enlargeEmojiOnlyMessagesChanged(state);
save();
}
void
UserSettings::setTray(bool state)
{
2021-09-18 00:22:33 +02:00
if (state == tray_)
return;
tray_ = state;
emit trayChanged(state);
save();
}
void
UserSettings::setStartInTray(bool state)
{
2021-09-18 00:22:33 +02:00
if (state == startInTray_)
return;
startInTray_ = state;
emit startInTrayChanged(state);
save();
}
void
UserSettings::setMobileMode(bool state)
{
2021-09-18 00:22:33 +02:00
if (state == mobileMode_)
return;
mobileMode_ = state;
emit mobileModeChanged(state);
save();
}
void
UserSettings::setGroupView(bool state)
{
2021-09-18 00:22:33 +02:00
if (groupView_ == state)
return;
2021-09-18 00:22:33 +02:00
groupView_ = state;
emit groupViewStateChanged(state);
save();
}
2021-01-23 00:49:14 +01:00
void
UserSettings::setHiddenTags(QStringList hiddenTags)
{
2021-09-18 00:22:33 +02:00
hiddenTags_ = hiddenTags;
save();
2021-01-23 00:49:14 +01:00
}
2021-12-11 06:10:41 +01:00
void
UserSettings::setHiddenPins(QStringList hiddenTags)
{
hiddenPins_ = hiddenTags;
save();
emit hiddenPinsChanged();
}
2022-02-04 18:47:17 +01:00
void
UserSettings::setHiddenWidgets(QStringList hiddenTags)
{
hiddenWidgets_ = hiddenTags;
save();
emit hiddenWidgetsChanged();
}
2021-12-13 00:43:05 +01:00
void
UserSettings::setRecentReactions(QStringList recent)
{
recentReactions_ = recent;
save();
emit recentReactionsChanged();
}
2021-12-01 03:46:55 +01:00
void
UserSettings::setCollapsedSpaces(QList<QStringList> spaces)
{
collapsedSpaces_ = spaces;
save();
}
void
UserSettings::setExposeDBusApi(bool state)
{
if (exposeDBusApi_ == state)
return;
exposeDBusApi_ = state;
emit exposeDBusApiChanged(state);
save();
}
void
2020-05-26 22:53:21 +02:00
UserSettings::setMarkdown(bool state)
{
2021-09-18 00:22:33 +02:00
if (state == markdown_)
return;
markdown_ = state;
emit markdownChanged(state);
save();
}
2022-02-04 23:12:30 +01:00
void
UserSettings::setBubbles(bool state)
{
if (state == bubbles_)
return;
bubbles_ = state;
emit bubblesChanged(state);
save();
}
void
UserSettings::setSmallAvatars(bool state)
{
if (state == smallAvatars_)
return;
smallAvatars_ = state;
emit smallAvatarsChanged(state);
save();
}
void
UserSettings::setAnimateImagesOnHover(bool state)
{
2021-09-18 00:22:33 +02:00
if (state == animateImagesOnHover_)
return;
animateImagesOnHover_ = state;
emit animateImagesOnHoverChanged(state);
save();
}
void
UserSettings::setReadReceipts(bool state)
{
2021-09-18 00:22:33 +02:00
if (state == readReceipts_)
return;
readReceipts_ = state;
emit readReceiptsChanged(state);
save();
}
void
UserSettings::setTypingNotifications(bool state)
{
2021-09-18 00:22:33 +02:00
if (state == typingNotifications_)
return;
typingNotifications_ = state;
emit typingNotificationsChanged(state);
save();
}
void
UserSettings::setSortByImportance(bool state)
{
2021-09-18 00:22:33 +02:00
if (state == sortByImportance_)
return;
sortByImportance_ = state;
emit roomSortingChanged(state);
save();
}
void
UserSettings::setButtonsInTimeline(bool state)
{
2021-09-18 00:22:33 +02:00
if (state == buttonsInTimeline_)
return;
buttonsInTimeline_ = state;
emit buttonInTimelineChanged(state);
save();
}
void
UserSettings::setTimelineMaxWidth(int state)
{
2021-09-18 00:22:33 +02:00
if (state == timelineMaxWidth_)
return;
timelineMaxWidth_ = state;
emit timelineMaxWidthChanged(state);
save();
}
2021-06-12 14:07:32 +02:00
void
UserSettings::setCommunityListWidth(int state)
{
2021-09-18 00:22:33 +02:00
if (state == communityListWidth_)
return;
communityListWidth_ = state;
emit communityListWidthChanged(state);
save();
2021-06-12 14:07:32 +02:00
}
void
UserSettings::setRoomListWidth(int state)
{
2021-09-18 00:22:33 +02:00
if (state == roomListWidth_)
return;
roomListWidth_ = state;
emit roomListWidthChanged(state);
save();
2021-06-12 14:07:32 +02:00
}
void
UserSettings::setDesktopNotifications(bool state)
{
2021-09-18 00:22:33 +02:00
if (state == hasDesktopNotifications_)
return;
hasDesktopNotifications_ = state;
emit desktopNotificationsChanged(state);
save();
}
2020-06-10 11:27:21 +02:00
void
UserSettings::setAlertOnNotification(bool state)
{
2021-09-18 00:22:33 +02:00
if (state == hasAlertOnNotification_)
return;
hasAlertOnNotification_ = state;
emit alertOnNotificationChanged(state);
save();
2020-06-10 11:27:21 +02:00
}
void
UserSettings::setAvatarCircles(bool state)
{
2021-09-18 00:22:33 +02:00
if (state == avatarCircles_)
return;
avatarCircles_ = state;
emit avatarCirclesChanged(state);
save();
}
void
UserSettings::setDecryptSidebar(bool state)
{
2021-09-18 00:22:33 +02:00
if (state == decryptSidebar_)
return;
decryptSidebar_ = state;
emit decryptSidebarChanged(state);
save();
}
2017-11-25 21:47:06 +01:00
void
UserSettings::setPrivacyScreen(bool state)
{
2021-09-18 00:22:33 +02:00
if (state == privacyScreen_) {
return;
}
privacyScreen_ = state;
emit privacyScreenChanged(state);
save();
}
void
UserSettings::setPrivacyScreenTimeout(int state)
{
2021-09-18 00:22:33 +02:00
if (state == privacyScreenTimeout_) {
return;
}
privacyScreenTimeout_ = state;
emit privacyScreenTimeoutChanged(state);
save();
}
void
UserSettings::setFontSize(double size)
{
2021-09-18 00:22:33 +02:00
if (size == baseFontSize_)
return;
baseFontSize_ = size;
const static auto defaultFamily = QFont().defaultFamily();
QFont f((font_.isEmpty() || font_ == QStringLiteral("default")) ? defaultFamily : font_);
f.setPointSizeF(fontSize());
QApplication::setFont(f);
2021-09-18 00:22:33 +02:00
emit fontSizeChanged(size);
save();
}
void
UserSettings::setFontFamily(QString family)
{
2021-09-18 00:22:33 +02:00
if (family == font_)
return;
font_ = family;
const static auto defaultFamily = QFont().defaultFamily();
QFont f((family.isEmpty() || family == QStringLiteral("default")) ? defaultFamily : family);
f.setPointSizeF(fontSize());
QApplication::setFont(f);
2021-09-18 00:22:33 +02:00
emit fontChanged(family);
save();
}
void
UserSettings::setEmojiFontFamily(QString family)
{
2021-09-18 00:22:33 +02:00
if (family == emojiFont_)
return;
2021-02-07 17:45:06 +01:00
2021-09-18 00:22:33 +02:00
if (family == tr("Default")) {
emojiFont_ = QStringLiteral("emoji");
2021-09-18 00:22:33 +02:00
} else {
emojiFont_ = family;
}
2021-02-07 17:45:06 +01:00
2021-09-18 00:22:33 +02:00
emit emojiFontChanged(family);
save();
}
2020-06-08 20:26:37 +02:00
void
UserSettings::setPresence(Presence state)
{
2021-09-18 00:22:33 +02:00
if (state == presence_)
return;
presence_ = state;
emit presenceChanged(state);
save();
2020-06-08 20:26:37 +02:00
}
2017-11-25 21:47:06 +01:00
void
UserSettings::setTheme(QString theme)
{
2021-09-18 00:22:33 +02:00
if (theme == theme_)
return;
theme_ = theme;
save();
applyTheme();
emit themeChanged(theme);
2017-11-25 21:47:06 +01:00
}
2020-07-11 01:19:48 +02:00
void
UserSettings::setUseStunServer(bool useStunServer)
{
2021-09-18 00:22:33 +02:00
if (useStunServer == useStunServer_)
return;
useStunServer_ = useStunServer;
emit useStunServerChanged(useStunServer);
save();
2020-07-11 01:19:48 +02:00
}
void
UserSettings::setOnlyShareKeysWithVerifiedUsers(bool shareKeys)
{
2021-09-18 00:22:33 +02:00
if (shareKeys == onlyShareKeysWithVerifiedUsers_)
return;
2021-09-18 00:22:33 +02:00
onlyShareKeysWithVerifiedUsers_ = shareKeys;
emit onlyShareKeysWithVerifiedUsersChanged(shareKeys);
save();
}
void
UserSettings::setShareKeysWithTrustedUsers(bool shareKeys)
{
2021-09-18 00:22:33 +02:00
if (shareKeys == shareKeysWithTrustedUsers_)
return;
2020-10-23 16:59:18 +02:00
2021-09-18 00:22:33 +02:00
shareKeysWithTrustedUsers_ = shareKeys;
emit shareKeysWithTrustedUsersChanged(shareKeys);
save();
}
2021-08-17 03:23:51 +02:00
void
UserSettings::setUseOnlineKeyBackup(bool useBackup)
{
2021-09-18 00:22:33 +02:00
if (useBackup == useOnlineKeyBackup_)
return;
2021-08-17 03:23:51 +02:00
2021-09-18 00:22:33 +02:00
useOnlineKeyBackup_ = useBackup;
emit useOnlineKeyBackupChanged(useBackup);
save();
2021-08-17 03:23:51 +02:00
}
void
UserSettings::setRingtone(QString ringtone)
{
2021-09-18 00:22:33 +02:00
if (ringtone == ringtone_)
return;
ringtone_ = ringtone;
emit ringtoneChanged(ringtone);
save();
}
2020-08-05 23:56:44 +02:00
void
2020-10-27 18:14:06 +01:00
UserSettings::setMicrophone(QString microphone)
2020-08-05 23:56:44 +02:00
{
2021-09-18 00:22:33 +02:00
if (microphone == microphone_)
return;
microphone_ = microphone;
emit microphoneChanged(microphone);
save();
2020-10-27 18:14:06 +01:00
}
void
UserSettings::setCamera(QString camera)
{
2021-09-18 00:22:33 +02:00
if (camera == camera_)
return;
camera_ = camera;
emit cameraChanged(camera);
save();
2020-10-27 18:14:06 +01:00
}
void
UserSettings::setCameraResolution(QString resolution)
{
2021-09-18 00:22:33 +02:00
if (resolution == cameraResolution_)
return;
cameraResolution_ = resolution;
emit cameraResolutionChanged(resolution);
save();
2020-10-27 18:14:06 +01:00
}
void
UserSettings::setCameraFrameRate(QString frameRate)
{
2021-09-18 00:22:33 +02:00
if (frameRate == cameraFrameRate_)
return;
cameraFrameRate_ = frameRate;
emit cameraFrameRateChanged(frameRate);
save();
2020-08-05 23:56:44 +02:00
}
2021-02-18 21:55:29 +01:00
void
UserSettings::setScreenShareFrameRate(int frameRate)
{
2021-09-18 00:22:33 +02:00
if (frameRate == screenShareFrameRate_)
return;
screenShareFrameRate_ = frameRate;
emit screenShareFrameRateChanged(frameRate);
save();
2021-02-18 21:55:29 +01:00
}
void
UserSettings::setScreenSharePiP(bool state)
{
2021-09-18 00:22:33 +02:00
if (state == screenSharePiP_)
return;
screenSharePiP_ = state;
emit screenSharePiPChanged(state);
save();
}
2021-02-18 21:55:29 +01:00
void
UserSettings::setScreenShareRemoteVideo(bool state)
{
2021-09-18 00:22:33 +02:00
if (state == screenShareRemoteVideo_)
return;
screenShareRemoteVideo_ = state;
emit screenShareRemoteVideoChanged(state);
save();
2021-02-18 21:55:29 +01:00
}
void
UserSettings::setScreenShareHideCursor(bool state)
{
2021-09-18 00:22:33 +02:00
if (state == screenShareHideCursor_)
return;
screenShareHideCursor_ = state;
emit screenShareHideCursorChanged(state);
save();
}
void
UserSettings::setProfile(QString profile)
{
2021-09-18 00:22:33 +02:00
if (profile == profile_)
return;
profile_ = profile;
emit profileChanged(profile_);
save();
}
void
UserSettings::setUserId(QString userId)
{
2021-09-18 00:22:33 +02:00
if (userId == userId_)
return;
userId_ = userId;
emit userIdChanged(userId_);
save();
}
void
UserSettings::setAccessToken(QString accessToken)
{
2021-09-18 00:22:33 +02:00
if (accessToken == accessToken_)
return;
accessToken_ = accessToken;
emit accessTokenChanged(accessToken_);
save();
}
void
UserSettings::setDeviceId(QString deviceId)
{
2021-09-18 00:22:33 +02:00
if (deviceId == deviceId_)
return;
deviceId_ = deviceId;
emit deviceIdChanged(deviceId_);
save();
}
void
UserSettings::setHomeserver(QString homeserver)
{
2021-09-18 00:22:33 +02:00
if (homeserver == homeserver_)
return;
homeserver_ = homeserver;
emit homeserverChanged(homeserver_);
save();
}
void
UserSettings::setDisableCertificateValidation(bool disabled)
{
2021-09-18 00:22:33 +02:00
if (disabled == disableCertificateValidation_)
return;
disableCertificateValidation_ = disabled;
http::client()->verify_certificates(!disabled);
emit disableCertificateValidationChanged(disabled);
2020-12-25 15:14:00 +01:00
}
void
UserSettings::setUseIdenticon(bool state)
{
2021-09-18 00:22:33 +02:00
if (state == useIdenticon_)
return;
useIdenticon_ = state;
emit useIdenticonChanged(useIdenticon_);
save();
}
void
UserSettings::setOpenImageExternal(bool state)
{
if (state == openImageExternal_)
return;
openImageExternal_ = state;
emit openImageExternalChanged(openImageExternal_);
save();
}
void
UserSettings::setOpenVideoExternal(bool state)
{
if (state == openVideoExternal_)
return;
openVideoExternal_ = state;
emit openVideoExternalChanged(openVideoExternal_);
save();
}
2017-11-25 21:47:06 +01:00
void
UserSettings::applyTheme()
{
2021-09-18 00:22:33 +02:00
QFile stylefile;
2017-11-25 21:47:06 +01:00
if (this->theme() == QLatin1String("light")) {
stylefile.setFileName(QStringLiteral(":/styles/styles/nheko.qss"));
} else if (this->theme() == QLatin1String("dark")) {
stylefile.setFileName(QStringLiteral(":/styles/styles/nheko-dark.qss"));
2021-09-18 00:22:33 +02:00
} else {
stylefile.setFileName(QStringLiteral(":/styles/styles/system.qss"));
2021-09-18 00:22:33 +02:00
}
2021-12-29 08:05:29 +01:00
QApplication::setPalette(Theme::paletteFromTheme(this->theme()));
2017-11-25 21:47:06 +01:00
2021-09-18 00:22:33 +02:00
stylefile.open(QFile::ReadOnly);
QString stylesheet = QString(stylefile.readAll());
2017-11-25 21:47:06 +01:00
2021-09-18 00:22:33 +02:00
qobject_cast<QApplication *>(QApplication::instance())->setStyleSheet(stylesheet);
2017-11-01 23:41:13 +01:00
}
void
UserSettings::save()
{
settings.beginGroup(QStringLiteral("user"));
2021-09-18 00:22:33 +02:00
settings.beginGroup(QStringLiteral("window"));
settings.setValue(QStringLiteral("tray"), tray_);
settings.setValue(QStringLiteral("start_in_tray"), startInTray_);
2021-09-18 00:22:33 +02:00
settings.endGroup(); // window
settings.beginGroup(QStringLiteral("sidebar"));
settings.setValue(QStringLiteral("community_list_width"), communityListWidth_);
settings.setValue(QStringLiteral("room_list_width"), roomListWidth_);
2021-09-18 00:22:33 +02:00
settings.endGroup(); // window
settings.beginGroup(QStringLiteral("timeline"));
settings.setValue(QStringLiteral("buttons"), buttonsInTimeline_);
settings.setValue(QStringLiteral("message_hover_highlight"), messageHoverHighlight_);
settings.setValue(QStringLiteral("enlarge_emoji_only_msg"), enlargeEmojiOnlyMessages_);
settings.setValue(QStringLiteral("max_width"), timelineMaxWidth_);
2021-09-18 00:22:33 +02:00
settings.endGroup(); // timeline
settings.setValue(QStringLiteral("avatar_circles"), avatarCircles_);
settings.setValue(QStringLiteral("decrypt_sidebar"), decryptSidebar_);
settings.setValue(QStringLiteral("privacy_screen"), privacyScreen_);
settings.setValue(QStringLiteral("privacy_screen_timeout"), privacyScreenTimeout_);
settings.setValue(QStringLiteral("mobile_mode"), mobileMode_);
settings.setValue(QStringLiteral("font_size"), baseFontSize_);
settings.setValue(QStringLiteral("typing_notifications"), typingNotifications_);
settings.setValue(QStringLiteral("sort_by_unread"), sortByImportance_);
settings.setValue(QStringLiteral("minor_events"), sortByImportance_);
settings.setValue(QStringLiteral("read_receipts"), readReceipts_);
settings.setValue(QStringLiteral("group_view"), groupView_);
settings.setValue(QStringLiteral("markdown_enabled"), markdown_);
2022-02-04 23:12:30 +01:00
settings.setValue(QStringLiteral("bubbles_enabled"), bubbles_);
settings.setValue(QStringLiteral("small_avatars_enabled"), smallAvatars_);
settings.setValue(QStringLiteral("animate_images_on_hover"), animateImagesOnHover_);
settings.setValue(QStringLiteral("desktop_notifications"), hasDesktopNotifications_);
settings.setValue(QStringLiteral("alert_on_notification"), hasAlertOnNotification_);
settings.setValue(QStringLiteral("theme"), theme());
settings.setValue(QStringLiteral("font_family"), font_);
settings.setValue(QStringLiteral("emoji_font_family"), emojiFont_);
2021-09-18 00:22:33 +02:00
settings.setValue(
QStringLiteral("presence"),
2021-09-18 00:22:33 +02:00
QString::fromUtf8(QMetaEnum::fromType<Presence>().valueToKey(static_cast<int>(presence_))));
settings.setValue(QStringLiteral("ringtone"), ringtone_);
settings.setValue(QStringLiteral("microphone"), microphone_);
settings.setValue(QStringLiteral("camera"), camera_);
settings.setValue(QStringLiteral("camera_resolution"), cameraResolution_);
settings.setValue(QStringLiteral("camera_frame_rate"), cameraFrameRate_);
settings.setValue(QStringLiteral("screen_share_frame_rate"), screenShareFrameRate_);
settings.setValue(QStringLiteral("screen_share_pip"), screenSharePiP_);
settings.setValue(QStringLiteral("screen_share_remote_video"), screenShareRemoteVideo_);
settings.setValue(QStringLiteral("screen_share_hide_cursor"), screenShareHideCursor_);
settings.setValue(QStringLiteral("use_stun_server"), useStunServer_);
settings.setValue(QStringLiteral("currentProfile"), profile_);
settings.setValue(QStringLiteral("use_identicon"), useIdenticon_);
settings.setValue(QStringLiteral("open_image_external"), openImageExternal_);
settings.setValue(QStringLiteral("open_video_external"), openVideoExternal_);
settings.setValue(QStringLiteral("expose_dbus_api"), exposeDBusApi_);
2021-09-18 00:22:33 +02:00
settings.endGroup(); // user
QString prefix = (profile_ != QLatin1String("") && profile_ != QLatin1String("default"))
? "profile/" + profile_ + "/"
: QLatin1String("");
2021-09-18 00:22:33 +02:00
settings.setValue(prefix + "auth/access_token", accessToken_);
settings.setValue(prefix + "auth/home_server", homeserver_);
settings.setValue(prefix + "auth/user_id", userId_);
settings.setValue(prefix + "auth/device_id", deviceId_);
settings.setValue(prefix + "user/automatically_share_keys_with_trusted_users",
shareKeysWithTrustedUsers_);
settings.setValue(prefix + "user/only_share_keys_with_verified_users",
onlyShareKeysWithVerifiedUsers_);
settings.setValue(prefix + "user/online_key_backup", useOnlineKeyBackup_);
2021-12-01 03:46:55 +01:00
settings.setValue(prefix + "user/hidden_tags", hiddenTags_);
2021-12-11 06:10:41 +01:00
settings.setValue(prefix + "user/hidden_pins", hiddenPins_);
2022-02-04 18:47:17 +01:00
settings.setValue(prefix + "user/hidden_widgets", hiddenWidgets_);
2021-12-13 00:43:05 +01:00
settings.setValue(prefix + "user/recent_reactions", recentReactions_);
2021-12-01 03:46:55 +01:00
QVariantList v;
v.reserve(collapsedSpaces_.size());
2021-12-28 23:22:01 +01:00
for (const auto &e : qAsConst(collapsedSpaces_))
2021-12-01 03:46:55 +01:00
v.push_back(e);
settings.setValue(prefix + "user/collapsed_spaces", v);
2021-09-18 00:22:33 +02:00
settings.setValue(QStringLiteral("disable_certificate_validation"),
disableCertificateValidation_);
2021-09-18 00:22:33 +02:00
settings.sync();
2017-11-01 23:41:13 +01:00
}
2022-01-09 00:28:03 +01:00
QHash<int, QByteArray>
UserSettingsModel::roleNames() const
{
static QHash<int, QByteArray> roles{
{Name, "name"},
{Description, "description"},
{Value, "value"},
{Type, "type"},
{ValueLowerBound, "valueLowerBound"},
{ValueUpperBound, "valueUpperBound"},
{ValueStep, "valueStep"},
{Values, "values"},
{Good, "good"},
{Enabled, "enabled"},
};
2022-01-09 00:28:03 +01:00
return roles;
}
2022-01-09 00:28:03 +01:00
QVariant
UserSettingsModel::data(const QModelIndex &index, int role) const
{
if (index.row() >= COUNT)
return {};
auto i = UserSettings::instance();
if (!i)
return {};
if (role == Name) {
switch (index.row()) {
case Theme:
return tr("Theme");
case ScaleFactor:
return tr("Scale factor");
case MessageHoverHighlight:
return tr("Highlight message on hover");
case EnlargeEmojiOnlyMessages:
return tr("Large Emoji in timeline");
case Tray:
return tr("Minimize to tray");
case StartInTray:
return tr("Start in tray");
case GroupView:
return tr("Group's sidebar");
case Markdown:
return tr("Send messages as Markdown");
2022-02-04 23:12:30 +01:00
case Bubbles:
2022-02-05 21:53:21 +01:00
return tr("Enable message bubbles");
case SmallAvatars:
return tr("Enable small Avatars");
2022-01-09 00:28:03 +01:00
case AnimateImagesOnHover:
return tr("Play animated images only on hover");
case TypingNotifications:
return tr("Typing notifications");
case SortByImportance:
return tr("Sort rooms by unreads");
case ButtonsInTimeline:
return tr("Show buttons in timeline");
case TimelineMaxWidth:
return tr("Limit width of timeline");
case ReadReceipts:
return tr("Read receipts");
case DesktopNotifications:
return tr("Desktop notifications");
case AlertOnNotification:
return tr("Alert on notification");
case AvatarCircles:
return tr("Circular Avatars");
case UseIdenticon:
return tr("Use identicons");
case OpenImageExternal:
return tr("Open images with external program");
case OpenVideoExternal:
return tr("Open videos with external program");
2022-01-09 00:28:03 +01:00
case DecryptSidebar:
return tr("Decrypt messages in sidebar");
case PrivacyScreen:
return tr("Privacy Screen");
case PrivacyScreenTimeout:
return tr("Privacy screen timeout (in seconds [0 - 3600])");
case MobileMode:
return tr("Touchscreen mode");
case FontSize:
return tr("Font size");
case Font:
return tr("Font Family");
case EmojiFont:
return tr("Emoji Font Family");
case Ringtone:
return tr("Ringtone");
case Microphone:
return tr("Microphone");
case Camera:
return tr("Camera");
case CameraResolution:
return tr("Camera resolution");
case CameraFrameRate:
return tr("Camera frame rate");
case UseStunServer:
return tr("Allow fallback call assist server");
case OnlyShareKeysWithVerifiedUsers:
return tr("Send encrypted messages to verified users only");
case ShareKeysWithTrustedUsers:
return tr("Share keys with verified users and devices");
case UseOnlineKeyBackup:
return tr("Online Key Backup");
case Profile:
return tr("Profile");
case UserId:
return tr("User ID");
case AccessToken:
return tr("Accesstoken");
case DeviceId:
return tr("Device ID");
case DeviceFingerprint:
return tr("Device Fingerprint");
case Homeserver:
return tr("Homeserver");
case Version:
return tr("Version");
case Platform:
return tr("Platform");
case GeneralSection:
return tr("GENERAL");
case TimelineSection:
return tr("TIMELINE");
case SidebarSection:
return tr("SIDEBAR");
case TraySection:
return tr("TRAY");
case NotificationsSection:
return tr("NOTIFICATIONS");
case VoipSection:
return tr("CALLS");
case EncryptionSection:
return tr("ENCRYPTION");
case LoginInfoSection:
return tr("INFO");
case SessionKeys:
return tr("Session Keys");
case CrossSigningSecrets:
return tr("Cross Signing Secrets");
case OnlineBackupKey:
return tr("Online backup key");
case SelfSigningKey:
return tr("Self signing key");
case UserSigningKey:
return tr("User signing key");
case MasterKey:
return tr("Master signing key");
case ExposeDBusApi:
return tr("Expose room information via D-Bus");
2021-09-18 00:22:33 +02:00
}
2022-01-09 00:28:03 +01:00
} else if (role == Value) {
switch (index.row()) {
case Theme:
return QStringList{
QStringLiteral("light"),
QStringLiteral("dark"),
QStringLiteral("system"),
2021-09-18 00:22:33 +02:00
}
2022-01-09 00:28:03 +01:00
.indexOf(i->theme());
case ScaleFactor:
return utils::scaleFactor();
case MessageHoverHighlight:
return i->messageHoverHighlight();
case EnlargeEmojiOnlyMessages:
return i->enlargeEmojiOnlyMessages();
case Tray:
return i->tray();
case StartInTray:
return i->startInTray();
case GroupView:
return i->groupView();
case Markdown:
return i->markdown();
2022-02-04 23:12:30 +01:00
case Bubbles:
return i->bubbles();
case SmallAvatars:
return i->smallAvatars();
2022-01-09 00:28:03 +01:00
case AnimateImagesOnHover:
return i->animateImagesOnHover();
case TypingNotifications:
return i->typingNotifications();
case SortByImportance:
return i->sortByImportance();
case ButtonsInTimeline:
return i->buttonsInTimeline();
case TimelineMaxWidth:
return i->timelineMaxWidth();
case ReadReceipts:
return i->readReceipts();
case DesktopNotifications:
return i->hasDesktopNotifications();
case AlertOnNotification:
return i->hasAlertOnNotification();
case AvatarCircles:
return i->avatarCircles();
case UseIdenticon:
return i->useIdenticon();
case OpenImageExternal:
return i->openImageExternal();
case OpenVideoExternal:
return i->openVideoExternal();
2022-01-09 00:28:03 +01:00
case DecryptSidebar:
return i->decryptSidebar();
case PrivacyScreen:
return i->privacyScreen();
case PrivacyScreenTimeout:
return i->privacyScreenTimeout();
case MobileMode:
return i->mobileMode();
case FontSize:
return i->fontSize();
case Font:
return data(index, Values).toStringList().indexOf(i->font());
case EmojiFont:
return data(index, Values).toStringList().indexOf(i->emojiFont());
case Ringtone: {
auto v = i->ringtone();
if (v == QStringView(u"Mute"))
return 0;
else if (v == QStringView(u"Default"))
return 1;
else if (v == QStringView(u"Other"))
return 2;
else
return 3;
2021-09-18 00:22:33 +02:00
}
2022-01-09 00:28:03 +01:00
case Microphone:
return data(index, Values).toStringList().indexOf(i->microphone());
case Camera:
return data(index, Values).toStringList().indexOf(i->camera());
case CameraResolution:
return data(index, Values).toStringList().indexOf(i->cameraResolution());
case CameraFrameRate:
return data(index, Values).toStringList().indexOf(i->cameraFrameRate());
case UseStunServer:
return i->useStunServer();
case OnlyShareKeysWithVerifiedUsers:
return i->onlyShareKeysWithVerifiedUsers();
case ShareKeysWithTrustedUsers:
return i->shareKeysWithTrustedUsers();
case UseOnlineKeyBackup:
return i->useOnlineKeyBackup();
case Profile:
return i->profile().isEmpty() ? tr("Default") : i->profile();
case UserId:
return i->userId();
case AccessToken:
return i->accessToken();
case DeviceId:
return i->deviceId();
case DeviceFingerprint:
return utils::humanReadableFingerprint(olm::client()->identity_keys().ed25519);
case Homeserver:
return i->homeserver();
case Version:
return QString::fromStdString(nheko::version);
case Platform:
return QString::fromStdString(nheko::build_os);
case OnlineBackupKey:
return cache::secret(mtx::secret_storage::secrets::megolm_backup_v1).has_value();
case SelfSigningKey:
return cache::secret(mtx::secret_storage::secrets::cross_signing_self_signing)
.has_value();
case UserSigningKey:
return cache::secret(mtx::secret_storage::secrets::cross_signing_user_signing)
.has_value();
case MasterKey:
return cache::secret(mtx::secret_storage::secrets::cross_signing_master).has_value();
case ExposeDBusApi:
return i->exposeDBusApi();
2022-01-09 00:28:03 +01:00
}
} else if (role == Description) {
switch (index.row()) {
case Theme:
case Font:
case EmojiFont:
return {};
case Microphone:
return tr("Set the notification sound to play when a call invite arrives");
case Camera:
case CameraResolution:
case CameraFrameRate:
case Ringtone:
return {};
case TimelineMaxWidth:
return tr("Set the max width of messages in the timeline (in pixels). This can help "
"readability on wide screen, when Nheko is maximised");
case PrivacyScreenTimeout:
return tr(
"Set timeout (in seconds) for how long after window loses\nfocus before the screen"
" will be blurred.\nSet to 0 to blur immediately after focus loss. Max value of 1 "
"hour (3600 seconds)");
case FontSize:
return {};
case MessageHoverHighlight:
return tr("Change the background color of messages when you hover over them.");
case EnlargeEmojiOnlyMessages:
return tr("Make font size larger if messages with only a few emojis are displayed.");
case Tray:
return tr(
"Keep the application running in the background after closing the client window.");
case StartInTray:
return tr("Start the application in the background without showing the client window.");
case GroupView:
return tr("Show a column containing groups and tags next to the room list.");
case Markdown:
return tr(
"Allow using markdown in messages.\nWhen disabled, all messages are sent as a plain "
"text.");
2022-02-04 23:12:30 +01:00
case Bubbles:
2022-02-05 21:53:21 +01:00
return tr(
"Messages get a bubble background. This also triggers some layout changes (WIP).");
case SmallAvatars:
2022-02-13 13:22:29 +01:00
return tr("Avatars are resized to fit above the message.");
2022-01-09 00:28:03 +01:00
case AnimateImagesOnHover:
return tr("Plays media like GIFs or WEBPs only when explicitly hovering over them.");
case TypingNotifications:
return tr(
"Show who is typing in a room.\nThis will also enable or disable sending typing "
"notifications to others.");
case SortByImportance:
return tr(
"Display rooms with new messages first.\nIf this is off, the list of rooms will only "
"be sorted by the timestamp of the last message in a room.\nIf this is on, rooms "
"which "
"have active notifications (the small circle with a number in it) will be sorted on "
"top. Rooms, that you have muted, will still be sorted by timestamp, since you don't "
"seem to consider them as important as the other rooms.");
case ButtonsInTimeline:
return tr(
"Show buttons to quickly reply, react or access additional options next to each "
"message.");
case ReadReceipts:
2022-06-14 00:35:28 +02:00
return tr(
"Show if your message was read.\nStatus is displayed next to timestamps.\nWarning: "
"If your homeserver does not support this, your rooms will never be marked as read!");
2022-01-09 00:28:03 +01:00
case DesktopNotifications:
2022-03-02 22:58:06 +01:00
return tr("Notify about received messages when the client is not currently focused.");
2022-01-09 00:28:03 +01:00
case AlertOnNotification:
return tr(
"Show an alert when a message is received.\nThis usually causes the application "
"icon in the task bar to animate in some fashion.");
case AvatarCircles:
return tr(
"Change the appearance of user avatars in chats.\nOFF - square, ON - circle.");
2022-01-09 00:28:03 +01:00
case UseIdenticon:
return tr("Display an identicon instead of a letter when no avatar is set.");
case OpenImageExternal:
return tr("Opens images with an external program when tapping the image.\nNote that "
"when this option is ON, opened files are left unencrypted on disk and must "
"be manually deleted.");
case OpenVideoExternal:
return tr("Opens videos with an external program when tapping the video.\nNote that "
"when this option is ON, opened files are left unencrypted on disk and must "
"be manually deleted.");
2022-01-09 00:28:03 +01:00
case DecryptSidebar:
return tr("Decrypt the messages shown in the sidebar.\nOnly affects messages in "
"encrypted chats.");
case PrivacyScreen:
return tr("When the window loses focus, the timeline will\nbe blurred.");
case MobileMode:
return tr(
"Will prevent text selection in the timeline to make touch scrolling easier.");
case ScaleFactor:
return tr("Change the scale factor of the whole user interface.");
case UseStunServer:
return tr(
"Will use turn.matrix.org as assist when your home server does not offer one.");
case OnlyShareKeysWithVerifiedUsers:
return tr("Requires a user to be verified to send encrypted messages to them. This "
"improves safety but makes E2EE more tedious.");
case ShareKeysWithTrustedUsers:
return tr(
"Automatically replies to key requests from other users, if they are verified, "
"even if that device shouldn't have access to those keys otherwise.");
case UseOnlineKeyBackup:
return tr(
"Download message encryption keys from and upload to the encrypted online key "
"backup.");
case Profile:
case UserId:
case AccessToken:
case DeviceId:
case DeviceFingerprint:
case Homeserver:
case Version:
case Platform:
case GeneralSection:
case TimelineSection:
case SidebarSection:
case TraySection:
case NotificationsSection:
case VoipSection:
case EncryptionSection:
case LoginInfoSection:
case SessionKeys:
case CrossSigningSecrets:
return {};
case OnlineBackupKey:
return tr(
"The key to decrypt online key backups. If it is cached, you can enable online "
"key backup to store encryption keys securely encrypted on the server.");
case SelfSigningKey:
return tr(
"The key to verify your own devices. If it is cached, verifying one of your devices "
2022-03-02 23:11:28 +01:00
"will mark it verified for all your other devices and for users that have verified "
2022-01-09 00:28:03 +01:00
"you.");
case UserSigningKey:
return tr(
"The key to verify other users. If it is cached, verifying a user will verify "
"all their devices.");
case MasterKey:
return tr(
"Your most important key. You don't need to have it cached, since not caching "
"it makes it less likely it can be stolen and it is only needed to rotate your "
"other signing keys.");
case ExposeDBusApi:
return tr("Allow third-party plugins and applications to load information about rooms "
"you are in via D-Bus. "
"This can have useful applications, but it also could be used for nefarious "
"purposes. Enable at your own risk.\n\n"
"This setting will take effect upon restart.");
2022-01-09 00:28:03 +01:00
}
} else if (role == Type) {
switch (index.row()) {
case Theme:
case Font:
case EmojiFont:
case Microphone:
case Camera:
case CameraResolution:
case CameraFrameRate:
case Ringtone:
return Options;
case TimelineMaxWidth:
case PrivacyScreenTimeout:
return Integer;
2022-01-09 00:28:03 +01:00
case FontSize:
case ScaleFactor:
return Double;
2022-01-09 00:28:03 +01:00
case MessageHoverHighlight:
case EnlargeEmojiOnlyMessages:
case Tray:
case StartInTray:
case GroupView:
case Markdown:
2022-02-04 23:12:30 +01:00
case Bubbles:
case SmallAvatars:
2022-01-09 00:28:03 +01:00
case AnimateImagesOnHover:
case TypingNotifications:
case SortByImportance:
case ButtonsInTimeline:
case ReadReceipts:
case DesktopNotifications:
case AlertOnNotification:
case AvatarCircles:
case UseIdenticon:
case OpenImageExternal:
case OpenVideoExternal:
2022-01-09 00:28:03 +01:00
case DecryptSidebar:
case PrivacyScreen:
case MobileMode:
case UseStunServer:
case OnlyShareKeysWithVerifiedUsers:
case ShareKeysWithTrustedUsers:
case UseOnlineKeyBackup:
case ExposeDBusApi:
2022-01-09 00:28:03 +01:00
return Toggle;
case Profile:
case UserId:
case AccessToken:
case DeviceId:
case DeviceFingerprint:
case Homeserver:
case Version:
case Platform:
return ReadOnlyText;
case GeneralSection:
case TimelineSection:
case SidebarSection:
case TraySection:
case NotificationsSection:
case VoipSection:
case EncryptionSection:
case LoginInfoSection:
return SectionTitle;
case SessionKeys:
return SessionKeyImportExport;
case CrossSigningSecrets:
return XSignKeysRequestDownload;
case OnlineBackupKey:
case SelfSigningKey:
case UserSigningKey:
case MasterKey:
return KeyStatus;
}
} else if (role == ValueLowerBound) {
switch (index.row()) {
case TimelineMaxWidth:
return 0;
case PrivacyScreenTimeout:
return 0;
case FontSize:
return 8.0;
case ScaleFactor:
return 1.0;
}
} else if (role == ValueUpperBound) {
switch (index.row()) {
case TimelineMaxWidth:
return 20000;
case PrivacyScreenTimeout:
return 3600;
case FontSize:
return 24.0;
case ScaleFactor:
return 3.0;
}
} else if (role == ValueStep) {
switch (index.row()) {
case TimelineMaxWidth:
return 20;
case PrivacyScreenTimeout:
return 10;
case FontSize:
return 0.5;
case ScaleFactor:
return .25;
}
} else if (role == Values) {
auto vecToList = [](const std::vector<std::string> &vec) {
QStringList l;
for (const auto &d : vec)
l.push_back(QString::fromStdString(d));
return l;
};
static QFontDatabase fontDb;
switch (index.row()) {
case Theme:
return QStringList{
QStringLiteral("Light"),
QStringLiteral("Dark"),
QStringLiteral("System"),
};
case Microphone:
return vecToList(CallDevices::instance().names(false, i->microphone().toStdString()));
case Camera:
return vecToList(CallDevices::instance().names(true, i->camera().toStdString()));
case CameraResolution:
return vecToList(CallDevices::instance().resolutions(i->camera().toStdString()));
case CameraFrameRate:
return vecToList(CallDevices::instance().frameRates(
i->camera().toStdString(), i->cameraResolution().toStdString()));
case Font:
return fontDb.families();
case EmojiFont:
return fontDb.families(QFontDatabase::WritingSystem::Symbol);
case Ringtone:
QStringList l{
QStringLiteral("Mute"),
QStringLiteral("Default"),
QStringLiteral("Other"),
};
if (!l.contains(i->ringtone()))
l.push_back(i->ringtone());
return l;
}
} else if (role == Good) {
switch (index.row()) {
case OnlineBackupKey:
return cache::secret(mtx::secret_storage::secrets::megolm_backup_v1).has_value();
case SelfSigningKey:
return cache::secret(mtx::secret_storage::secrets::cross_signing_self_signing)
.has_value();
case UserSigningKey:
return cache::secret(mtx::secret_storage::secrets::cross_signing_user_signing)
.has_value();
case MasterKey:
return true;
}
} else if (role == Enabled) {
switch (index.row()) {
case StartInTray:
return i->tray();
case PrivacyScreenTimeout:
return i->privacyScreen();
case UseIdenticon:
return JdenticonProvider::isAvailable();
default:
return true;
}
}
2017-11-01 23:41:13 +01:00
2022-01-09 00:28:03 +01:00
return {};
2017-11-01 23:41:13 +01:00
}
2017-11-09 21:04:40 +01:00
2022-01-09 00:28:03 +01:00
bool
UserSettingsModel::setData(const QModelIndex &index, const QVariant &value, int role)
{
2022-01-09 00:28:03 +01:00
static QFontDatabase fontDb;
auto i = UserSettings::instance();
if (role == Value) {
switch (index.row()) {
case Theme: {
if (value == 0) {
i->setTheme("light");
return true;
} else if (value == 1) {
i->setTheme("dark");
return true;
} else if (value == 2) {
i->setTheme("system");
return true;
} else
return false;
}
case MessageHoverHighlight: {
if (value.userType() == QMetaType::Bool) {
i->setMessageHoverHighlight(value.toBool());
return true;
} else
return false;
}
case ScaleFactor: {
if (value.canConvert(QMetaType::Double)) {
2022-01-09 00:28:03 +01:00
utils::setScaleFactor(static_cast<float>(value.toDouble()));
return true;
} else
return false;
}
case EnlargeEmojiOnlyMessages: {
if (value.userType() == QMetaType::Bool) {
i->setEnlargeEmojiOnlyMessages(value.toBool());
return true;
} else
return false;
}
case Tray: {
if (value.userType() == QMetaType::Bool) {
i->setTray(value.toBool());
return true;
} else
return false;
}
case StartInTray: {
if (value.userType() == QMetaType::Bool) {
i->setStartInTray(value.toBool());
return true;
} else
return false;
}
case GroupView: {
if (value.userType() == QMetaType::Bool) {
i->setGroupView(value.toBool());
return true;
} else
return false;
}
case Markdown: {
if (value.userType() == QMetaType::Bool) {
i->setMarkdown(value.toBool());
return true;
} else
return false;
}
2022-02-04 23:12:30 +01:00
case Bubbles: {
if (value.userType() == QMetaType::Bool) {
i->setBubbles(value.toBool());
return true;
} else
return false;
}
case SmallAvatars: {
if (value.userType() == QMetaType::Bool) {
i->setSmallAvatars(value.toBool());
return true;
} else
return false;
}
2022-01-09 00:28:03 +01:00
case AnimateImagesOnHover: {
if (value.userType() == QMetaType::Bool) {
i->setAnimateImagesOnHover(value.toBool());
return true;
} else
return false;
}
case TypingNotifications: {
if (value.userType() == QMetaType::Bool) {
i->setTypingNotifications(value.toBool());
return true;
} else
return false;
}
case SortByImportance: {
if (value.userType() == QMetaType::Bool) {
i->setSortByImportance(value.toBool());
return true;
} else
return false;
}
case ButtonsInTimeline: {
if (value.userType() == QMetaType::Bool) {
i->setButtonsInTimeline(value.toBool());
return true;
} else
return false;
}
case TimelineMaxWidth: {
if (value.canConvert(QMetaType::Int)) {
2022-01-09 00:28:03 +01:00
i->setTimelineMaxWidth(value.toInt());
return true;
} else
return false;
}
case ReadReceipts: {
if (value.userType() == QMetaType::Bool) {
i->setReadReceipts(value.toBool());
return true;
} else
return false;
}
case DesktopNotifications: {
if (value.userType() == QMetaType::Bool) {
i->setDesktopNotifications(value.toBool());
return true;
} else
return false;
}
case AlertOnNotification: {
if (value.userType() == QMetaType::Bool) {
i->setAlertOnNotification(value.toBool());
return true;
} else
return false;
}
case AvatarCircles: {
if (value.userType() == QMetaType::Bool) {
i->setAvatarCircles(value.toBool());
return true;
} else
return false;
}
case UseIdenticon: {
if (value.userType() == QMetaType::Bool) {
i->setUseIdenticon(value.toBool());
return true;
} else
return false;
}
case OpenImageExternal: {
if (value.userType() == QMetaType::Bool) {
i->setOpenImageExternal(value.toBool());
return true;
} else
return false;
}
case OpenVideoExternal: {
if (value.userType() == QMetaType::Bool) {
i->setOpenVideoExternal(value.toBool());
return true;
} else
return false;
}
2022-01-09 00:28:03 +01:00
case DecryptSidebar: {
if (value.userType() == QMetaType::Bool) {
i->setDecryptSidebar(value.toBool());
return true;
} else
return false;
}
return i->decryptSidebar();
case PrivacyScreen: {
if (value.userType() == QMetaType::Bool) {
i->setPrivacyScreen(value.toBool());
return true;
} else
return false;
}
case PrivacyScreenTimeout: {
if (value.canConvert(QMetaType::Int)) {
2022-01-09 00:28:03 +01:00
i->setPrivacyScreenTimeout(value.toInt());
return true;
} else
return false;
}
case MobileMode: {
if (value.userType() == QMetaType::Bool) {
i->setMobileMode(value.toBool());
return true;
} else
return false;
}
case FontSize: {
if (value.canConvert(QMetaType::Double)) {
i->setFontSize(value.toDouble());
2022-01-09 00:28:03 +01:00
return true;
} else
return false;
}
case Font: {
if (value.userType() == QMetaType::Int) {
i->setFontFamily(fontDb.families().at(value.toInt()));
return true;
} else
return false;
}
case EmojiFont: {
2022-02-12 23:06:45 +01:00
if (value.userType() == QMetaType::Int) {
i->setEmojiFontFamily(
2022-01-09 00:28:03 +01:00
fontDb.families(QFontDatabase::WritingSystem::Symbol).at(value.toInt()));
return true;
} else
return false;
}
case Ringtone: {
if (value.userType() == QMetaType::Int) {
int ringtone = value.toInt();
// setRingtone is called twice, because updating the list breaks the set value,
// because it does not exist yet!
if (ringtone == 2) {
QString homeFolder =
QStandardPaths::writableLocation(QStandardPaths::HomeLocation);
auto filepath = QFileDialog::getOpenFileName(
2022-01-12 19:09:46 +01:00
nullptr, tr("Select a file"), homeFolder, tr("All Files (*)"));
2022-01-09 00:28:03 +01:00
if (!filepath.isEmpty()) {
i->setRingtone(filepath);
i->setRingtone(filepath);
}
} else if (ringtone == 0) {
i->setRingtone(QStringLiteral("Mute"));
i->setRingtone(QStringLiteral("Mute"));
} else if (ringtone == 1) {
i->setRingtone(QStringLiteral("Default"));
i->setRingtone(QStringLiteral("Default"));
}
return true;
}
return false;
}
case Microphone: {
if (value.userType() == QMetaType::Int) {
i->setMicrophone(data(index, Values).toStringList().at(value.toInt()));
return true;
} else
return false;
}
case Camera: {
if (value.userType() == QMetaType::Int) {
i->setCamera(data(index, Values).toStringList().at(value.toInt()));
return true;
} else
return false;
}
case CameraResolution: {
if (value.userType() == QMetaType::Int) {
i->setCameraResolution(data(index, Values).toStringList().at(value.toInt()));
return true;
} else
return false;
}
case CameraFrameRate: {
if (value.userType() == QMetaType::Int) {
i->setCameraFrameRate(data(index, Values).toStringList().at(value.toInt()));
return true;
} else
return false;
}
case UseStunServer: {
if (value.userType() == QMetaType::Bool) {
i->setUseStunServer(value.toBool());
return true;
} else
return false;
}
case OnlyShareKeysWithVerifiedUsers: {
if (value.userType() == QMetaType::Bool) {
i->setOnlyShareKeysWithVerifiedUsers(value.toBool());
return true;
} else
return false;
}
case ShareKeysWithTrustedUsers: {
if (value.userType() == QMetaType::Bool) {
i->setShareKeysWithTrustedUsers(value.toBool());
return true;
} else
return false;
}
case UseOnlineKeyBackup: {
if (value.userType() == QMetaType::Bool) {
i->setUseOnlineKeyBackup(value.toBool());
return true;
} else
return false;
}
case ExposeDBusApi: {
if (value.userType() == QMetaType::Bool) {
i->setExposeDBusApi(value.toBool());
return true;
} else
return false;
}
2022-01-09 00:28:03 +01:00
}
}
return false;
}
2017-11-25 17:19:58 +01:00
void
2022-01-09 00:28:03 +01:00
UserSettingsModel::importSessionKeys()
{
2021-09-18 00:22:33 +02:00
const QString homeFolder = QStandardPaths::writableLocation(QStandardPaths::HomeLocation);
2022-01-09 00:28:03 +01:00
const QString fileName = QFileDialog::getOpenFileName(
2022-01-12 19:09:46 +01:00
nullptr, tr("Open Sessions File"), homeFolder, QLatin1String(""));
2021-09-18 00:22:33 +02:00
QFile file(fileName);
if (!file.open(QIODevice::ReadOnly)) {
2022-01-12 19:09:46 +01:00
QMessageBox::warning(nullptr, tr("Error"), file.errorString());
2021-09-18 00:22:33 +02:00
return;
}
auto bin = file.peek(file.size());
auto payload = std::string(bin.data(), bin.size());
bool ok;
2022-01-12 19:09:46 +01:00
auto password = QInputDialog::getText(nullptr,
2021-09-18 00:22:33 +02:00
tr("File Password"),
tr("Enter the passphrase to decrypt the file:"),
QLineEdit::Password,
QLatin1String(""),
2021-09-18 00:22:33 +02:00
&ok);
if (!ok)
return;
if (password.isEmpty()) {
2022-01-12 19:09:46 +01:00
QMessageBox::warning(nullptr, tr("Error"), tr("The password cannot be empty"));
2021-09-18 00:22:33 +02:00
return;
}
try {
auto sessions = mtx::crypto::decrypt_exported_sessions(payload, password.toStdString());
cache::importSessionKeys(std::move(sessions));
} catch (const std::exception &e) {
2022-01-12 19:09:46 +01:00
QMessageBox::warning(nullptr, tr("Error"), e.what());
2021-09-18 00:22:33 +02:00
}
}
void
2022-01-09 00:28:03 +01:00
UserSettingsModel::exportSessionKeys()
{
2021-09-18 00:22:33 +02:00
// Open password dialog.
bool ok;
2022-01-12 19:09:46 +01:00
auto password = QInputDialog::getText(nullptr,
2021-09-18 00:22:33 +02:00
tr("File Password"),
tr("Enter passphrase to encrypt your session keys:"),
QLineEdit::Password,
QLatin1String(""),
2021-09-18 00:22:33 +02:00
&ok);
if (!ok)
return;
if (password.isEmpty()) {
2022-01-12 19:09:46 +01:00
QMessageBox::warning(nullptr, tr("Error"), tr("The password cannot be empty"));
2021-09-18 00:22:33 +02:00
return;
}
// Open file dialog to save the file.
const QString homeFolder = QStandardPaths::writableLocation(QStandardPaths::HomeLocation);
2022-01-09 00:28:03 +01:00
const QString fileName = QFileDialog::getSaveFileName(
2022-01-12 19:09:46 +01:00
nullptr, tr("File to save the exported session keys"), homeFolder);
2021-09-18 00:22:33 +02:00
QFile file(fileName);
if (!file.open(QIODevice::WriteOnly | QIODevice::Text)) {
2022-01-12 19:09:46 +01:00
QMessageBox::warning(nullptr, tr("Error"), file.errorString());
2021-09-18 00:22:33 +02:00
return;
}
// Export sessions & save to file.
try {
auto encrypted_blob = mtx::crypto::encrypt_exported_sessions(cache::exportSessionKeys(),
password.toStdString());
QString b64 = QString::fromStdString(mtx::crypto::bin2base64(encrypted_blob));
QString prefix(QStringLiteral("-----BEGIN MEGOLM SESSION DATA-----"));
QString suffix(QStringLiteral("-----END MEGOLM SESSION DATA-----"));
QString newline(QStringLiteral("\n"));
2021-09-18 00:22:33 +02:00
QTextStream out(&file);
out << prefix << newline << b64 << newline << suffix << newline;
file.close();
} catch (const std::exception &e) {
2022-01-12 19:09:46 +01:00
QMessageBox::warning(nullptr, tr("Error"), e.what());
2021-09-18 00:22:33 +02:00
}
}
2020-12-16 22:10:09 +01:00
void
2022-01-09 00:28:03 +01:00
UserSettingsModel::requestCrossSigningSecrets()
{
olm::request_cross_signing_keys();
}
void
UserSettingsModel::downloadCrossSigningSecrets()
{
olm::download_cross_signing_keys();
}
UserSettingsModel::UserSettingsModel(QObject *p)
: QAbstractListModel(p)
{
auto s = UserSettings::instance();
connect(s.get(), &UserSettings::themeChanged, this, [this]() {
emit dataChanged(index(Theme), index(Theme), {Value});
});
connect(s.get(), &UserSettings::mobileModeChanged, this, [this]() {
emit dataChanged(index(MobileMode), index(MobileMode), {Value});
});
connect(s.get(), &UserSettings::fontChanged, this, [this]() {
emit dataChanged(index(Font), index(Font), {Value});
});
connect(s.get(), &UserSettings::fontSizeChanged, this, [this]() {
emit dataChanged(index(FontSize), index(FontSize), {Value});
});
connect(s.get(), &UserSettings::emojiFontChanged, this, [this]() {
emit dataChanged(index(EmojiFont), index(EmojiFont), {Value});
});
connect(s.get(), &UserSettings::avatarCirclesChanged, this, [this]() {
emit dataChanged(index(AvatarCircles), index(AvatarCircles), {Value});
});
connect(s.get(), &UserSettings::useIdenticonChanged, this, [this]() {
emit dataChanged(index(UseIdenticon), index(UseIdenticon), {Value});
});
connect(s.get(), &UserSettings::openImageExternalChanged, this, [this]() {
emit dataChanged(index(OpenImageExternal), index(OpenImageExternal), {Value});
});
connect(s.get(), &UserSettings::openVideoExternalChanged, this, [this]() {
emit dataChanged(index(OpenVideoExternal), index(OpenVideoExternal), {Value});
});
2022-01-09 00:28:03 +01:00
connect(s.get(), &UserSettings::privacyScreenChanged, this, [this]() {
emit dataChanged(index(PrivacyScreen), index(PrivacyScreen), {Value});
emit dataChanged(index(PrivacyScreenTimeout), index(PrivacyScreenTimeout), {Enabled});
});
connect(s.get(), &UserSettings::privacyScreenTimeoutChanged, this, [this]() {
emit dataChanged(index(PrivacyScreenTimeout), index(PrivacyScreenTimeout), {Value});
});
connect(s.get(), &UserSettings::timelineMaxWidthChanged, this, [this]() {
emit dataChanged(index(TimelineMaxWidth), index(TimelineMaxWidth), {Value});
});
connect(s.get(), &UserSettings::messageHoverHighlightChanged, this, [this]() {
emit dataChanged(index(MessageHoverHighlight), index(MessageHoverHighlight), {Value});
});
connect(s.get(), &UserSettings::enlargeEmojiOnlyMessagesChanged, this, [this]() {
emit dataChanged(index(EnlargeEmojiOnlyMessages), index(EnlargeEmojiOnlyMessages), {Value});
});
connect(s.get(), &UserSettings::animateImagesOnHoverChanged, this, [this]() {
emit dataChanged(index(AnimateImagesOnHover), index(AnimateImagesOnHover), {Value});
});
connect(s.get(), &UserSettings::typingNotificationsChanged, this, [this]() {
emit dataChanged(index(TypingNotifications), index(TypingNotifications), {Value});
});
connect(s.get(), &UserSettings::readReceiptsChanged, this, [this]() {
emit dataChanged(index(ReadReceipts), index(ReadReceipts), {Value});
});
connect(s.get(), &UserSettings::buttonInTimelineChanged, this, [this]() {
emit dataChanged(index(ButtonsInTimeline), index(ButtonsInTimeline), {Value});
});
connect(s.get(), &UserSettings::markdownChanged, this, [this]() {
emit dataChanged(index(Markdown), index(Markdown), {Value});
});
2022-02-04 23:12:30 +01:00
connect(s.get(), &UserSettings::bubblesChanged, this, [this]() {
emit dataChanged(index(Bubbles), index(Bubbles), {Value});
});
connect(s.get(), &UserSettings::smallAvatarsChanged, this, [this]() {
emit dataChanged(index(SmallAvatars), index(SmallAvatars), {Value});
});
2022-01-09 00:28:03 +01:00
connect(s.get(), &UserSettings::groupViewStateChanged, this, [this]() {
emit dataChanged(index(GroupView), index(GroupView), {Value});
});
connect(s.get(), &UserSettings::roomSortingChanged, this, [this]() {
emit dataChanged(index(SortByImportance), index(SortByImportance), {Value});
});
connect(s.get(), &UserSettings::decryptSidebarChanged, this, [this]() {
emit dataChanged(index(DecryptSidebar), index(DecryptSidebar), {Value});
});
connect(s.get(), &UserSettings::trayChanged, this, [this]() {
emit dataChanged(index(Tray), index(Tray), {Value});
emit dataChanged(index(StartInTray), index(StartInTray), {Enabled});
});
connect(s.get(), &UserSettings::startInTrayChanged, this, [this]() {
emit dataChanged(index(StartInTray), index(StartInTray), {Value});
});
connect(s.get(), &UserSettings::desktopNotificationsChanged, this, [this]() {
emit dataChanged(index(DesktopNotifications), index(DesktopNotifications), {Value});
});
connect(s.get(), &UserSettings::alertOnNotificationChanged, this, [this]() {
emit dataChanged(index(AlertOnNotification), index(AlertOnNotification), {Value});
});
connect(s.get(), &UserSettings::useStunServerChanged, this, [this]() {
emit dataChanged(index(UseStunServer), index(UseStunServer), {Value});
});
connect(s.get(), &UserSettings::microphoneChanged, this, [this]() {
emit dataChanged(index(Microphone), index(Microphone), {Value, Values});
});
connect(s.get(), &UserSettings::cameraChanged, this, [this]() {
emit dataChanged(index(Camera), index(Camera), {Value, Values});
});
connect(s.get(), &UserSettings::cameraResolutionChanged, this, [this]() {
emit dataChanged(index(CameraResolution), index(CameraResolution), {Value, Values});
});
connect(s.get(), &UserSettings::cameraFrameRateChanged, this, [this]() {
emit dataChanged(index(CameraFrameRate), index(CameraFrameRate), {Value, Values});
});
connect(s.get(), &UserSettings::ringtoneChanged, this, [this]() {
emit dataChanged(index(Ringtone), index(Ringtone), {Values, Value});
});
connect(s.get(), &UserSettings::onlyShareKeysWithVerifiedUsersChanged, this, [this]() {
emit dataChanged(
index(OnlyShareKeysWithVerifiedUsers), index(OnlyShareKeysWithVerifiedUsers), {Value});
});
connect(s.get(), &UserSettings::shareKeysWithTrustedUsersChanged, this, [this]() {
emit dataChanged(
index(ShareKeysWithTrustedUsers), index(ShareKeysWithTrustedUsers), {Value});
});
connect(s.get(), &UserSettings::useOnlineKeyBackupChanged, this, [this]() {
emit dataChanged(index(UseOnlineKeyBackup), index(UseOnlineKeyBackup), {Value});
});
connect(MainWindow::instance(), &MainWindow::secretsChanged, this, [this]() {
emit dataChanged(index(OnlineBackupKey), index(MasterKey), {Value, Good});
});
connect(s.get(), &UserSettings::exposeDBusApiChanged, this, [this] {
emit dataChanged(index(ExposeDBusApi), index(ExposeDBusApi), {Value});
});
2020-12-16 22:10:09 +01:00
}