mirror-chatterino2/src/singletons/Settings.hpp

170 lines
7 KiB
C++
Raw Normal View History

#pragma once
2017-01-05 20:49:13 +01:00
2018-08-02 14:23:27 +02:00
#include "Paths.hpp"
#include "common/ChatterinoSetting.hpp"
2018-06-26 14:09:39 +02:00
#include "controllers/highlights/HighlightPhrase.hpp"
#include "controllers/moderationactions/ModerationAction.hpp"
2017-01-20 06:10:28 +01:00
#include <pajlada/settings/setting.hpp>
#include <pajlada/settings/settinglistener.hpp>
2017-01-05 20:49:13 +01:00
2017-01-18 21:30:23 +01:00
namespace chatterino {
2018-08-06 21:17:03 +02:00
void _actuallyRegisterSetting(
std::weak_ptr<pajlada::Settings::ISettingData> setting);
2018-06-28 19:51:07 +02:00
class Settings
2017-01-05 20:49:13 +01:00
{
2018-08-02 14:23:27 +02:00
static Settings *instance;
public:
2018-08-02 14:23:27 +02:00
Settings(Paths &paths);
2017-05-27 16:16:39 +02:00
2018-08-02 14:23:27 +02:00
static Settings &getInstance();
/// Appearance
BoolSetting showTimestamps = {"/appearance/messages/showTimestamps", true};
2018-08-15 23:48:16 +02:00
BoolSetting enableAnimationsWhenFocused = {
"/appearance/enableAnimationsWhenFocused", false};
2018-08-06 21:17:03 +02:00
QStringSetting timestampFormat = {"/appearance/messages/timestampFormat",
"h:mm"};
BoolSetting showBadges = {"/appearance/messages/showBadges", true};
2018-08-06 21:17:03 +02:00
BoolSetting showLastMessageIndicator = {
"/appearance/messages/showLastMessageIndicator", false};
IntSetting lastMessagePattern = {"/appearance/messages/lastMessagePattern",
Qt::VerPattern};
2018-07-05 18:17:12 +02:00
BoolSetting showEmptyInput = {"/appearance/showEmptyInputBox", true};
2018-08-06 21:17:03 +02:00
BoolSetting showMessageLength = {"/appearance/messages/showMessageLength",
false};
BoolSetting separateMessages = {"/appearance/messages/separateMessages",
false};
// BoolSetting collapseLongMessages =
// {"/appearance/messages/collapseLongMessages", false};
IntSetting collpseMessagesMinLines = {
"/appearance/messages/collapseMessagesMinLines", 0};
BoolSetting alternateMessageBackground = {
"/appearance/messages/alternateMessageBackground", false};
2018-06-11 15:04:54 +02:00
IntSetting uiScale = {"/appearance/uiScale", 0};
IntSetting boldScale = {"/appearance/boldScale", 57};
BoolSetting windowTopMost = {"/appearance/windowAlwaysOnTop", false};
2018-04-27 01:11:09 +02:00
BoolSetting showTabCloseButton = {"/appearance/showTabCloseButton", true};
2018-08-06 21:17:03 +02:00
BoolSetting hidePreferencesButton = {"/appearance/hidePreferencesButton",
false};
BoolSetting hideUserButton = {"/appearance/hideUserButton", false};
BoolSetting enableSmoothScrolling = {"/appearance/smoothScrolling", true};
2018-08-06 21:17:03 +02:00
BoolSetting enableSmoothScrollingNewMessages = {
"/appearance/smoothScrollingNewMessages", false};
BoolSetting enableUsernameBold = {"/appearence/messages/boldUsernames",
false};
// BoolSetting customizable splitheader
2018-08-06 21:17:03 +02:00
BoolSetting showViewerCount = {"/appearance/splitheader/showViewerCount",
false};
BoolSetting showTitle = {"/appearance/splitheader/showTitle", false};
BoolSetting showGame = {"/appearance/splitheader/showGame", false};
BoolSetting showUptime = {"/appearance/splitheader/showUptime", false};
2018-08-06 21:17:03 +02:00
// BoolSetting useCustomWindowFrame = {"/appearance/useCustomWindowFrame",
// false};
/// Behaviour
2018-08-06 21:17:03 +02:00
BoolSetting allowDuplicateMessages = {"/behaviour/allowDuplicateMessages",
true};
BoolSetting mentionUsersWithAt = {"/behaviour/mentionUsersWithAt", false};
BoolSetting showJoins = {"/behaviour/showJoins", false};
BoolSetting showParts = {"/behaviour/showParts", false};
2018-08-06 21:17:03 +02:00
FloatSetting mouseScrollMultiplier = {"/behaviour/mouseScrollMultiplier",
1.0};
// BoolSetting twitchSeperateWriteConnection =
// {"/behaviour/twitchSeperateWriteConnection", false};
// Auto-completion
BoolSetting onlyFetchChattersForSmallerStreamers = {
"/behaviour/autocompletion/onlyFetchChattersForSmallerStreamers", true};
2018-08-06 21:17:03 +02:00
IntSetting smallStreamerLimit = {
"/behaviour/autocompletion/smallStreamerLimit", 1000};
BoolSetting pauseChatHover = {"/behaviour/pauseChatHover", false};
/// Commands
BoolSetting allowCommandsAtEnd = {"/commands/allowCommandsAtEnd", false};
/// Emotes
2018-08-06 21:17:03 +02:00
BoolSetting scaleEmotesByLineHeight = {"/emotes/scaleEmotesByLineHeight",
false};
BoolSetting enableTwitchEmotes = {"/emotes/enableTwitchEmotes", true};
BoolSetting enableBttvEmotes = {"/emotes/enableBTTVEmotes", true};
BoolSetting enableFfzEmotes = {"/emotes/enableFFZEmotes", true};
BoolSetting enableEmojis = {"/emotes/enableEmojis", true};
BoolSetting enableGifAnimations = {"/emotes/enableGifAnimations", true};
FloatSetting emoteScale = {"/emotes/scale", 1.f};
// 0 = No preference
// 1 = 1x
// 2 = 2x
// 3 = 3x
IntSetting preferredEmoteQuality = {"/emotes/preferredEmoteQuality", 0};
QStringSetting emojiSet = {"/emotes/emojiSet", "EmojiOne 2"};
/// Links
BoolSetting linksDoubleClickOnly = {"/links/doubleClickToOpen", false};
BoolSetting enableLowercaseLink = {"/links/linkLowercase", true};
2018-01-23 21:33:49 +01:00
/// Ingored Users
2018-08-06 21:17:03 +02:00
BoolSetting enableTwitchIgnoredUsers = {"/ignore/enableTwitchIgnoredUsers",
true};
2018-01-23 21:33:49 +01:00
2018-01-13 03:06:10 +01:00
/// Moderation
2018-03-24 16:55:28 +01:00
QStringSetting timeoutAction = {"/moderation/timeoutAction", "Disable"};
2018-01-13 03:06:10 +01:00
/// Highlighting
2018-04-27 01:11:09 +02:00
// BoolSetting enableHighlights = {"/highlighting/enabled", true};
2018-08-06 21:17:03 +02:00
BoolSetting enableHighlightsSelf = {"/highlighting/nameIsHighlightKeyword",
true};
BoolSetting enableHighlightSound = {"/highlighting/enableSound", true};
2018-08-06 21:17:03 +02:00
BoolSetting enableHighlightTaskbar = {"/highlighting/enableTaskbarFlashing",
true};
BoolSetting customHighlightSound = {"/highlighting/useCustomSound", false};
/// Logging
BoolSetting enableLogging = {"/logging/enabled", false};
QStringSetting logPath = {"/logging/path", ""};
QStringSetting pathHighlightSound = {"/highlighting/highlightSoundPath",
"qrc:/sounds/ping2.wav"};
2018-08-06 21:17:03 +02:00
BoolSetting highlightAlwaysPlaySound = {"/highlighting/alwaysPlaySound",
false};
BoolSetting inlineWhispers = {"/whispers/enableInlineWhispers", true};
2017-04-12 17:46:44 +02:00
/// External tools
// Streamlink
2018-08-06 21:17:03 +02:00
BoolSetting streamlinkUseCustomPath = {"/external/streamlink/useCustomPath",
false};
QStringSetting streamlinkPath = {"/external/streamlink/customPath", ""};
2018-08-06 21:17:03 +02:00
QStringSetting preferredQuality = {"/external/streamlink/quality",
"Choose"};
QStringSetting streamlinkOpts = {"/external/streamlink/options", ""};
2018-06-21 22:02:35 +02:00
/// Misc
IntSetting startUpNotification = {"/misc/startUpNotification", 0};
2018-06-23 22:17:57 +02:00
QStringSetting currentVersion = {"/misc/currentVersion", ""};
2018-06-21 22:02:35 +02:00
QStringSetting cachePath = {"/cache/path", ""};
void saveSnapshot();
void restoreSnapshot();
2017-09-21 12:15:01 +02:00
private:
2018-01-17 14:14:31 +01:00
void updateModerationActions();
2018-07-06 19:23:47 +02:00
std::unique_ptr<rapidjson::Document> snapshot_;
2017-01-05 20:49:13 +01:00
};
2018-08-08 15:35:54 +02:00
Settings *getSettings();
2017-04-14 17:52:22 +02:00
} // namespace chatterino