mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 19:20:45 +00:00
Mainwindow destructor cleanup
This commit is contained in:
parent
2b62343e61
commit
2fca186def
@ -153,8 +153,8 @@ MainWindow::MainWindow(QWidget *parent) :
|
|||||||
// Using the dirty registry here. :(
|
// Using the dirty registry here. :(
|
||||||
QSettings settings(getDeveloperName(), getAppName());
|
QSettings settings(getDeveloperName(), getAppName());
|
||||||
|
|
||||||
// Load previous Window geometry
|
// Load previous Window geometry (this is currently broken on Mac as of Qt5.2.1)
|
||||||
this->restoreGeometry(settings.value("MainWindow/geometry").toByteArray());
|
restoreGeometry(settings.value("MainWindow/geometry").toByteArray());
|
||||||
|
|
||||||
daily = new Daily(ui->tabWidget, nullptr);
|
daily = new Daily(ui->tabWidget, nullptr);
|
||||||
ui->tabWidget->insertTab(1, daily, STR_TR_Daily);
|
ui->tabWidget->insertTab(1, daily, STR_TR_Daily);
|
||||||
@ -206,17 +206,9 @@ MainWindow::MainWindow(QWidget *parent) :
|
|||||||
|
|
||||||
on_homeButton_clicked();
|
on_homeButton_clicked();
|
||||||
}
|
}
|
||||||
extern MainWindow *mainwin;
|
|
||||||
MainWindow::~MainWindow()
|
void MainWindow::closeEvent(QCloseEvent * event)
|
||||||
{
|
{
|
||||||
if (systraymenu) { delete systraymenu; }
|
|
||||||
|
|
||||||
if (systray) { delete systray; }
|
|
||||||
|
|
||||||
// Save current window position
|
|
||||||
QSettings settings(getDeveloperName(), getAppName());
|
|
||||||
settings.setValue("MainWindow/geometry", saveGeometry());
|
|
||||||
|
|
||||||
if (daily) {
|
if (daily) {
|
||||||
daily->close();
|
daily->close();
|
||||||
delete daily;
|
delete daily;
|
||||||
@ -232,12 +224,25 @@ MainWindow::~MainWindow()
|
|||||||
delete oximetry;
|
delete oximetry;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Trash anything allocated by the Graph objects
|
|
||||||
DestroyGraphGlobals();
|
|
||||||
|
|
||||||
// Shutdown and Save the current User profile
|
// Shutdown and Save the current User profile
|
||||||
Profiles::Done();
|
Profiles::Done();
|
||||||
|
|
||||||
|
// Save current window position
|
||||||
|
QSettings settings(getDeveloperName(), getAppName());
|
||||||
|
settings.setValue("MainWindow/geometry", saveGeometry());
|
||||||
|
QMainWindow::closeEvent(event);
|
||||||
|
}
|
||||||
|
|
||||||
|
extern MainWindow *mainwin;
|
||||||
|
MainWindow::~MainWindow()
|
||||||
|
{
|
||||||
|
if (systraymenu) { delete systraymenu; }
|
||||||
|
|
||||||
|
if (systray) { delete systray; }
|
||||||
|
|
||||||
|
// Trash anything allocated by the Graph objects
|
||||||
|
DestroyGraphGlobals();
|
||||||
|
|
||||||
mainwin = nullptr;
|
mainwin = nullptr;
|
||||||
delete ui;
|
delete ui;
|
||||||
}
|
}
|
||||||
|
@ -142,6 +142,8 @@ class MainWindow : public QMainWindow
|
|||||||
//! \brief Internal function to set Records Box html from statistics module
|
//! \brief Internal function to set Records Box html from statistics module
|
||||||
void setRecBoxHTML(QString html);
|
void setRecBoxHTML(QString html);
|
||||||
|
|
||||||
|
void closeEvent(QCloseEvent *);
|
||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
//! \brief Recalculate all event summaries and flags
|
//! \brief Recalculate all event summaries and flags
|
||||||
void doReprocessEvents();
|
void doReprocessEvents();
|
||||||
|
Loading…
Reference in New Issue
Block a user