mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
51ece94f58
Co-authored-by: zneix <zneix@zneix.eu>
22 lines
314 B
C++
22 lines
314 B
C++
#pragma once
|
|
|
|
#include "widgets/settingspages/SettingsPage.hpp"
|
|
|
|
class QPushButton;
|
|
class QListWidget;
|
|
|
|
class QVBoxLayout;
|
|
|
|
namespace chatterino {
|
|
|
|
class NotificationPage : public SettingsPage
|
|
{
|
|
public:
|
|
NotificationPage();
|
|
|
|
private:
|
|
QComboBox *createToastReactionComboBox();
|
|
};
|
|
|
|
} // namespace chatterino
|