2017-01-05 20:49:13 +01:00
|
|
|
#ifndef APPSETTINGS_H
|
|
|
|
#define APPSETTINGS_H
|
|
|
|
|
2017-01-18 21:30:23 +01:00
|
|
|
#include "messages/word.h"
|
2017-01-23 16:38:06 +01:00
|
|
|
#include "setting.h"
|
2017-01-24 19:51:57 +01:00
|
|
|
#include "settingssnapshot.h"
|
2017-01-20 06:10:28 +01:00
|
|
|
|
|
|
|
#include <QSettings>
|
2017-01-05 20:49:13 +01:00
|
|
|
|
2017-01-18 21:30:23 +01:00
|
|
|
namespace chatterino {
|
|
|
|
|
2017-04-12 17:46:44 +02:00
|
|
|
class SettingsManager : public QObject
|
2017-01-05 20:49:13 +01:00
|
|
|
{
|
2017-01-22 12:46:35 +01:00
|
|
|
Q_OBJECT
|
|
|
|
|
2017-01-20 06:10:28 +01:00
|
|
|
public:
|
2017-01-22 23:00:35 +01:00
|
|
|
Setting<QString> theme;
|
2017-02-02 01:23:26 +01:00
|
|
|
Setting<float> themeHue;
|
2017-01-24 19:51:57 +01:00
|
|
|
Setting<QString> selectedUser;
|
2017-01-22 23:00:35 +01:00
|
|
|
Setting<float> emoteScale;
|
2017-01-26 04:26:40 +01:00
|
|
|
Setting<float> mouseScrollMultiplier;
|
2017-01-22 23:00:35 +01:00
|
|
|
Setting<bool> scaleEmotesByLineHeight;
|
|
|
|
Setting<bool> showTimestamps;
|
|
|
|
Setting<bool> showTimestampSeconds;
|
|
|
|
Setting<bool> showLastMessageIndicator;
|
|
|
|
Setting<bool> allowDouplicateMessages;
|
|
|
|
Setting<bool> linksDoubleClickOnly;
|
|
|
|
Setting<bool> hideEmptyInput;
|
|
|
|
Setting<bool> showMessageLength;
|
|
|
|
Setting<bool> seperateMessages;
|
|
|
|
Setting<bool> mentionUsersWithAt;
|
|
|
|
Setting<bool> allowCommandsAtEnd;
|
|
|
|
Setting<bool> enableHighlights;
|
|
|
|
Setting<bool> enableHighlightSound;
|
|
|
|
Setting<bool> enableHighlightTaskbar;
|
|
|
|
Setting<bool> customHighlightSound;
|
|
|
|
Setting<bool> enableTwitchEmotes;
|
|
|
|
Setting<bool> enableBttvEmotes;
|
|
|
|
Setting<bool> enableFfzEmotes;
|
|
|
|
Setting<bool> enableEmojis;
|
|
|
|
Setting<bool> enableGifAnimations;
|
|
|
|
Setting<bool> enableGifs;
|
|
|
|
Setting<bool> inlineWhispers;
|
|
|
|
Setting<bool> windowTopMost;
|
|
|
|
Setting<bool> hideTabX;
|
2017-02-02 02:46:33 +01:00
|
|
|
Setting<bool> hidePreferencesButton;
|
|
|
|
Setting<bool> hideUserButton;
|
2017-04-12 17:46:44 +02:00
|
|
|
Setting<bool> useCustomWindowFrame;
|
|
|
|
|
|
|
|
void load();
|
|
|
|
void save();
|
|
|
|
|
|
|
|
messages::Word::Type getWordTypeMask();
|
|
|
|
bool isIgnoredEmote(const QString &emote);
|
|
|
|
QSettings &getQSettings();
|
|
|
|
SettingsSnapshot createSnapshot();
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void wordTypeMaskChanged();
|
|
|
|
|
|
|
|
private:
|
|
|
|
SettingsManager();
|
|
|
|
|
|
|
|
// variables
|
|
|
|
QSettings _settings;
|
|
|
|
std::vector<std::reference_wrapper<BaseSetting>> _settingsItems;
|
|
|
|
messages::Word::Type _wordTypeMask;
|
|
|
|
|
|
|
|
// methods
|
|
|
|
void updateWordTypeMask();
|
|
|
|
|
|
|
|
public:
|
|
|
|
static SettingsManager &getInstance()
|
|
|
|
{
|
|
|
|
return instance;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
static SettingsManager instance;
|
2017-01-05 20:49:13 +01:00
|
|
|
};
|
2017-01-22 23:00:35 +01:00
|
|
|
|
2017-04-14 17:52:22 +02:00
|
|
|
} // namespace chatterino
|
2017-01-05 20:49:13 +01:00
|
|
|
|
2017-01-11 18:52:09 +01:00
|
|
|
#endif // APPSETTINGS_H
|