-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmainwindow.cpp
More file actions
30 lines (24 loc) · 1.02 KB
/
mainwindow.cpp
File metadata and controls
30 lines (24 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include "modeltonsbmd.h"
#include "texturetonsbtx.h"
#include "texturednsbmdtonsbtx.h"
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
ModelToNSBMD *ModelToNSBMD_Window = new ModelToNSBMD;
ui->ModelToNSBMD_mdiArea->addSubWindow(ModelToNSBMD_Window, Qt::FramelessWindowHint | Qt::MSWindowsFixedSizeDialogHint);
ModelToNSBMD_Window->showMaximized();
TextureToNSBTX *TextureToNSBTX_Window = new TextureToNSBTX;
ui->TextureToNSBTX_mdiArea->addSubWindow(TextureToNSBTX_Window, Qt::FramelessWindowHint | Qt::MSWindowsFixedSizeDialogHint);
TextureToNSBTX_Window->showMaximized();
TexturedNSBMDToNSBTX *TexturedNSBMDToNSBTX_Window = new TexturedNSBMDToNSBTX;
ui->TexturedNSBMDToNSBTX_mdiArea->addSubWindow(TexturedNSBMDToNSBTX_Window, Qt::FramelessWindowHint | Qt::MSWindowsFixedSizeDialogHint);
TexturedNSBMDToNSBTX_Window->showMaximized();
}
MainWindow::~MainWindow()
{
delete ui;
}