2018-01-23 21:33:49 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "widgets/settingspages/settingspage.hpp"
|
|
|
|
|
2018-05-12 20:34:13 +02:00
|
|
|
#include <QStringListModel>
|
|
|
|
|
2018-01-23 21:33:49 +01:00
|
|
|
namespace chatterino {
|
|
|
|
namespace widgets {
|
|
|
|
namespace settingspages {
|
2018-04-03 02:55:32 +02:00
|
|
|
|
2018-01-23 21:33:49 +01:00
|
|
|
class IgnoreUsersPage : public SettingsPage
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
IgnoreUsersPage();
|
2018-05-12 20:34:13 +02:00
|
|
|
|
|
|
|
void onShow() final;
|
|
|
|
|
|
|
|
private:
|
|
|
|
QStringListModel userListModel;
|
2018-01-23 21:33:49 +01:00
|
|
|
};
|
2018-04-03 02:55:32 +02:00
|
|
|
|
2018-01-23 21:33:49 +01:00
|
|
|
} // namespace settingspages
|
|
|
|
} // namespace widgets
|
|
|
|
} // namespace chatterino
|