From 481c71fc66a51de2d07648006f2fbb5a5ad71eb0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Michal=20Mal=C3=BD?= Date: Sat, 28 Feb 2015 19:28:22 +0100 Subject: [PATCH] Determine whetner the "Single signal" view mode is active from states of other widgets instead of storing the state in a variable. --- gui/mainwindow.cpp | 14 +++++++++++--- gui/mainwindow.h | 2 +- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/gui/mainwindow.cpp b/gui/mainwindow.cpp index f41973c..c4982b0 100644 --- a/gui/mainwindow.cpp +++ b/gui/mainwindow.cpp @@ -29,7 +29,7 @@ MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent), - m_singleSignalView(false), + //m_singleSignalView(false), ui(new Ui::MainWindow) { ui->setupUi(this); @@ -190,15 +190,23 @@ void MainWindow::onSWFullSizeToggle() QWidget* sender = qobject_cast(QObject::sender()); for (int idx = 0; idx < m_dashboard->count(); idx++) { - if (m_dashboard->widget(idx) != sender) { + /*if (m_dashboard->widget(idx) != sender) { if (!m_singleSignalView) m_dashboard->widget(idx)->hide(); else m_dashboard->widget(idx)->show(); + }*/ + QWidget* w = m_dashboard->widget(idx); + + if (w != sender) { + if (w->isHidden()) + w->show(); + else + w->hide(); } } - m_singleSignalView = !m_singleSignalView; + //m_singleSignalView = !m_singleSignalView; } void MainWindow::onZoomSelected() diff --git a/gui/mainwindow.h b/gui/mainwindow.h index b3f5da5..50b7bf1 100644 --- a/gui/mainwindow.h +++ b/gui/mainwindow.h @@ -58,7 +58,7 @@ private: //std::vector m_itemsOnDashboard; QSplitter* m_dashboard; QFileDialog* m_loadDataFileDialog; - bool m_singleSignalView; + //bool m_singleSignalView; Ui::MainWindow *ui; public slots: -- 2.43.5