mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
23 lines
463 B
C++
23 lines
463 B
C++
#pragma once
|
|
|
|
#include "widgets/settingspages/SettingsPage.hpp"
|
|
|
|
#include <QScrollArea>
|
|
#include <pajlada/signals/signalholder.hpp>
|
|
|
|
namespace chatterino {
|
|
|
|
class AppearancePage : public SettingsPage
|
|
{
|
|
public:
|
|
AppearancePage();
|
|
|
|
QLayout *createThemeColorChanger();
|
|
QLayout *createFontChanger();
|
|
QLayout *createUiScaleSlider();
|
|
|
|
std::vector<pajlada::Signals::ScopedConnection> connections_;
|
|
};
|
|
|
|
} // namespace chatterino
|