Chatterino
FiltersPage.hpp
Go to the documentation of this file.
1 #pragma once
2 
5 
6 #include <QStringListModel>
7 
8 class QVBoxLayout;
9 
10 namespace chatterino {
11 
12 class FiltersPage : public SettingsPage
13 {
14 public:
15  FiltersPage();
16 
17  void onShow() final;
18 
19 private:
20  void tableCellClicked(const QModelIndex &clicked, EditableModelView *view);
21 
22  QStringListModel userListModel_;
23 };
24 
25 } // namespace chatterino
FiltersPage()
Definition: FiltersPage.cpp:19
Definition: Application.cpp:48
Definition: SettingsPage.hpp:49
Definition: EditableModelView.hpp:13
void onShow() final
Definition: FiltersPage.cpp:80
Definition: FiltersPage.hpp:12