mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-08 07:05:40 +12:00
24 lines
No EOL
417 B
C++
24 lines
No EOL
417 B
C++
#pragma once
|
|
|
|
#include <QApplication>
|
|
#include <QMenuBar>
|
|
#include <QPalette>
|
|
#include <QPushBUtton>
|
|
#include <QtWidgets>
|
|
|
|
#include "panda_qt/screen.hpp"
|
|
|
|
class MainWindow : public QMainWindow {
|
|
Q_OBJECT
|
|
|
|
private:
|
|
QMenuBar* menuBar = nullptr;
|
|
QPushButton* themeButton = nullptr;
|
|
ScreenWidget screen;
|
|
|
|
void setDarkTheme();
|
|
|
|
public:
|
|
MainWindow(QApplication* app, QWidget* parent = nullptr);
|
|
~MainWindow();
|
|
}; |