mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Allow user to select graph order when resetting -- Standard or Advanced
This commit is contained in:
parent
f1e4face7f
commit
2e1069b8d0
@ -908,17 +908,23 @@ void Daily::ResetGraphLayout()
|
|||||||
{
|
{
|
||||||
GraphView->resetLayout();
|
GraphView->resetLayout();
|
||||||
}
|
}
|
||||||
void Daily::ResetGraphOrder()
|
void Daily::ResetGraphOrder(int type)
|
||||||
{
|
{
|
||||||
Day * day = p_profile->GetDay(previous_date,MT_CPAP);
|
if (type == 0) { // Auto order
|
||||||
|
Day * day = p_profile->GetDay(previous_date,MT_CPAP);
|
||||||
|
|
||||||
int cpapMode = day->getCPAPMode();
|
int cpapMode = day->getCPAPMode();
|
||||||
// qDebug() << "Daily::ResetGraphOrder cpapMode" << cpapMode;
|
// qDebug() << "Daily::ResetGraphOrder cpapMode" << cpapMode;
|
||||||
|
|
||||||
if (useAdvancedGraphs.contains(cpapMode))
|
if (useAdvancedGraphs.contains(cpapMode))
|
||||||
|
GraphView->resetGraphOrder(true, advancedGraphOrder);
|
||||||
|
else
|
||||||
|
GraphView->resetGraphOrder(true, standardGraphOrder);
|
||||||
|
} else if (type == 2) { // Advanced order
|
||||||
GraphView->resetGraphOrder(true, advancedGraphOrder);
|
GraphView->resetGraphOrder(true, advancedGraphOrder);
|
||||||
else
|
} else { // type == 1, standard order
|
||||||
GraphView->resetGraphOrder(true, standardGraphOrder);
|
GraphView->resetGraphOrder(true, standardGraphOrder);
|
||||||
|
}
|
||||||
|
|
||||||
// Enable all graphs (make them not hidden)
|
// Enable all graphs (make them not hidden)
|
||||||
for (int i=0;i<ui->graphCombo->count();i++) {
|
for (int i=0;i<ui->graphCombo->count();i++) {
|
||||||
|
@ -70,7 +70,7 @@ public:
|
|||||||
/*! \fn ResetGraphOrder()
|
/*! \fn ResetGraphOrder()
|
||||||
\brief Resets all graphs in the main gGraphView back to their initial order.
|
\brief Resets all graphs in the main gGraphView back to their initial order.
|
||||||
*/
|
*/
|
||||||
void ResetGraphOrder();
|
void ResetGraphOrder(int type = 0);
|
||||||
|
|
||||||
/*! \fn updateLeftSidebar()
|
/*! \fn updateLeftSidebar()
|
||||||
/brief Updtes left sidebar to reflect changes in pie chart visibility
|
/brief Updtes left sidebar to reflect changes in pie chart visibility
|
||||||
|
@ -1306,9 +1306,23 @@ void MainWindow::on_action_Reset_Graph_Layout_triggered()
|
|||||||
|
|
||||||
void MainWindow::on_action_Reset_Graph_Order_triggered()
|
void MainWindow::on_action_Reset_Graph_Order_triggered()
|
||||||
{
|
{
|
||||||
if (daily && (ui->tabWidget->currentWidget() == daily)) { daily->ResetGraphOrder(); }
|
if (daily && (ui->tabWidget->currentWidget() == daily)) { daily->ResetGraphOrder(0); }
|
||||||
|
|
||||||
if (overview && (ui->tabWidget->currentWidget() == overview)) { overview->ResetGraphOrder(); }
|
if (overview && (ui->tabWidget->currentWidget() == overview)) { overview->ResetGraphOrder(0); }
|
||||||
|
}
|
||||||
|
|
||||||
|
void MainWindow::on_action_Standard_Graph_Order_triggered()
|
||||||
|
{
|
||||||
|
if (daily && (ui->tabWidget->currentWidget() == daily)) { daily->ResetGraphOrder(1); }
|
||||||
|
|
||||||
|
if (overview && (ui->tabWidget->currentWidget() == overview)) { overview->ResetGraphOrder(1); }
|
||||||
|
}
|
||||||
|
|
||||||
|
void MainWindow::on_action_Advanced_Graph_Order_triggered()
|
||||||
|
{
|
||||||
|
if (daily && (ui->tabWidget->currentWidget() == daily)) { daily->ResetGraphOrder(2); }
|
||||||
|
|
||||||
|
if (overview && (ui->tabWidget->currentWidget() == overview)) { overview->ResetGraphOrder(2); }
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::on_action_Preferences_triggered()
|
void MainWindow::on_action_Preferences_triggered()
|
||||||
|
@ -216,6 +216,12 @@ class MainWindow : public QMainWindow
|
|||||||
//! \brief passes the ResetGraphOrder menu click to the Daily & Overview views
|
//! \brief passes the ResetGraphOrder menu click to the Daily & Overview views
|
||||||
void on_action_Reset_Graph_Order_triggered();
|
void on_action_Reset_Graph_Order_triggered();
|
||||||
|
|
||||||
|
//! \brief passes the ResetGraphOrder menu click to the Daily & Overview views
|
||||||
|
void on_action_Standard_Graph_Order_triggered();
|
||||||
|
|
||||||
|
//! \brief passes the ResetGraphOrder menu click to the Daily & Overview views
|
||||||
|
void on_action_Advanced_Graph_Order_triggered();
|
||||||
|
|
||||||
//! \brief Opens the Preferences Dialog, and saving changes if OK is pressed
|
//! \brief Opens the Preferences Dialog, and saving changes if OK is pressed
|
||||||
void on_action_Preferences_triggered();
|
void on_action_Preferences_triggered();
|
||||||
|
|
||||||
|
@ -1211,7 +1211,7 @@ QToolBox::tab:selected {
|
|||||||
<rect>
|
<rect>
|
||||||
<x>0</x>
|
<x>0</x>
|
||||||
<y>0</y>
|
<y>0</y>
|
||||||
<width>175</width>
|
<width>174</width>
|
||||||
<height>687</height>
|
<height>687</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
@ -1669,7 +1669,7 @@ border: 2px solid #56789a; border-radius: 30px;
|
|||||||
<rect>
|
<rect>
|
||||||
<x>0</x>
|
<x>0</x>
|
||||||
<y>0</y>
|
<y>0</y>
|
||||||
<width>175</width>
|
<width>174</width>
|
||||||
<height>687</height>
|
<height>687</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
@ -2714,7 +2714,7 @@ border-radius: 10px;
|
|||||||
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||||
p, li { white-space: pre-wrap; }
|
p, li { white-space: pre-wrap; }
|
||||||
</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;">
|
</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;">
|
||||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p></body></html></string>
|
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2';"><br /></p></body></html></string>
|
||||||
</property>
|
</property>
|
||||||
<property name="openLinks">
|
<property name="openLinks">
|
||||||
<bool>false</bool>
|
<bool>false</bool>
|
||||||
@ -2728,7 +2728,7 @@ p, li { white-space: pre-wrap; }
|
|||||||
<rect>
|
<rect>
|
||||||
<x>0</x>
|
<x>0</x>
|
||||||
<y>0</y>
|
<y>0</y>
|
||||||
<width>175</width>
|
<width>174</width>
|
||||||
<height>687</height>
|
<height>687</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
@ -2771,7 +2771,7 @@ p, li { white-space: pre-wrap; }
|
|||||||
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||||
p, li { white-space: pre-wrap; }
|
p, li { white-space: pre-wrap; }
|
||||||
</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;">
|
</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;">
|
||||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p></body></html></string>
|
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2';"><br /></p></body></html></string>
|
||||||
</property>
|
</property>
|
||||||
<property name="openLinks">
|
<property name="openLinks">
|
||||||
<bool>false</bool>
|
<bool>false</bool>
|
||||||
@ -2829,6 +2829,13 @@ p, li { white-space: pre-wrap; }
|
|||||||
<property name="title">
|
<property name="title">
|
||||||
<string>&View</string>
|
<string>&View</string>
|
||||||
</property>
|
</property>
|
||||||
|
<widget class="QMenu" name="menu_Reset_Graphs">
|
||||||
|
<property name="title">
|
||||||
|
<string>&Reset Graphs</string>
|
||||||
|
</property>
|
||||||
|
<addaction name="action_Standard_Graph_Order"/>
|
||||||
|
<addaction name="action_Advanced_Graph_Order"/>
|
||||||
|
</widget>
|
||||||
<addaction name="actionView_Statistics"/>
|
<addaction name="actionView_Statistics"/>
|
||||||
<addaction name="actionView_Daily"/>
|
<addaction name="actionView_Daily"/>
|
||||||
<addaction name="actionView_Overview"/>
|
<addaction name="actionView_Overview"/>
|
||||||
@ -2836,7 +2843,7 @@ p, li { white-space: pre-wrap; }
|
|||||||
<addaction name="action_Fullscreen"/>
|
<addaction name="action_Fullscreen"/>
|
||||||
<addaction name="action_Screenshot"/>
|
<addaction name="action_Screenshot"/>
|
||||||
<addaction name="separator"/>
|
<addaction name="separator"/>
|
||||||
<addaction name="action_Reset_Graph_Order"/>
|
<addaction name="menu_Reset_Graphs"/>
|
||||||
<addaction name="action_Reset_Graph_Layout"/>
|
<addaction name="action_Reset_Graph_Layout"/>
|
||||||
<addaction name="separator"/>
|
<addaction name="separator"/>
|
||||||
<addaction name="actionLine_Cursor"/>
|
<addaction name="actionLine_Cursor"/>
|
||||||
@ -3231,12 +3238,20 @@ p, li { white-space: pre-wrap; }
|
|||||||
<string>Ctrl+P</string>
|
<string>Ctrl+P</string>
|
||||||
</property>
|
</property>
|
||||||
</action>
|
</action>
|
||||||
<action name="action_Reset_Graph_Order">
|
<action name="action_Standard_Graph_Order">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>&Reset Graphs</string>
|
<string>Standard</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>Reset order of graphs page to initial order</string>
|
<string>Standard graph order, good for CPAP, APAP, Bi-Level</string>
|
||||||
|
</property>
|
||||||
|
</action>
|
||||||
|
<action name="action_Advanced_Graph_Order">
|
||||||
|
<property name="text">
|
||||||
|
<string>Advanced</string>
|
||||||
|
</property>
|
||||||
|
<property name="toolTip">
|
||||||
|
<string>Advanced graph order, good for ASV, AVAPS</string>
|
||||||
</property>
|
</property>
|
||||||
</action>
|
</action>
|
||||||
</widget>
|
</widget>
|
||||||
|
@ -451,8 +451,9 @@ void Overview::ResetGraphLayout()
|
|||||||
GraphView->resetLayout();
|
GraphView->resetLayout();
|
||||||
}
|
}
|
||||||
|
|
||||||
void Overview::ResetGraphOrder()
|
void Overview::ResetGraphOrder(int type)
|
||||||
{
|
{
|
||||||
|
Q_UNUSED(type)
|
||||||
GraphView->resetGraphOrder(false);
|
GraphView->resetGraphOrder(false);
|
||||||
ResetGraphLayout();
|
ResetGraphLayout();
|
||||||
}
|
}
|
||||||
|
@ -58,7 +58,7 @@ class Overview : public QWidget
|
|||||||
/*! \fn ResetGraphOrder()
|
/*! \fn ResetGraphOrder()
|
||||||
\brief Resets all graphs in the main gGraphView back to their initial order.
|
\brief Resets all graphs in the main gGraphView back to their initial order.
|
||||||
*/
|
*/
|
||||||
void ResetGraphOrder();
|
void ResetGraphOrder(int type);
|
||||||
|
|
||||||
//! \brief Calls updateGL to redraw the overview charts
|
//! \brief Calls updateGL to redraw the overview charts
|
||||||
void RedrawGraphs();
|
void RedrawGraphs();
|
||||||
|
Loading…
Reference in New Issue
Block a user