20 lines
352 B
C++
20 lines
352 B
C++
#pragma once
|
|
#include <QDialog>
|
|
|
|
class QLabel;
|
|
class QPushButton;
|
|
|
|
class AboutWindow : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit AboutWindow(QWidget* parent = nullptr);
|
|
|
|
private:
|
|
QLabel* titleLabel;
|
|
QLabel* versionLabel;
|
|
QLabel* authorLabel;
|
|
QLabel* descLabel;
|
|
// QPushButton* githubButton;
|
|
QPushButton* closeButton;
|
|
}; |