nheko/src/UserSettingsPage.h

203 lines
5.7 KiB
C
Raw Normal View History

2017-11-01 23:41:13 +01:00
/*
* nheko Copyright (C) 2017 Konstantinos Sideris <siderisk@auth.gr>
*
* 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 <QComboBox>
#include <QFontDatabase>
#include <QFormLayout>
2017-11-01 23:41:13 +01:00
#include <QFrame>
#include <QLabel>
2017-11-01 23:41:13 +01:00
#include <QLayout>
2019-08-10 19:20:13 +02:00
#include <QProcessEnvironment>
2017-11-01 23:41:13 +01:00
#include <QSharedPointer>
#include <QWidget>
class Toggle;
2017-11-09 21:04:40 +01:00
constexpr int OptionMargin = 6;
constexpr int LayoutTopMargin = 50;
constexpr int LayoutBottomMargin = LayoutTopMargin;
2017-11-01 23:41:13 +01:00
class UserSettings : public QObject
2017-11-01 23:41:13 +01:00
{
Q_OBJECT
2017-11-01 23:41:13 +01:00
public:
UserSettings();
void save();
void load();
2017-11-25 21:47:06 +01:00
void applyTheme();
void setTheme(QString theme);
void setTray(bool state)
{
isTrayEnabled_ = state;
save();
}
2018-05-08 22:53:40 +02:00
void setStartInTray(bool state)
{
isStartInTrayEnabled_ = state;
save();
}
2018-05-08 22:53:40 +02:00
void setFontSize(double size);
void setFontFamily(QString family);
void setEmojiFontFamily(QString family);
void setGroupView(bool state)
{
if (isGroupViewEnabled_ != state)
emit groupViewStateChanged(state);
isGroupViewEnabled_ = state;
save();
}
2020-01-27 15:59:25 +01:00
void setMarkdownEnabled(bool state)
{
isMarkdownEnabled_ = state;
save();
}
void setReadReceipts(bool state)
{
isReadReceiptsEnabled_ = state;
save();
}
void setTypingNotifications(bool state)
{
isTypingNotificationsEnabled_ = state;
save();
}
void setIgnoreMinorEvents(bool state)
{
ignoreMinorEvents_ = state;
save();
}
void setDesktopNotifications(bool state)
{
hasDesktopNotifications_ = state;
save();
}
void setAvatarCircles(bool state)
{
avatarCircles_ = state;
save();
}
QString theme() const { return !theme_.isEmpty() ? theme_ : defaultTheme_; }
2017-11-01 23:41:13 +01:00
bool isTrayEnabled() const { return isTrayEnabled_; }
2018-05-08 22:53:40 +02:00
bool isStartInTrayEnabled() const { return isStartInTrayEnabled_; }
bool isGroupViewEnabled() const { return isGroupViewEnabled_; }
2020-01-27 15:59:25 +01:00
bool isAvatarCirclesEnabled() const { return avatarCircles_; }
bool isMarkdownEnabled() const { return isMarkdownEnabled_; }
bool isTypingNotificationsEnabled() const { return isTypingNotificationsEnabled_; }
bool isIgnoreMinorEventsEnabled() const { return ignoreMinorEvents_; }
bool isReadReceiptsEnabled() const { return isReadReceiptsEnabled_; }
bool hasDesktopNotifications() const { return hasDesktopNotifications_; }
double fontSize() const { return baseFontSize_; }
QString font() const { return font_; }
QString emojiFont() const { return emojiFont_; }
signals:
void groupViewStateChanged(bool state);
2017-11-01 23:41:13 +01:00
private:
// Default to system theme if QT_QPA_PLATFORMTHEME var is set.
QString defaultTheme_ =
QProcessEnvironment::systemEnvironment().value("QT_QPA_PLATFORMTHEME", "").isEmpty()
? "light"
: "system";
2017-11-01 23:41:13 +01:00
QString theme_;
bool isTrayEnabled_;
2018-05-08 22:53:40 +02:00
bool isStartInTrayEnabled_;
bool isGroupViewEnabled_;
2020-01-27 15:59:25 +01:00
bool isMarkdownEnabled_;
bool isTypingNotificationsEnabled_;
bool ignoreMinorEvents_;
bool isReadReceiptsEnabled_;
bool hasDesktopNotifications_;
2019-08-29 06:36:28 +02:00
bool avatarCircles_;
double baseFontSize_;
QString font_;
QString emojiFont_;
2017-11-01 23:41:13 +01:00
};
class HorizontalLine : public QFrame
{
Q_OBJECT
public:
HorizontalLine(QWidget *parent = nullptr);
};
class UserSettingsPage : public QWidget
{
Q_OBJECT
public:
2020-02-04 04:58:43 +01:00
UserSettingsPage(QSharedPointer<UserSettings> settings, QWidget *parent = nullptr);
2017-11-01 23:41:13 +01:00
protected:
void showEvent(QShowEvent *event) override;
2017-11-22 20:13:22 +01:00
void paintEvent(QPaintEvent *event) override;
2017-11-01 23:41:13 +01:00
signals:
void moveBack();
void trayOptionChanged(bool value);
void themeChanged();
2017-11-01 23:41:13 +01:00
private slots:
void importSessionKeys();
void exportSessionKeys();
2017-11-01 23:41:13 +01:00
private:
// Layouts
QVBoxLayout *topLayout_;
QHBoxLayout *topBarLayout_;
QFormLayout *formLayout_;
2017-11-01 23:41:13 +01:00
// Shared settings object.
QSharedPointer<UserSettings> settings_;
Toggle *trayToggle_;
2018-05-08 22:53:40 +02:00
Toggle *startInTrayToggle_;
Toggle *groupViewToggle_;
Toggle *typingNotifications_;
Toggle *ignoreMinorEvents_;
Toggle *readReceipts_;
2020-01-27 15:59:25 +01:00
Toggle *markdownEnabled_;
Toggle *desktopNotifications_;
2019-08-29 06:36:28 +02:00
Toggle *avatarCircles_;
QLabel *deviceFingerprintValue_;
QLabel *deviceIdValue_;
2017-11-01 23:41:13 +01:00
QComboBox *themeCombo_;
QComboBox *scaleFactorCombo_;
QComboBox *fontSizeCombo_;
QComboBox *fontSelectionCombo_;
QComboBox *emojiFontSelectionCombo_;
2017-11-09 21:04:40 +01:00
int sideMargin_ = 0;
2017-11-01 23:41:13 +01:00
};