mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
ae26b835b6
Things that were once singletons are no longer singletons, but are instead stored in the "Application" singleton Some singletons still remain, and some renaming/renamespacing is left
38 lines
1 KiB
C++
38 lines
1 KiB
C++
#include "specialchannelspage.hpp"
|
|
|
|
#include "application.hpp"
|
|
#include "singletons/settingsmanager.hpp"
|
|
#include "util/layoutcreator.hpp"
|
|
|
|
#include <QGroupBox>
|
|
#include <QLabel>
|
|
#include <QVBoxLayout>
|
|
|
|
namespace chatterino {
|
|
namespace widgets {
|
|
namespace settingspages {
|
|
|
|
SpecialChannelsPage::SpecialChannelsPage()
|
|
: SettingsPage("Special channels", "")
|
|
{
|
|
auto app = getApp();
|
|
|
|
util::LayoutCreator<SpecialChannelsPage> layoutCreator(this);
|
|
auto layout = layoutCreator.setLayoutType<QVBoxLayout>();
|
|
|
|
auto mentions = layout.emplace<QGroupBox>("Mentions channel").setLayoutType<QVBoxLayout>();
|
|
{
|
|
mentions.emplace<QLabel>("Join /mentions to view your mentions.");
|
|
}
|
|
|
|
auto whispers = layout.emplace<QGroupBox>("Whispers").setLayoutType<QVBoxLayout>();
|
|
{
|
|
whispers.emplace<QLabel>("Join /whispers to view your mentions.");
|
|
}
|
|
|
|
layout->addStretch(1);
|
|
}
|
|
|
|
} // namespace settingspages
|
|
} // namespace widgets
|
|
} // namespace chatterino
|