#include "SpecialChannelsPage.hpp" #include "Application.hpp" #include "singletons/SettingsManager.hpp" #include "util/LayoutCreator.hpp" #include #include #include namespace chatterino { SpecialChannelsPage::SpecialChannelsPage() : SettingsPage("Special channels", "") { auto app = getApp(); LayoutCreator layoutCreator(this); auto layout = layoutCreator.setLayoutType(); auto mentions = layout.emplace("Mentions channel").setLayoutType(); { mentions.emplace("Join /mentions to view your mentions."); } auto whispers = layout.emplace("Whispers").setLayoutType(); { whispers.emplace("Join /whispers to view your mentions."); } layout->addStretch(1); } } // namespace chatterino