From 4cc8f33b90f26216264dd7cf648c8060f5c9bdd8 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Wed, 4 Jan 2012 00:59:15 +1000 Subject: [PATCH] Added quick hide/show all button to overview --- overview.cpp | 59 ++++++++++++++++++++++++++++++++++++++++++++++++++-- overview.h | 4 +++- overview.ui | 22 ++++++++++++++++++++ 3 files changed, 82 insertions(+), 3 deletions(-) diff --git a/overview.cpp b/overview.cpp index 1ae80d0a..34059e5f 100644 --- a/overview.cpp +++ b/overview.cpp @@ -302,6 +302,7 @@ gGraph * Overview::createGraph(QString name,QString units, YTickerType yttype) void Overview::ReloadGraphs() { GraphView->setDay(NULL); + updateCube(); on_rangeCombo_activated(ui->rangeCombo->currentIndex()); } @@ -310,6 +311,10 @@ void Overview::updateGraphCombo() { ui->graphCombo->clear(); gGraph *g; +// ui->graphCombo->addItem("Show All Graphs"); +// ui->graphCombo->addItem("Hide All Graphs"); +// ui->graphCombo->addItem("---------------"); + for (int i=0;isize();i++) { g=(*GraphView)[i]; if (g->isEmpty()) continue; @@ -320,6 +325,8 @@ void Overview::updateGraphCombo() ui->graphCombo->addItem(*icon_off,g->title(),false); } } + ui->graphCombo->setCurrentIndex(0); + updateCube(); } void Overview::ResetGraphs() @@ -327,6 +334,7 @@ void Overview::ResetGraphs() QDate start=ui->dateStart->date(); QDate end=ui->dateEnd->date(); GraphView->setDay(NULL); + updateCube(); if (start.isValid() && end.isValid()) { setRange(start,end); } @@ -494,6 +502,9 @@ void Overview::on_graphCombo_activated(int index) if (index<0) return; + gGraph *g; + QString s; + s=ui->graphCombo->currentText(); bool b=!ui->graphCombo->itemData(index,Qt::UserRole).toBool(); ui->graphCombo->setItemData(index,b,Qt::UserRole); if (b) { @@ -501,9 +512,53 @@ void Overview::on_graphCombo_activated(int index) } else { ui->graphCombo->setItemIcon(index,*icon_off); } - QString s=ui->graphCombo->currentText(); - gGraph *g=GraphView->findGraph(s); + g=GraphView->findGraph(s); g->setVisible(b); + + updateCube(); + GraphView->updateScale(); + GraphView->redraw(); +} +void Overview::updateCube() +{ + if ((GraphView->visibleGraphs()==0)) { + ui->toggleVisibility->setArrowType(Qt::UpArrow); + ui->toggleVisibility->setToolTip(tr("Show all graphs")); + ui->toggleVisibility->blockSignals(true); + ui->toggleVisibility->setChecked(true); + ui->toggleVisibility->blockSignals(false); + + if (ui->graphCombo->count()>0) { + GraphView->setEmptyText(tr("No Graphs On!")); + GraphView->setCubeImage(images["sheep"]); + + } else { + GraphView->setEmptyText("No Data"); + GraphView->setCubeImage(images["nodata"]); + } + } else { + ui->toggleVisibility->setArrowType(Qt::DownArrow); + ui->toggleVisibility->setToolTip(tr("Hide all graphs")); + ui->toggleVisibility->blockSignals(true); + ui->toggleVisibility->setChecked(false); + ui->toggleVisibility->blockSignals(false); + } +} + +void Overview::on_toggleVisibility_clicked(bool checked) +{ + gGraph *g; + QString s; + QIcon *icon=checked ? icon_off : icon_on; + //ui->toggleVisibility->setArrowType(checked ? Qt::UpArrow : Qt::DownArrow); + for (int i=0;igraphCombo->count();i++) { + s=ui->graphCombo->itemText(i); + ui->graphCombo->setItemIcon(i,*icon); + ui->graphCombo->setItemData(i,!checked,Qt::UserRole); + g=GraphView->findGraph(s); + g->setVisible(!checked); + } + updateCube(); GraphView->updateScale(); GraphView->redraw(); } diff --git a/overview.h b/overview.h index 9b92c354..3eb7f118 100644 --- a/overview.h +++ b/overview.h @@ -100,6 +100,8 @@ private slots: void on_graphCombo_activated(int index); + void on_toggleVisibility_clicked(bool checked); + private: Ui::Overview *ui; gGraphView *GraphView; @@ -111,7 +113,7 @@ private: //! \brief Updates the calendar highlighting for the calendar object for this date. void UpdateCalendarDay(QDateEdit * calendar,QDate date); - + void updateCube(); //SessionTimes *session_times; //,*PRESSURE,*LEAK,*SESSTIMES; diff --git a/overview.ui b/overview.ui index e662bd28..e4c32f03 100644 --- a/overview.ui +++ b/overview.ui @@ -160,8 +160,30 @@ + + + + Toggle Graph Visibility + + + ... + + + true + + + true + + + Qt::DownArrow + + + + + Drop down to see list of graphs to switch on/off. + Graphs