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

23 lines
333 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-07-05 16:45:34 +02:00
class QVBoxLayout;
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:
2018-07-06 19:23:47 +02:00
QStringListModel userListModel_;
2018-01-23 21:33:49 +01:00
};
2018-01-23 21:33:49 +01:00
} // namespace chatterino