mirror-chatterino2/src/widgets/settingspages/IgnorePage.hpp

21 lines
310 B
C++
Raw Normal View History

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
#include <QStringListModel>
2018-01-23 21:33:49 +01:00
namespace chatterino {
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();
void onShow() final;
private:
QStringListModel userListModel;
2018-01-23 21:33:49 +01:00
};
2018-01-23 21:33:49 +01:00
} // namespace chatterino