2018-01-23 21:33:49 +01:00
|
|
|
#pragma once
|
|
|
|
|
2018-06-26 14:09:39 +02:00
|
|
|
#include "widgets/settingspages/SettingsPage.hpp"
|
2018-01-23 21:33:49 +01:00
|
|
|
|
2018-05-12 20:34:13 +02:00
|
|
|
#include <QStringListModel>
|
|
|
|
|
2018-07-05 16:45:34 +02:00
|
|
|
class QVBoxLayout;
|
|
|
|
|
2018-01-23 21:33:49 +01:00
|
|
|
namespace chatterino {
|
2018-04-03 02:55:32 +02:00
|
|
|
|
2018-07-05 16:22:25 +02:00
|
|
|
class IgnoresPage : public SettingsPage
|
2018-01-23 21:33:49 +01:00
|
|
|
{
|
|
|
|
public:
|
2018-07-05 16:22:25 +02:00
|
|
|
IgnoresPage();
|
2018-05-12 20:34:13 +02:00
|
|
|
|
|
|
|
void onShow() final;
|
|
|
|
|
|
|
|
private:
|
2018-07-06 19:23:47 +02:00
|
|
|
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 chatterino
|