mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
5957551d06
* Support for user-defined sounds and colors * Make color & sound columns selectable * Add custom row for subscription highlights * Add subscriptions to custom highlights and centrally manage highlight colors * Dynamically update message highlight colors
26 lines
466 B
C++
26 lines
466 B
C++
#pragma once
|
|
|
|
#include "widgets/helper/EditableModelView.hpp"
|
|
#include "widgets/settingspages/SettingsPage.hpp"
|
|
|
|
#include <QAbstractTableModel>
|
|
#include <QTimer>
|
|
|
|
class QPushButton;
|
|
class QListWidget;
|
|
|
|
namespace chatterino {
|
|
|
|
class HighlightingPage : public SettingsPage
|
|
{
|
|
public:
|
|
HighlightingPage();
|
|
|
|
private:
|
|
QTimer disabledUsersChangedTimer_;
|
|
|
|
void tableCellClicked(const QModelIndex &clicked, EditableModelView *view);
|
|
};
|
|
|
|
} // namespace chatterino
|