mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
45 lines
785 B
C++
45 lines
785 B
C++
#pragma once
|
|
|
|
#include "widgets/BaseWidget.hpp"
|
|
|
|
#include <QIcon>
|
|
#include <QPaintEvent>
|
|
#include <QWidget>
|
|
|
|
namespace chatterino {
|
|
|
|
class SettingsPage;
|
|
class SettingsDialog;
|
|
|
|
class SettingsDialogTab : public BaseWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
SettingsDialogTab(SettingsDialog *dialog_, SettingsPage *page_,
|
|
QString imageFileName);
|
|
|
|
void setSelected(bool selected_);
|
|
SettingsPage *getSettingsPage();
|
|
|
|
signals:
|
|
void selectedChanged(bool);
|
|
|
|
private:
|
|
void paintEvent(QPaintEvent *);
|
|
void mousePressEvent(QMouseEvent *event);
|
|
|
|
struct {
|
|
QString labelText;
|
|
QIcon icon;
|
|
} ui_;
|
|
|
|
// Parent settings dialog
|
|
SettingsDialog *dialog_;
|
|
SettingsPage *page_;
|
|
|
|
bool selected_ = false;
|
|
};
|
|
|
|
} // namespace chatterino
|