mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-06-01 19:39:10 +12:00
[Qt] Add MainWindow class
This commit is contained in:
parent
55bb0d7170
commit
155d2b8f24
5 changed files with 32 additions and 10 deletions
include/panda_qt
16
include/panda_qt/main_window.hpp
Normal file
16
include/panda_qt/main_window.hpp
Normal 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);
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue