2026-06-04 15:59:46 +02:00
|
|
|
#include "MainWindow.h"
|
|
|
|
|
#include "ui_MainWindow.h"
|
|
|
|
|
|
|
|
|
|
MainWindow::MainWindow(QWidget* parent) : SARibbonMainWindow(parent, false)
|
|
|
|
|
{
|
|
|
|
|
if (!isUseRibbon()) {
|
|
|
|
|
ui = new Ui::MainWindow;
|
|
|
|
|
ui->setupUi(this);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
MainWindow::~MainWindow()
|
|
|
|
|
{
|
|
|
|
|
delete ui;
|
|
|
|
|
}
|