setup main window

This commit is contained in:
talksik
2026-01-31 16:42:22 -08:00
parent fc762a1e41
commit 55374630b9
4 changed files with 54 additions and 3 deletions
+13
View File
@@ -0,0 +1,13 @@
#include "mainwindow.h"
#include <QLabel>
MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent)
{
QWidget *centralWidget = new QWidget(this);
QLabel *label = new QLabel(centralWidget);
label->setText("Let's get some stuff done!");
setCentralWidget(centralWidget);
}
MainWindow::~MainWindow() {}