mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
bf0b5d08d8
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
25 lines
422 B
C++
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
|