DSCAnalysisTool/src/mainwindow.cpp

23 lines
422 B
C++
Raw Normal View History

2025-03-05 09:33:46 +00:00
#include "mainwindow.h"
#include "ui_mainwindow.h"
MainWindow::MainWindow(QWidget *parent)
: QMainWindow(parent)
, ui(new Ui::MainWindow)
, _centralWidget(new CentralWidget)
2025-03-10 09:35:07 +00:00
,_leftWidget(new LeftWidget)
2025-03-05 09:33:46 +00:00
{
ui->setupUi(this);
this->setToolTip(".....");
setCentralWidget(_centralWidget);
2025-03-10 09:35:07 +00:00
addDockWidget(Qt::LeftDockWidgetArea, _leftWidget);
2025-03-05 09:33:46 +00:00
}
MainWindow::~MainWindow()
{
delete ui;
}