renamed *Manager files

This commit is contained in:
fourtf 2018-06-28 19:46:45 +02:00
parent 5604ae6a67
commit 2df142bd50
80 changed files with 125 additions and 125 deletions

View file

@ -147,20 +147,11 @@ SOURCES += \
src/providers/twitch/TwitchMessageBuilder.cpp \ src/providers/twitch/TwitchMessageBuilder.cpp \
src/providers/twitch/TwitchServer.cpp \ src/providers/twitch/TwitchServer.cpp \
src/providers/twitch/TwitchUser.cpp \ src/providers/twitch/TwitchUser.cpp \
src/singletons/EmoteManager.cpp \
src/singletons/FontManager.cpp \
src/singletons/helper/ChatterinoSetting.cpp \ src/singletons/helper/ChatterinoSetting.cpp \
src/singletons/helper/GifTimer.cpp \ src/singletons/helper/GifTimer.cpp \
src/singletons/helper/LoggingChannel.cpp \ src/singletons/helper/LoggingChannel.cpp \
src/controllers/moderationactions/ModerationAction.cpp \ src/controllers/moderationactions/ModerationAction.cpp \
src/singletons/IrcManager.cpp \ src/singletons/IrcManager.cpp \
src/singletons/LoggingManager.cpp \
src/singletons/NativeMessagingManager.cpp \
src/singletons/PathManager.cpp \
src/singletons/ResourceManager.cpp \
src/singletons/SettingsManager.cpp \
src/singletons/ThemeManager.cpp \
src/singletons/UpdateManager.cpp \
src/singletons/WindowManager.cpp \ src/singletons/WindowManager.cpp \
src/util/DebugCount.cpp \ src/util/DebugCount.cpp \
src/util/RapidjsonHelpers.cpp \ src/util/RapidjsonHelpers.cpp \
@ -224,7 +215,16 @@ SOURCES += \
src/widgets/TooltipWidget.cpp \ src/widgets/TooltipWidget.cpp \
src/widgets/Window.cpp \ src/widgets/Window.cpp \
src/common/LinkParser.cpp \ src/common/LinkParser.cpp \
src/controllers/moderationactions/ModerationActions.cpp src/controllers/moderationactions/ModerationActions.cpp \
src/singletons/NativeMessaging.cpp \
src/singletons/Emotes.cpp \
src/singletons/Fonts.cpp \
src/singletons/Logging.cpp \
src/singletons/Paths.cpp \
src/singletons/Resources.cpp \
src/singletons/Settings.cpp \
src/singletons/Themes.cpp \
src/singletons/Updates.cpp
HEADERS += \ HEADERS += \
src/Application.hpp \ src/Application.hpp \
@ -301,20 +301,11 @@ HEADERS += \
src/providers/twitch/TwitchMessageBuilder.hpp \ src/providers/twitch/TwitchMessageBuilder.hpp \
src/providers/twitch/TwitchServer.hpp \ src/providers/twitch/TwitchServer.hpp \
src/providers/twitch/TwitchUser.hpp \ src/providers/twitch/TwitchUser.hpp \
src/singletons/EmoteManager.hpp \
src/singletons/FontManager.hpp \
src/singletons/helper/ChatterinoSetting.hpp \ src/singletons/helper/ChatterinoSetting.hpp \
src/singletons/helper/GifTimer.hpp \ src/singletons/helper/GifTimer.hpp \
src/singletons/helper/LoggingChannel.hpp \ src/singletons/helper/LoggingChannel.hpp \
src/controllers/moderationactions/ModerationAction.hpp \ src/controllers/moderationactions/ModerationAction.hpp \
src/singletons/IrcManager.hpp \ src/singletons/IrcManager.hpp \
src/singletons/LoggingManager.hpp \
src/singletons/NativeMessagingManager.hpp \
src/singletons/PathManager.hpp \
src/singletons/ResourceManager.hpp \
src/singletons/SettingsManager.hpp \
src/singletons/ThemeManager.hpp \
src/singletons/UpdateManager.hpp \
src/singletons/WindowManager.hpp \ src/singletons/WindowManager.hpp \
src/util/Clamp.hpp \ src/util/Clamp.hpp \
src/util/CombinePath.hpp \ src/util/CombinePath.hpp \
@ -394,7 +385,16 @@ HEADERS += \
src/providers/twitch/TwitchCommon.hpp \ src/providers/twitch/TwitchCommon.hpp \
src/util/IsBigEndian.hpp \ src/util/IsBigEndian.hpp \
src/common/LinkParser.hpp \ src/common/LinkParser.hpp \
src/controllers/moderationactions/ModerationActions.hpp src/controllers/moderationactions/ModerationActions.hpp \
src/singletons/Emotes.hpp \
src/singletons/Fonts.hpp \
src/singletons/Logging.hpp \
src/singletons/Paths.hpp \
src/singletons/Resources.hpp \
src/singletons/Settings.hpp \
src/singletons/Themes.hpp \
src/singletons/Updates.hpp \
src/singletons/NativeMessaging.hpp
RESOURCES += \ RESOURCES += \
resources/resources.qrc \ resources/resources.qrc \

