Mainwindow destructor cleanup

This commit is contained in:
Mark Watkins 2014-04-28 13:40:50 +10:00
parent 2b62343e61
commit 2fca186def
2 changed files with 22 additions and 15 deletions

View File

@ -153,8 +153,8 @@ MainWindow::MainWindow(QWidget *parent) :
// Using the dirty registry here. :(
QSettings settings(getDeveloperName(), getAppName());
// Load previous Window geometry
this->restoreGeometry(settings.value("MainWindow/geometry").toByteArray());
// Load previous Window geometry (this is currently broken on Mac as of Qt5.2.1)
restoreGeometry(settings.value("MainWindow/geometry").toByteArray());
daily = new Daily(ui->tabWidget, nullptr);
ui->tabWidget->insertTab(1, daily, STR_TR_Daily);
@ -206,17 +206,9 @@ MainWindow::MainWindow(QWidget *parent) :
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) {
daily->close();
delete daily;
@ -232,12 +224,25 @@ MainWindow::~MainWindow()
delete oximetry;
}
// Trash anything allocated by the Graph objects
DestroyGraphGlobals();
// Shutdown and Save the current User profile
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;
delete ui;
}

View File

@ -142,6 +142,8 @@ class MainWindow : public QMainWindow
//! \brief Internal function to set Records Box html from statistics module
void setRecBoxHTML(QString html);
void closeEvent(QCloseEvent *);
public slots:
//! \brief Recalculate all event summaries and flags
void doReprocessEvents();