2018-01-12 23:09:05 +01:00
|
|
|
#pragma once
|
|
|
|
|
2018-01-13 02:00:02 +01:00
|
|
|
#include <QTimer>
|
|
|
|
|
2018-01-12 23:09:05 +01:00
|
|
|
#include "widgets/settingspages/settingspage.hpp"
|
|
|
|
|
2018-01-13 02:00:02 +01:00
|
|
|
class QPushButton;
|
|
|
|
class QListWidget;
|
|
|
|
|
2018-01-12 23:09:05 +01:00
|
|
|
namespace chatterino {
|
|
|
|
namespace widgets {
|
|
|
|
namespace settingspages {
|
|
|
|
|
|
|
|
class HighlightingPage : public SettingsPage
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
HighlightingPage();
|
2018-01-13 02:00:02 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
QListWidget *highlightList;
|
|
|
|
QPushButton *highlightAdd;
|
|
|
|
QPushButton *highlightEdit;
|
|
|
|
QPushButton *highlightRemove;
|
|
|
|
|
|
|
|
QTimer disabledUsersChangedTimer;
|
|
|
|
|
|
|
|
void addHighlightTabSignals();
|
2018-01-12 23:09:05 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace settingspages
|
|
|
|
} // namespace widgets
|
|
|
|
} // namespace chatterino
|