nheko/src/UserSettingsPage.h

166 lines
4.4 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>
2017-11-01 23:41:13 +01:00
#include <QFrame>
#include <QLabel>
2017-11-01 23:41:13 +01:00
#include <QLayout>
#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 setGroupView(bool state)
{
if (isGroupViewEnabled_ != state)
emit groupViewStateChanged(state);
isGroupViewEnabled_ = state;
save();
}
void setReadReceipts(bool state)
{
isReadReceiptsEnabled_ = state;
save();
}
void setTypingNotifications(bool state)
{
isTypingNotificationsEnabled_ = state;
save();
}
void setDesktopNotifications(bool state)
{
hasDesktopNotifications_ = state;
save();
}
2017-11-25 17:19:58 +01:00
QString theme() const { return !theme_.isEmpty() ? theme_ : "light"; }
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_; }
bool isTypingNotificationsEnabled() const { return isTypingNotificationsEnabled_; }
bool isReadReceiptsEnabled() const { return isReadReceiptsEnabled_; }
bool hasDesktopNotifications() const { return hasDesktopNotifications_; }
double fontSize() const { return baseFontSize_; }
QString font() const { return font_; }
signals:
void groupViewStateChanged(bool state);
2017-11-01 23:41:13 +01:00
private:
QString theme_;
bool isTrayEnabled_;
2018-05-08 22:53:40 +02:00
bool isStartInTrayEnabled_;
bool isGroupViewEnabled_;
bool isTypingNotificationsEnabled_;
bool isReadReceiptsEnabled_;
bool hasDesktopNotifications_;
double baseFontSize_;
QString font_;
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:
UserSettingsPage(QSharedPointer<UserSettings> settings, QWidget *parent = 0);
protected:
void showEvent(QShowEvent *event) override;
2017-11-09 21:04:40 +01:00
void resizeEvent(QResizeEvent *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_;
2017-11-09 21:04:40 +01:00
QVBoxLayout *mainLayout_;
2017-11-01 23:41:13 +01:00
QHBoxLayout *topBarLayout_;
// Shared settings object.
QSharedPointer<UserSettings> settings_;
Toggle *trayToggle_;
2018-05-08 22:53:40 +02:00
Toggle *startInTrayToggle_;
Toggle *groupViewToggle_;
Toggle *typingNotifications_;
Toggle *readReceipts_;
Toggle *desktopNotifications_;
QLabel *deviceFingerprintValue_;
QLabel *deviceIdValue_;
2017-11-01 23:41:13 +01:00
QComboBox *themeCombo_;
QComboBox *scaleFactorCombo_;
QComboBox *fontSizeCombo_;
QComboBox *fontSelectionCombo_;
2017-11-09 21:04:40 +01:00
int sideMargin_ = 0;
2017-11-01 23:41:13 +01:00
};