40 lines
1.6 KiB
C++
40 lines
1.6 KiB
C++
/*##############################################################################
|
|
## Author: Shaun Reed ##
|
|
## Legal: All Content (c) 2022 Shaun Reed, all rights reserved ##
|
|
## About: MainWindow for creating an example Qt application ##
|
|
## ##
|
|
## Contact: shaunrd0@gmail.com | URL: www.shaunreed.com | GitHub: shaunrd0 ##
|
|
##############################################################################*/
|
|
|
|
#include <mainwindow.h>
|
|
#include <qtkwidget.h>
|
|
#include "ui_mainwindow.h"
|
|
|
|
MainWindow::MainWindow(QWidget * parent) :
|
|
QMainWindow(parent), ui(new Ui::MainWindow) {
|
|
// For use in design mode using Qt Creator
|
|
// + We can use the `ui` member to access nested widgets by name
|
|
ui->setupUi(this);
|
|
|
|
// Find all QtkWidgets in this QMainWindow and initialize their scenes.
|
|
auto children = ui->centralwidget->findChildren<Qtk::QtkWidget *>();
|
|
for(const auto qtkWidget : children) {
|
|
std::string key = qtkWidget->objectName().toStdString();
|
|
// Initialize each scene into a map if it doesn't exist.
|
|
if(mScenes[key] == nullptr) {
|
|
mScenes[key] = new ExampleScene();
|
|
}
|
|
// Set the QtkWidget to use the scene associated with this widget.
|
|
qtkWidget->setScene(mScenes[key]);
|
|
}
|
|
// TODO: Use QPlainTextEdit or similar for debug console
|
|
|
|
// Set the window icon used for Qtk.
|
|
// TODO: Update this to be something other than kilroy.
|
|
setWindowIcon(QIcon("../resources/icon.png"));
|
|
}
|
|
|
|
MainWindow::~MainWindow() {
|
|
delete ui;
|
|
}
|