initial commit
This commit is contained in:
20
client/gui/dialogs/AboutWindow.h
Normal file
20
client/gui/dialogs/AboutWindow.h
Normal file
@@ -0,0 +1,20 @@
|
||||
#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;
|
||||
};
|
||||
Reference in New Issue
Block a user