View file

@ -8,14 +8,14 @@
#include "controllers/taggedusers/TaggedUsersController.hpp" #include "controllers/taggedusers/TaggedUsersController.hpp"
#include "providers/twitch/Pubsub.hpp" #include "providers/twitch/Pubsub.hpp"
#include "providers/twitch/TwitchServer.hpp" #include "providers/twitch/TwitchServer.hpp"
#include "singletons/EmoteManager.hpp" #include "singletons/Emotes.hpp"
#include "singletons/FontManager.hpp" #include "singletons/Fonts.hpp"
#include "singletons/LoggingManager.hpp" #include "singletons/Logging.hpp"
#include "singletons/NativeMessagingManager.hpp" #include "singletons/NativeMessaging.hpp"
#include "singletons/PathManager.hpp" #include "singletons/Paths.hpp"
#include "singletons/ResourceManager.hpp" #include "singletons/Resources.hpp"
#include "singletons/SettingsManager.hpp" #include "singletons/Settings.hpp"
#include "singletons/ThemeManager.hpp" #include "singletons/Themes.hpp"
#include "singletons/WindowManager.hpp" #include "singletons/WindowManager.hpp"
#include "util/IsBigEndian.hpp" #include "util/IsBigEndian.hpp"
#include "util/PostToThread.hpp" #include "util/PostToThread.hpp"

View file

@ -1,7 +1,7 @@
#pragma once #pragma once
#include "singletons/IrcManager.hpp" #include "singletons/IrcManager.hpp"
#include "singletons/ResourceManager.hpp" #include "singletons/Resources.hpp"
#include <QApplication> #include <QApplication>

View file

@ -3,9 +3,9 @@
#include "Application.hpp" #include "Application.hpp"
#include "debug/Log.hpp" #include "debug/Log.hpp"
#include "messages/Message.hpp" #include "messages/Message.hpp"
#include "singletons/EmoteManager.hpp" #include "singletons/Emotes.hpp"
#include "singletons/IrcManager.hpp" #include "singletons/IrcManager.hpp"
#include "singletons/LoggingManager.hpp" #include "singletons/Logging.hpp"
#include "singletons/WindowManager.hpp" #include "singletons/WindowManager.hpp"
#include <QJsonArray> #include <QJsonArray>

View file

@ -4,7 +4,7 @@
#include "common/Common.hpp" #include "common/Common.hpp"
#include "controllers/commands/CommandController.hpp" #include "controllers/commands/CommandController.hpp"
#include "debug/Log.hpp" #include "debug/Log.hpp"
#include "singletons/EmoteManager.hpp" #include "singletons/Emotes.hpp"
#include <QtAlgorithms> #include <QtAlgorithms>

View file

