nheko/include/UserSettingsPage.h

131 lines
3.3 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 <QFrame>
#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();
};
void setRoomOrdering(bool state)
{
isOrderingEnabled_ = state;
save();
};
2017-11-01 23:41:13 +01:00
void setGroupView(bool state)
{
if (isGroupViewEnabled_ != state)
emit groupViewStateChanged(state);
isGroupViewEnabled_ = state;
save();
};
void setTypingNotifications(bool state)
{
isTypingNotificationsEnabled_ = 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_; }
bool isOrderingEnabled() const { return isOrderingEnabled_; }
bool isGroupViewEnabled() const { return isGroupViewEnabled_; }
bool isTypingNotificationsEnabled() const { return isTypingNotificationsEnabled_; }
signals:
void groupViewStateChanged(bool state);
2017-11-01 23:41:13 +01:00
private:
QString theme_;
bool isTrayEnabled_;
bool isOrderingEnabled_;
bool isGroupViewEnabled_;
bool isTypingNotificationsEnabled_;
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);
2017-11-01 23:41:13 +01:00
private:
2017-11-25 17:19:58 +01:00
void restoreThemeCombo() const;
2017-11-01 23:41:13 +01:00
// 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_;
Toggle *roomOrderToggle_;
Toggle *groupViewToggle_;
Toggle *typingNotifications_;
2017-11-01 23:41:13 +01:00
QComboBox *themeCombo_;
2017-11-09 21:04:40 +01:00
int sideMargin_ = 0;
2017-11-01 23:41:13 +01:00
};