XPlor/app/aboutdialog.h

29 lines
524 B
C
Raw Normal View History

2025-09-05 19:43:31 +00:00
#ifndef ABOUTDIALOG_H
#define ABOUTDIALOG_H
#include <QDialog>
#include <QColor>
2025-09-05 19:43:31 +00:00
class AboutDialog : public QDialog
{
Q_OBJECT
public:
explicit AboutDialog(QWidget *parent = nullptr);
protected:
void paintEvent(QPaintEvent *event) override;
2025-09-05 19:43:31 +00:00
private:
QColor mPrimaryColor;
QColor mBgColor;
QColor mTextColor;
QColor mTextColorMuted;
QColor mBorderColor;
static constexpr int WIDTH = 380;
static constexpr int HEIGHT = 200;
2025-09-05 19:43:31 +00:00
};
#endif // ABOUTDIALOG_H