@ -1,7 +1,7 @@
#include "Emotemap.hpp" #include "Emotemap.hpp"
#include "Application.hpp" #include "Application.hpp"
#include "singletons/SettingsManager.hpp" #include "singletons/Settings.hpp"
namespace chatterino { namespace chatterino {

View file

@ -4,7 +4,7 @@
#include "common/NetworkManager.hpp" #include "common/NetworkManager.hpp"
#include "common/NetworkRequester.hpp" #include "common/NetworkRequester.hpp"
#include "common/NetworkWorker.hpp" #include "common/NetworkWorker.hpp"
#include "singletons/PathManager.hpp" #include "singletons/Paths.hpp"
#include <rapidjson/document.h> #include <rapidjson/document.h>
#include <rapidjson/error/en.h> #include <rapidjson/error/en.h>

View file

@ -8,8 +8,8 @@
#include "messages/MessageBuilder.hpp" #include "messages/MessageBuilder.hpp"
#include "providers/twitch/TwitchChannel.hpp" #include "providers/twitch/TwitchChannel.hpp"
#include "providers/twitch/TwitchServer.hpp" #include "providers/twitch/TwitchServer.hpp"
#include "singletons/PathManager.hpp" #include "singletons/Paths.hpp"
#include "singletons/SettingsManager.hpp" #include "singletons/Settings.hpp"
#include <QApplication> #include <QApplication>
#include <QFile> #include <QFile>

View file

@ -3,7 +3,7 @@
#include "common/SignalVector2.hpp" #include "common/SignalVector2.hpp"
#include "controllers/highlights/HighlightPhrase.hpp" #include "controllers/highlights/HighlightPhrase.hpp"
#include "messages/Message.hpp" #include "messages/Message.hpp"
#include "singletons/SettingsManager.hpp" #include "singletons/Settings.hpp"
namespace chatterino { namespace chatterino {

View file

@ -1,7 +1,7 @@
#include "HighlightModel.hpp" #include "HighlightModel.hpp"
#include "Application.hpp" #include "Application.hpp"
#include "singletons/SettingsManager.hpp" #include "singletons/Settings.hpp"
#include "util/StandardItemHelper.hpp" #include "util/StandardItemHelper.hpp"
namespace chatterino { namespace chatterino {

View file

@ -2,7 +2,7 @@
#include "common/SignalVector2.hpp" #include "common/SignalVector2.hpp"
#include "controllers/ignores/IgnorePhrase.hpp" #include "controllers/ignores/IgnorePhrase.hpp"
#include "singletons/SettingsManager.hpp" #include "singletons/Settings.hpp"
namespace chatterino { namespace chatterino {

View file

@ -1,7 +1,7 @@
#include "IgnoreModel.hpp" #include "IgnoreModel.hpp"
#include "Application.hpp" #include "Application.hpp"
#include "singletons/SettingsManager.hpp" #include "singletons/Settings.hpp"
#include "util/StandardItemHelper.hpp" #include "util/StandardItemHelper.hpp"
namespace chatterino { namespace chatterino {

View file

@ -1,7 +1,7 @@
#include "ModerationAction.hpp" #include "ModerationAction.hpp"
#include "Application.hpp" #include "Application.hpp"
#include "singletons/ResourceManager.hpp" #include "singletons/Resources.hpp"
namespace chatterino { namespace chatterino {

View file

@ -1,7 +1,7 @@
#include "ModerationActions.hpp" #include "ModerationActions.hpp"
#include "Application.hpp" #include "Application.hpp"
#include "singletons/SettingsManager.hpp" #include "singletons/Settings.hpp"
#include <QRegularExpression> #include <QRegularExpression>

View file

@ -1,8 +1,8 @@
#include "Application.hpp" #include "Application.hpp"
#include "common/NetworkManager.hpp" #include "common/NetworkManager.hpp"
#include "singletons/NativeMessagingManager.hpp" #include "singletons/NativeMessaging.hpp"
#include "singletons/PathManager.hpp" #include "singletons/Paths.hpp"
#include "singletons/UpdateManager.hpp" #include "singletons/Updates.hpp"
#include "util/DebugCount.hpp" #include "util/DebugCount.hpp"
#include "widgets/dialogs/LastRunCrashDialog.hpp" #include "widgets/dialogs/LastRunCrashDialog.hpp"

View file

@ -4,7 +4,7 @@
#include "common/NetworkManager.hpp" #include "common/NetworkManager.hpp"
#include "common/UrlFetch.hpp" #include "common/UrlFetch.hpp"
#include "debug/Log.hpp" #include "debug/Log.hpp"
#include "singletons/EmoteManager.hpp" #include "singletons/Emotes.hpp"
#include "singletons/IrcManager.hpp" #include "singletons/IrcManager.hpp"
#include "singletons/WindowManager.hpp" #include "singletons/WindowManager.hpp"
#include "util/PostToThread.hpp" #include "util/PostToThread.hpp"

View file

@ -1,9 +1,9 @@
#include "MessageBuilder.hpp" #include "MessageBuilder.hpp"
#include "common/LinkParser.hpp" #include "common/LinkParser.hpp"
#include "singletons/EmoteManager.hpp" #include "singletons/Emotes.hpp"
#include "singletons/ResourceManager.hpp" #include "singletons/Resources.hpp"
#include "singletons/ThemeManager.hpp" #include "singletons/Themes.hpp"
#include <QDateTime> #include <QDateTime>

View file

@ -1,6 +1,6 @@
#pragma once #pragma once
#include "singletons/ThemeManager.hpp" #include "singletons/Themes.hpp"
#include <QColor> #include <QColor>

View file

@ -6,7 +6,7 @@
#include "debug/Benchmark.hpp" #include "debug/Benchmark.hpp"
#include "messages/layouts/MessageLayoutContainer.hpp" #include "messages/layouts/MessageLayoutContainer.hpp"
#include "messages/layouts/MessageLayoutElement.hpp" #include "messages/layouts/MessageLayoutElement.hpp"
#include "singletons/SettingsManager.hpp" #include "singletons/Settings.hpp"
namespace chatterino { namespace chatterino {

View file

@ -4,7 +4,7 @@
#include "messages/Image.hpp" #include "messages/Image.hpp"
#include "messages/Link.hpp" #include "messages/Link.hpp"
#include "messages/MessageColor.hpp" #include "messages/MessageColor.hpp"
#include "singletons/FontManager.hpp" #include "singletons/Fonts.hpp"
#include <QRect> #include <QRect>
#include <QString> #include <QString>

View file

@ -2,8 +2,8 @@
#include "Application.hpp" #include "Application.hpp"
#include "debug/Benchmark.hpp" #include "debug/Benchmark.hpp"
#include "singletons/EmoteManager.hpp" #include "singletons/Emotes.hpp"
#include "singletons/SettingsManager.hpp" #include "singletons/Settings.hpp"
#include "singletons/WindowManager.hpp" #include "singletons/WindowManager.hpp"
#include <QApplication> #include <QApplication>

View file

@ -3,7 +3,7 @@
#include "Application.hpp" #include "Application.hpp"
#include "MessageLayoutElement.hpp" #include "MessageLayoutElement.hpp"
#include "messages/Selection.hpp" #include "messages/Selection.hpp"
#include "singletons/SettingsManager.hpp" #include "singletons/Settings.hpp"
#include <QDebug> #include <QDebug>
#include <QPainter> #include <QPainter>

View file

@ -9,7 +9,7 @@
#include "messages/Link.hpp" #include "messages/Link.hpp"
#include "messages/MessageColor.hpp" #include "messages/MessageColor.hpp"
#include "singletons/FontManager.hpp" #include "singletons/Fonts.hpp"
class QPainter; class QPainter;

View file

@ -2,7 +2,7 @@
#include "Application.hpp" #include "Application.hpp"
#include "debug/Log.hpp" #include "debug/Log.hpp"
#include "singletons/SettingsManager.hpp" #include "singletons/Settings.hpp"
#include <QFile> #include <QFile>

View file

@ -9,7 +9,7 @@
#include "providers/twitch/TwitchHelpers.hpp" #include "providers/twitch/TwitchHelpers.hpp"
#include "providers/twitch/TwitchMessageBuilder.hpp" #include "providers/twitch/TwitchMessageBuilder.hpp"
#include "providers/twitch/TwitchServer.hpp" #include "providers/twitch/TwitchServer.hpp"
#include "singletons/ResourceManager.hpp" #include "singletons/Resources.hpp"
#include "singletons/WindowManager.hpp" #include "singletons/WindowManager.hpp"
#include "util/IrcHelpers.hpp" #include "util/IrcHelpers.hpp"

View file

@ -6,9 +6,9 @@
#include "messages/Message.hpp" #include "messages/Message.hpp"
#include "providers/twitch/Pubsub.hpp" #include "providers/twitch/Pubsub.hpp"
#include "providers/twitch/TwitchMessageBuilder.hpp" #include "providers/twitch/TwitchMessageBuilder.hpp"
#include "singletons/EmoteManager.hpp" #include "singletons/Emotes.hpp"
#include "singletons/IrcManager.hpp" #include "singletons/IrcManager.hpp"
#include "singletons/SettingsManager.hpp" #include "singletons/Settings.hpp"
#include "util/PostToThread.hpp" #include "util/PostToThread.hpp"
#include <IrcConnection> #include <IrcConnection>

View file

@ -5,7 +5,7 @@
#include "common/Channel.hpp" #include "common/Channel.hpp"
#include "common/Common.hpp" #include "common/Common.hpp"
#include "common/MutexValue.hpp" #include "common/MutexValue.hpp"
#include "singletons/EmoteManager.hpp" #include "singletons/Emotes.hpp"
#include "singletons/IrcManager.hpp" #include "singletons/IrcManager.hpp"
#include "util/ConcurrentMap.hpp" #include "util/ConcurrentMap.hpp"

View file

@ -6,11 +6,11 @@
#include "controllers/ignores/IgnoreController.hpp" #include "controllers/ignores/IgnoreController.hpp"
#include "debug/Log.hpp" #include "debug/Log.hpp"
#include "providers/twitch/TwitchChannel.hpp" #include "providers/twitch/TwitchChannel.hpp"
#include "singletons/EmoteManager.hpp" #include "singletons/Emotes.hpp"
#include "singletons/IrcManager.hpp" #include "singletons/IrcManager.hpp"
#include "singletons/ResourceManager.hpp" #include "singletons/Resources.hpp"
#include "singletons/SettingsManager.hpp" #include "singletons/Settings.hpp"
#include "singletons/ThemeManager.hpp" #include "singletons/Themes.hpp"
#include "singletons/WindowManager.hpp" #include "singletons/WindowManager.hpp"
#include "util/IrcHelpers.hpp" #include "util/IrcHelpers.hpp"

View file

@ -2,7 +2,7 @@
#include "messages/MessageBuilder.hpp" #include "messages/MessageBuilder.hpp"
#include "messages/MessageParseArgs.hpp" #include "messages/MessageParseArgs.hpp"
#include "singletons/EmoteManager.hpp" #include "singletons/Emotes.hpp"
#include <IrcMessage> #include <IrcMessage>

View file

@ -1,4 +1,4 @@
#include "singletons/EmoteManager.hpp" #include "singletons/Emotes.hpp"
#include "Application.hpp" #include "Application.hpp"
#include "controllers/accounts/AccountController.hpp" #include "controllers/accounts/AccountController.hpp"

View file

@ -1,4 +1,4 @@
#include "singletons/FontManager.hpp" #include "singletons/Fonts.hpp"
#include <QDebug> #include <QDebug>
#include <QtGlobal> #include <QtGlobal>

View file

@ -1,9 +1,9 @@
#include "singletons/LoggingManager.hpp" #include "singletons/Logging.hpp"
#include "Application.hpp" #include "Application.hpp"
#include "debug/Log.hpp" #include "debug/Log.hpp"
#include "singletons/PathManager.hpp" #include "singletons/Paths.hpp"
#include "singletons/SettingsManager.hpp" #include "singletons/Settings.hpp"
#include <QDir> #include <QDir>
#include <QStandardPaths> #include <QStandardPaths>

View file

@ -1,8 +1,8 @@
#include "NativeMessagingManager.hpp" #include "NativeMessaging.hpp"
#include "Application.hpp" #include "Application.hpp"
#include "providers/twitch/TwitchServer.hpp" #include "providers/twitch/TwitchServer.hpp"
#include "singletons/PathManager.hpp" #include "singletons/Paths.hpp"
#include "util/PostToThread.hpp" #include "util/PostToThread.hpp"
#include <QCoreApplication> #include <QCoreApplication>

View file

@ -1,4 +1,4 @@
#include "singletons/PathManager.hpp" #include "singletons/Paths.hpp"
#include <QCoreApplication> #include <QCoreApplication>
#include <QCryptographicHash> #include <QCryptographicHash>

View file

@ -1,4 +1,4 @@
#include "ResourceManager.hpp" #include "Resources.hpp"
#include "common/UrlFetch.hpp" #include "common/UrlFetch.hpp"
#include <QIcon> #include <QIcon>

View file

@ -1,9 +1,9 @@
#include "singletons/SettingsManager.hpp" #include "singletons/Settings.hpp"
#include "Application.hpp" #include "Application.hpp"
#include "debug/Log.hpp" #include "debug/Log.hpp"
#include "singletons/PathManager.hpp" #include "singletons/Paths.hpp"
#include "singletons/ResourceManager.hpp" #include "singletons/Resources.hpp"
#include "singletons/WindowManager.hpp" #include "singletons/WindowManager.hpp"
namespace chatterino { namespace chatterino {

View file

@ -1,6 +1,6 @@
#define LOOKUP_COLOR_COUNT 360 #define LOOKUP_COLOR_COUNT 360
#include "ThemeManager.hpp" #include "Themes.hpp"
#include <QColor> #include <QColor>

View file

@ -1,4 +1,4 @@
#include "UpdateManager.hpp" #include "Updates.hpp"
#include "common/NetworkRequest.hpp" #include "common/NetworkRequest.hpp"
#include "common/Version.hpp" #include "common/Version.hpp"

View file

@ -4,9 +4,9 @@
#include "debug/AssertInGuiThread.hpp" #include "debug/AssertInGuiThread.hpp"
#include "debug/Log.hpp" #include "debug/Log.hpp"
#include "providers/twitch/TwitchServer.hpp" #include "providers/twitch/TwitchServer.hpp"
#include "singletons/FontManager.hpp" #include "singletons/Fonts.hpp"
#include "singletons/PathManager.hpp" #include "singletons/Paths.hpp"
#include "singletons/ThemeManager.hpp" #include "singletons/Themes.hpp"
#include "util/Clamp.hpp" #include "util/Clamp.hpp"
#include "widgets/AccountSwitchPopupWidget.hpp" #include "widgets/AccountSwitchPopupWidget.hpp"
#include "widgets/dialogs/SettingsDialog.hpp" #include "widgets/dialogs/SettingsDialog.hpp"

View file

@ -1,6 +1,6 @@
#include "singletons/helper/ChatterinoSetting.hpp" #include "singletons/helper/ChatterinoSetting.hpp"
#include "singletons/SettingsManager.hpp" #include "singletons/Settings.hpp"
namespace chatterino { namespace chatterino {

View file

@ -1,7 +1,7 @@
#include "singletons/helper/GifTimer.hpp" #include "singletons/helper/GifTimer.hpp"
#include "Application.hpp" #include "Application.hpp"
#include "singletons/SettingsManager.hpp" #include "singletons/Settings.hpp"
#include "singletons/WindowManager.hpp" #include "singletons/WindowManager.hpp"
namespace chatterino { namespace chatterino {

View file

@ -2,8 +2,8 @@
#include "Application.hpp" #include "Application.hpp"
#include "debug/Log.hpp" #include "debug/Log.hpp"
#include "singletons/PathManager.hpp" #include "singletons/Paths.hpp"
#include "singletons/SettingsManager.hpp" #include "singletons/Settings.hpp"
#include <QDir> #include <QDir>

View file

@ -2,7 +2,7 @@
#include "Application.hpp" #include "Application.hpp"
#include "Helpers.hpp" #include "Helpers.hpp"
#include "singletons/SettingsManager.hpp" #include "singletons/Settings.hpp"
#include "widgets/dialogs/QualityPopup.hpp" #include "widgets/dialogs/QualityPopup.hpp"
#include <QErrorMessage> #include <QErrorMessage>

View file

@ -2,8 +2,8 @@
#include "Application.hpp" #include "Application.hpp"
#include "debug/Log.hpp" #include "debug/Log.hpp"
#include "singletons/SettingsManager.hpp" #include "singletons/Settings.hpp"
#include "singletons/ThemeManager.hpp" #include "singletons/Themes.hpp"
#include "widgets/BaseWindow.hpp" #include "widgets/BaseWindow.hpp"
#include <QChildEvent> #include <QChildEvent>

View file

@ -3,7 +3,7 @@
#include "Application.hpp" #include "Application.hpp"
#include "boost/algorithm/algorithm.hpp" #include "boost/algorithm/algorithm.hpp"
#include "debug/Log.hpp" #include "debug/Log.hpp"
#include "singletons/SettingsManager.hpp" #include "singletons/Settings.hpp"
#include "singletons/WindowManager.hpp" #include "singletons/WindowManager.hpp"
#include "util/PostToThread.hpp" #include "util/PostToThread.hpp"
#include "util/WindowsHelper.hpp" #include "util/WindowsHelper.hpp"

View file

@ -1,6 +1,6 @@
#pragma once #pragma once
#include "singletons/FontManager.hpp" #include "singletons/Fonts.hpp"
#include "widgets/BaseWidget.hpp" #include "widgets/BaseWidget.hpp"
#include <pajlada/signals/signalholder.hpp> #include <pajlada/signals/signalholder.hpp>

View file

@ -2,7 +2,7 @@
#include "Application.hpp" #include "Application.hpp"
#include "debug/Log.hpp" #include "debug/Log.hpp"
#include "singletons/ThemeManager.hpp" #include "singletons/Themes.hpp"
#include "singletons/WindowManager.hpp" #include "singletons/WindowManager.hpp"
#include "widgets/Window.hpp" #include "widgets/Window.hpp"
#include "widgets/dialogs/SettingsDialog.hpp" #include "widgets/dialogs/SettingsDialog.hpp"

View file

@ -1,7 +1,7 @@
#include "widgets/Scrollbar.hpp" #include "widgets/Scrollbar.hpp"
#include "Application.hpp" #include "Application.hpp"
#include "singletons/ThemeManager.hpp" #include "singletons/Themes.hpp"
#include "widgets/helper/ChannelView.hpp" #include "widgets/helper/ChannelView.hpp"
#include <QDebug> #include <QDebug>

View file

@ -1,7 +1,7 @@
#pragma once #pragma once
#include "messages/LimitedQueue.hpp" #include "messages/LimitedQueue.hpp"
#include "singletons/SettingsManager.hpp" #include "singletons/Settings.hpp"
#include "widgets/BaseWidget.hpp" #include "widgets/BaseWidget.hpp"
#include "widgets/helper/ScrollbarHighlight.hpp" #include "widgets/helper/ScrollbarHighlight.hpp"

View file

@ -1,8 +1,8 @@
#include "TooltipWidget.hpp" #include "TooltipWidget.hpp"
#include "Application.hpp" #include "Application.hpp"
#include "singletons/FontManager.hpp" #include "singletons/Fonts.hpp"
#include "singletons/ThemeManager.hpp" #include "singletons/Themes.hpp"
#include <QDebug> #include <QDebug>
#include <QDesktopWidget> #include <QDesktopWidget>

View file

@ -5,8 +5,8 @@
#include "controllers/accounts/AccountController.hpp" #include "controllers/accounts/AccountController.hpp"
#include "providers/twitch/TwitchServer.hpp" #include "providers/twitch/TwitchServer.hpp"
#include "singletons/IrcManager.hpp" #include "singletons/IrcManager.hpp"
#include "singletons/SettingsManager.hpp" #include "singletons/Settings.hpp"
#include "singletons/ThemeManager.hpp" #include "singletons/Themes.hpp"
#include "singletons/WindowManager.hpp" #include "singletons/WindowManager.hpp"
#include "widgets/AccountSwitchPopupWidget.hpp" #include "widgets/AccountSwitchPopupWidget.hpp"
#include "widgets/Notebook.hpp" #include "widgets/Notebook.hpp"

View file

@ -5,7 +5,7 @@
#include <QPushButton> #include <QPushButton>
#include <QVBoxLayout> #include <QVBoxLayout>
#include "singletons/UpdateManager.hpp" #include "singletons/Updates.hpp"
#include "util/LayoutCreator.hpp" #include "util/LayoutCreator.hpp"
#include "util/PostToThread.hpp" #include "util/PostToThread.hpp"

View file

@ -3,7 +3,7 @@
#include "Application.hpp" #include "Application.hpp"
#include "common/UrlFetch.hpp" #include "common/UrlFetch.hpp"
#include "providers/twitch/TwitchChannel.hpp" #include "providers/twitch/TwitchChannel.hpp"
#include "singletons/ResourceManager.hpp" #include "singletons/Resources.hpp"
#include "util/LayoutCreator.hpp" #include "util/LayoutCreator.hpp"
#include "util/PostToThread.hpp" #include "util/PostToThread.hpp"
#include "widgets/Label.hpp" #include "widgets/Label.hpp"

View file

@ -7,8 +7,8 @@
#include "messages/Message.hpp" #include "messages/Message.hpp"
#include "messages/layouts/MessageLayout.hpp" #include "messages/layouts/MessageLayout.hpp"
#include "providers/twitch/TwitchServer.hpp" #include "providers/twitch/TwitchServer.hpp"
#include "singletons/SettingsManager.hpp" #include "singletons/Settings.hpp"
#include "singletons/ThemeManager.hpp" #include "singletons/Themes.hpp"
#include "singletons/WindowManager.hpp" #include "singletons/WindowManager.hpp"
#include "util/DistanceBetweenPoints.hpp" #include "util/DistanceBetweenPoints.hpp"
#include "widgets/TooltipWidget.hpp" #include "widgets/TooltipWidget.hpp"

View file

@ -1,6 +1,6 @@
#include "widgets/helper/DropPreview.hpp" #include "widgets/helper/DropPreview.hpp"
#include "Application.hpp" #include "Application.hpp"
#include "singletons/ThemeManager.hpp" #include "singletons/Themes.hpp"
#include <QDebug> #include <QDebug>
#include <QPainter> #include <QPainter>

View file

@ -1,5 +1,5 @@
#include "widgets/helper/NotebookButton.hpp" #include "widgets/helper/NotebookButton.hpp"
#include "singletons/ThemeManager.hpp" #include "singletons/Themes.hpp"
#include "widgets/Notebook.hpp" #include "widgets/Notebook.hpp"
#include "widgets/helper/RippleEffectButton.hpp" #include "widgets/helper/RippleEffectButton.hpp"
#include "widgets/splits/SplitContainer.hpp" #include "widgets/splits/SplitContainer.hpp"

View file

@ -3,8 +3,8 @@
#include "Application.hpp" #include "Application.hpp"
#include "common/Common.hpp" #include "common/Common.hpp"
#include "debug/Log.hpp" #include "debug/Log.hpp"
#include "singletons/SettingsManager.hpp" #include "singletons/Settings.hpp"
#include "singletons/ThemeManager.hpp" #include "singletons/Themes.hpp"
#include "util/Clamp.hpp" #include "util/Clamp.hpp"
#include "util/Helpers.hpp" #include "util/Helpers.hpp"
#include "widgets/Notebook.hpp" #include "widgets/Notebook.hpp"

View file

@ -3,7 +3,7 @@
#include <QDebug> #include <QDebug>
#include <QPainter> #include <QPainter>
#include "singletons/ThemeManager.hpp" #include "singletons/Themes.hpp"
namespace chatterino { namespace chatterino {

View file

@ -1,5 +1,5 @@
#include "widgets/helper/RippleEffectLabel.hpp" #include "widgets/helper/RippleEffectLabel.hpp"
#include "singletons/ThemeManager.hpp" #include "singletons/Themes.hpp"
#include "widgets/splits/SplitHeader.hpp" #include "widgets/splits/SplitHeader.hpp"
#include <QBrush> #include <QBrush>

View file

@ -1,5 +1,5 @@
#include "widgets/helper/ScrollbarHighlight.hpp" #include "widgets/helper/ScrollbarHighlight.hpp"
#include "singletons/ThemeManager.hpp" #include "singletons/Themes.hpp"
#include "widgets/Scrollbar.hpp" #include "widgets/Scrollbar.hpp"
namespace chatterino { namespace chatterino {

View file

@ -1,6 +1,6 @@
#include "TitlebarButton.hpp" #include "TitlebarButton.hpp"
#include "singletons/ThemeManager.hpp" #include "singletons/Themes.hpp"
namespace chatterino { namespace chatterino {

View file

@ -4,7 +4,7 @@
#include "controllers/highlights/HighlightController.hpp" #include "controllers/highlights/HighlightController.hpp"
#include "controllers/highlights/HighlightModel.hpp" #include "controllers/highlights/HighlightModel.hpp"
#include "debug/Log.hpp" #include "debug/Log.hpp"
#include "singletons/SettingsManager.hpp" #include "singletons/Settings.hpp"
#include "util/LayoutCreator.hpp" #include "util/LayoutCreator.hpp"
#include "util/StandardItemHelper.hpp" #include "util/StandardItemHelper.hpp"
#include "widgets/helper/EditableModelView.hpp" #include "widgets/helper/EditableModelView.hpp"

View file

@ -4,7 +4,7 @@
#include "controllers/accounts/AccountController.hpp" #include "controllers/accounts/AccountController.hpp"
#include "controllers/ignores/IgnoreController.hpp" #include "controllers/ignores/IgnoreController.hpp"
#include "controllers/ignores/IgnoreModel.hpp" #include "controllers/ignores/IgnoreModel.hpp"
#include "singletons/SettingsManager.hpp" #include "singletons/Settings.hpp"
#include "util/LayoutCreator.hpp" #include "util/LayoutCreator.hpp"
#include "widgets/helper/EditableModelView.hpp" #include "widgets/helper/EditableModelView.hpp"

View file

@ -3,8 +3,8 @@
#include "Application.hpp" #include "Application.hpp"
#include "controllers/taggedusers/TaggedUsersController.hpp" #include "controllers/taggedusers/TaggedUsersController.hpp"
#include "controllers/taggedusers/TaggedUsersModel.hpp" #include "controllers/taggedusers/TaggedUsersModel.hpp"
#include "singletons/LoggingManager.hpp" #include "singletons/Logging.hpp"
#include "singletons/PathManager.hpp" #include "singletons/Paths.hpp"
#include "util/LayoutCreator.hpp" #include "util/LayoutCreator.hpp"
#include "widgets/helper/EditableModelView.hpp" #include "widgets/helper/EditableModelView.hpp"

View file

@ -6,7 +6,7 @@
#include <QSpinBox> #include <QSpinBox>
#include <pajlada/signals/signal.hpp> #include <pajlada/signals/signal.hpp>
#include "singletons/SettingsManager.hpp" #include "singletons/Settings.hpp"
namespace chatterino { namespace chatterino {

View file

@ -1,7 +1,7 @@
#include "SpecialChannelsPage.hpp" #include "SpecialChannelsPage.hpp"
#include "Application.hpp" #include "Application.hpp"
#include "singletons/SettingsManager.hpp" #include "singletons/Settings.hpp"
#include "util/LayoutCreator.hpp" #include "util/LayoutCreator.hpp"
#include <QGroupBox> #include <QGroupBox>

View file

@ -7,8 +7,8 @@
#include "providers/twitch/TwitchChannel.hpp" #include "providers/twitch/TwitchChannel.hpp"
#include "providers/twitch/TwitchMessageBuilder.hpp" #include "providers/twitch/TwitchMessageBuilder.hpp"
#include "providers/twitch/TwitchServer.hpp" #include "providers/twitch/TwitchServer.hpp"
#include "singletons/SettingsManager.hpp" #include "singletons/Settings.hpp"
#include "singletons/ThemeManager.hpp" #include "singletons/Themes.hpp"
#include "singletons/WindowManager.hpp" #include "singletons/WindowManager.hpp"
#include "util/StreamLink.hpp" #include "util/StreamLink.hpp"
#include "widgets/Window.hpp" #include "widgets/Window.hpp"

View file

@ -2,7 +2,7 @@
#include "Application.hpp" #include "Application.hpp"
#include "common/Common.hpp" #include "common/Common.hpp"
#include "debug/AssertInGuiThread.hpp" #include "debug/AssertInGuiThread.hpp"
#include "singletons/ThemeManager.hpp" #include "singletons/Themes.hpp"
#include "singletons/WindowManager.hpp" #include "singletons/WindowManager.hpp"
#include "util/Helpers.hpp" #include "util/Helpers.hpp"
#include "util/LayoutCreator.hpp" #include "util/LayoutCreator.hpp"

View file

@ -4,8 +4,8 @@
#include "common/UrlFetch.hpp" #include "common/UrlFetch.hpp"
#include "providers/twitch/TwitchChannel.hpp" #include "providers/twitch/TwitchChannel.hpp"
#include "providers/twitch/TwitchServer.hpp" #include "providers/twitch/TwitchServer.hpp"
#include "singletons/ResourceManager.hpp" #include "singletons/Resources.hpp"
#include "singletons/ThemeManager.hpp" #include "singletons/Themes.hpp"
#include "util/LayoutCreator.hpp" #include "util/LayoutCreator.hpp"
#include "widgets/Label.hpp" #include "widgets/Label.hpp"
#include "widgets/TooltipWidget.hpp" #include "widgets/TooltipWidget.hpp"

View file

@ -6,8 +6,8 @@
#include "providers/twitch/TwitchChannel.hpp" #include "providers/twitch/TwitchChannel.hpp"
#include "providers/twitch/TwitchServer.hpp" #include "providers/twitch/TwitchServer.hpp"
#include "singletons/IrcManager.hpp" #include "singletons/IrcManager.hpp"
#include "singletons/SettingsManager.hpp" #include "singletons/Settings.hpp"
#include "singletons/ThemeManager.hpp" #include "singletons/Themes.hpp"
#include "util/LayoutCreator.hpp" #include "util/LayoutCreator.hpp"
#include "widgets/Notebook.hpp" #include "widgets/Notebook.hpp"
#include "widgets/splits/Split.hpp" #include "widgets/splits/Split.hpp"

View file

@ -9,7 +9,7 @@
#include <QPushButton> #include <QPushButton>
#include "Application.hpp" #include "Application.hpp"
#include "singletons/ResourceManager.hpp" #include "singletons/Resources.hpp"
#include "widgets/splits/Split.hpp" #include "widgets/splits/Split.hpp"
#include "widgets/splits/SplitContainer.hpp" #include "widgets/splits/SplitContainer.hpp"