[Qt] Add MainWindow class

This commit is contained in:
wheremyfoodat 2023-09-30 17:07:54 +03:00
parent 55bb0d7170
commit 155d2b8f24
5 changed files with 32 additions and 10 deletions
include/panda_qt

View file

@ -0,0 +1,16 @@
#pragma once
#include <QApplication>
#include <QtWidgets>
#include "panda_qt/screen.hpp"
class MainWindow : public QMainWindow {
Q_OBJECT
private:
ScreenWidget screen;
public:
MainWindow(QApplication* app, QWidget* parent = nullptr);
};