mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
42 lines
1 KiB
C++
42 lines
1 KiB
C++
#pragma once
|
|
|
|
#include "common/Channel.hpp"
|
|
#include "util/LayoutCreator.hpp"
|
|
#include "widgets/settingspages/SettingsPage.hpp"
|
|
|
|
#include <QScrollArea>
|
|
#include <pajlada/signals/signalholder.hpp>
|
|
|
|
class QVBoxLayout;
|
|
|
|
namespace chatterino {
|
|
|
|
class LookPage : public SettingsPage
|
|
{
|
|
public:
|
|
LookPage();
|
|
|
|
private:
|
|
void initializeUi();
|
|
|
|
void addInterfaceTab(LayoutCreator<QVBoxLayout> layout);
|
|
void addMessageTab(LayoutCreator<QVBoxLayout> layout);
|
|
void addEmoteTab(LayoutCreator<QVBoxLayout> layout);
|
|
void addSplitHeaderTab(LayoutCreator<QVBoxLayout> layout);
|
|
void addBadgesTab(LayoutCreator<QVBoxLayout> layout);
|
|
|
|
void addLastReadMessageIndicatorPatternSelector(
|
|
LayoutCreator<QVBoxLayout> layout);
|
|
|
|
QLayout *createThemeColorChanger();
|
|
QLayout *createFontChanger();
|
|
QLayout *createUiScaleSlider();
|
|
QLayout *createBoldScaleSlider();
|
|
|
|
ChannelPtr createPreviewChannel();
|
|
|
|
std::vector<pajlada::Signals::ScopedConnection> connections_;
|
|
};
|
|
|
|
} // namespace chatterino
|