From 60d1460ef6467c02176915ee4afc7ab25a1c6240 Mon Sep 17 00:00:00 2001 From: Phil Olynyk Date: Mon, 25 Mar 2019 21:10:03 -0400 Subject: [PATCH] Add public EnableTabs so refreshing welcome page does tabs too --- oscar/mainwindow.cpp | 6 ++++++ oscar/mainwindow.h | 2 ++ oscar/welcome.cpp | 13 +++++++------ 3 files changed, 15 insertions(+), 6 deletions(-) diff --git a/oscar/mainwindow.cpp b/oscar/mainwindow.cpp index fe5714e8..5fc6a4d0 100644 --- a/oscar/mainwindow.cpp +++ b/oscar/mainwindow.cpp @@ -290,6 +290,12 @@ void MainWindow::log(QString text) logger->appendClean(text); } +void MainWindow::EnableTabs(bool b) +{ + ui->tabWidget->setTabEnabled(2, b); + ui->tabWidget->setTabEnabled(3, b); + ui->tabWidget->setTabEnabled(4, b); +} void MainWindow::Notify(QString s, QString title, int ms) { diff --git a/oscar/mainwindow.h b/oscar/mainwindow.h index c6543b46..69bc823a 100644 --- a/oscar/mainwindow.h +++ b/oscar/mainwindow.h @@ -103,6 +103,8 @@ class MainWindow : public QMainWindow //! \brief Start the automatic update checker process void CheckForUpdates(); + void EnableTabs(bool b); + void CloseProfile(); bool OpenProfile(QString name, bool skippassword = false); diff --git a/oscar/welcome.cpp b/oscar/welcome.cpp index 7af15cf7..970b313c 100644 --- a/oscar/welcome.cpp +++ b/oscar/welcome.cpp @@ -34,11 +34,11 @@ void Welcome::refreshPage() { bool b; - if (p_profile != nullptr) { +// if (p_profile != nullptr) { const auto & mlist = p_profile->GetMachines(MT_CPAP); b = mlist.size() > 0; - } else - b = false; +// } else +// b = false; bool showCardWarning = !b; @@ -57,9 +57,10 @@ void Welcome::refreshPage() ui->dailyButton->setEnabled(b); ui->overviewButton->setEnabled(b); ui->statisticsButton->setEnabled(b); - ui->tabWidget->setTabEnabled(2, b); - ui->tabWidget->setTabEnabled(3, b); - ui->tabWidget->setTabEnabled(4, b); + mainwin->EnableTabs(b); +/** MainWindow::ui->tabWidget->setTabEnabled(2, b);********* need to find some other way +*** MainWindow::ui->tabWidget->setTabEnabled(3, b);********* to enable these tabs ****** +*** MainWindow::ui->tabWidget->setTabEnabled(4, b);************************************/ ui->cpapInfo->setHtml(GenerateCPAPHTML()); ui->oxiInfo->setHtml(GenerateOxiHTML());