Add the Qt windows

This commit is contained in:
2023-06-13 09:34:29 +02:00
parent a248d1e956
commit d9bb801d6b
10 changed files with 1860 additions and 0 deletions

23
mainwindow.hpp Normal file
View File

@@ -0,0 +1,23 @@
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include "playwindow.hpp"
QT_BEGIN_NAMESPACE
namespace Ui { class MainWindow; }
QT_END_NAMESPACE
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
MainWindow(QWidget *parent = nullptr);
~MainWindow();
private:
Ui::MainWindow *ui;
playWindow *playwindow;
};
#endif // MAINWINDOW_H