mirror-chatterino2/src/widgets/settingspages/ignoreuserspage.hpp
Rasmus Karlsson bf0b5d08d8 Implement /ignore and /unignore commands
Simplify authorized network requests for Twitch V5 api
add onShow virtual function to settings pages if they need to be refreshed when shown
Actually ignoring messages from ignored users is still not implemented

Working on #247
2018-05-12 20:34:13 +02:00

25 lines
422 B
C++

#pragma once
#include "widgets/settingspages/settingspage.hpp"
#include <QStringListModel>
namespace chatterino {
namespace widgets {
namespace settingspages {
class IgnoreUsersPage : public SettingsPage
{
public:
IgnoreUsersPage();
void onShow() final;
private:
QStringListModel userListModel;
};
} // namespace settingspages
} // namespace widgets
} // namespace chatterino