mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 19:20:45 +00:00
Added quick hide/show all button to overview
This commit is contained in:
parent
ef4c68544b
commit
4cc8f33b90
59
overview.cpp
59
overview.cpp
@ -302,6 +302,7 @@ gGraph * Overview::createGraph(QString name,QString units, YTickerType yttype)
|
|||||||
void Overview::ReloadGraphs()
|
void Overview::ReloadGraphs()
|
||||||
{
|
{
|
||||||
GraphView->setDay(NULL);
|
GraphView->setDay(NULL);
|
||||||
|
updateCube();
|
||||||
|
|
||||||
on_rangeCombo_activated(ui->rangeCombo->currentIndex());
|
on_rangeCombo_activated(ui->rangeCombo->currentIndex());
|
||||||
}
|
}
|
||||||
@ -310,6 +311,10 @@ void Overview::updateGraphCombo()
|
|||||||
{
|
{
|
||||||
ui->graphCombo->clear();
|
ui->graphCombo->clear();
|
||||||
gGraph *g;
|
gGraph *g;
|
||||||
|
// ui->graphCombo->addItem("Show All Graphs");
|
||||||
|
// ui->graphCombo->addItem("Hide All Graphs");
|
||||||
|
// ui->graphCombo->addItem("---------------");
|
||||||
|
|
||||||
for (int i=0;i<GraphView->size();i++) {
|
for (int i=0;i<GraphView->size();i++) {
|
||||||
g=(*GraphView)[i];
|
g=(*GraphView)[i];
|
||||||
if (g->isEmpty()) continue;
|
if (g->isEmpty()) continue;
|
||||||
@ -320,6 +325,8 @@ void Overview::updateGraphCombo()
|
|||||||
ui->graphCombo->addItem(*icon_off,g->title(),false);
|
ui->graphCombo->addItem(*icon_off,g->title(),false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
ui->graphCombo->setCurrentIndex(0);
|
||||||
|
updateCube();
|
||||||
}
|
}
|
||||||
|
|
||||||
void Overview::ResetGraphs()
|
void Overview::ResetGraphs()
|
||||||
@ -327,6 +334,7 @@ void Overview::ResetGraphs()
|
|||||||
QDate start=ui->dateStart->date();
|
QDate start=ui->dateStart->date();
|
||||||
QDate end=ui->dateEnd->date();
|
QDate end=ui->dateEnd->date();
|
||||||
GraphView->setDay(NULL);
|
GraphView->setDay(NULL);
|
||||||
|
updateCube();
|
||||||
if (start.isValid() && end.isValid()) {
|
if (start.isValid() && end.isValid()) {
|
||||||
setRange(start,end);
|
setRange(start,end);
|
||||||
}
|
}
|
||||||
@ -494,6 +502,9 @@ void Overview::on_graphCombo_activated(int index)
|
|||||||
if (index<0)
|
if (index<0)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
gGraph *g;
|
||||||
|
QString s;
|
||||||
|
s=ui->graphCombo->currentText();
|
||||||
bool b=!ui->graphCombo->itemData(index,Qt::UserRole).toBool();
|
bool b=!ui->graphCombo->itemData(index,Qt::UserRole).toBool();
|
||||||
ui->graphCombo->setItemData(index,b,Qt::UserRole);
|
ui->graphCombo->setItemData(index,b,Qt::UserRole);
|
||||||
if (b) {
|
if (b) {
|
||||||
@ -501,9 +512,53 @@ void Overview::on_graphCombo_activated(int index)
|
|||||||
} else {
|
} else {
|
||||||
ui->graphCombo->setItemIcon(index,*icon_off);
|
ui->graphCombo->setItemIcon(index,*icon_off);
|
||||||
}
|
}
|
||||||
QString s=ui->graphCombo->currentText();
|
g=GraphView->findGraph(s);
|
||||||
gGraph *g=GraphView->findGraph(s);
|
|
||||||
g->setVisible(b);
|
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;i<ui->graphCombo->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->updateScale();
|
||||||
GraphView->redraw();
|
GraphView->redraw();
|
||||||
}
|
}
|
||||||
|
@ -100,6 +100,8 @@ private slots:
|
|||||||
|
|
||||||
void on_graphCombo_activated(int index);
|
void on_graphCombo_activated(int index);
|
||||||
|
|
||||||
|
void on_toggleVisibility_clicked(bool checked);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
Ui::Overview *ui;
|
Ui::Overview *ui;
|
||||||
gGraphView *GraphView;
|
gGraphView *GraphView;
|
||||||
@ -111,7 +113,7 @@ private:
|
|||||||
|
|
||||||
//! \brief Updates the calendar highlighting for the calendar object for this date.
|
//! \brief Updates the calendar highlighting for the calendar object for this date.
|
||||||
void UpdateCalendarDay(QDateEdit * calendar,QDate date);
|
void UpdateCalendarDay(QDateEdit * calendar,QDate date);
|
||||||
|
void updateCube();
|
||||||
|
|
||||||
//SessionTimes *session_times;
|
//SessionTimes *session_times;
|
||||||
//,*PRESSURE,*LEAK,*SESSTIMES;
|
//,*PRESSURE,*LEAK,*SESSTIMES;
|
||||||
|
22
overview.ui
22
overview.ui
@ -160,8 +160,30 @@
|
|||||||
</property>
|
</property>
|
||||||
</spacer>
|
</spacer>
|
||||||
</item>
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QToolButton" name="toggleVisibility">
|
||||||
|
<property name="toolTip">
|
||||||
|
<string>Toggle Graph Visibility</string>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>...</string>
|
||||||
|
</property>
|
||||||
|
<property name="checkable">
|
||||||
|
<bool>true</bool>
|
||||||
|
</property>
|
||||||
|
<property name="autoRaise">
|
||||||
|
<bool>true</bool>
|
||||||
|
</property>
|
||||||
|
<property name="arrowType">
|
||||||
|
<enum>Qt::DownArrow</enum>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<widget class="QComboBox" name="graphCombo">
|
<widget class="QComboBox" name="graphCombo">
|
||||||
|
<property name="toolTip">
|
||||||
|
<string>Drop down to see list of graphs to switch on/off.</string>
|
||||||
|
</property>
|
||||||
<item>
|
<item>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Graphs</string>
|
<string>Graphs</string>
|
||||||
|
Loading…
Reference in New Issue
Block a user