mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10:44 +00:00
Add a progressbar when opening an overview with a large number of days
This commit is contained in:
parent
36acc7bd2f
commit
79e34d067a
@ -23,6 +23,7 @@
|
|||||||
#include "Graphs/gXAxis.h"
|
#include "Graphs/gXAxis.h"
|
||||||
#include "Graphs/gLineChart.h"
|
#include "Graphs/gLineChart.h"
|
||||||
#include "Graphs/gYAxis.h"
|
#include "Graphs/gYAxis.h"
|
||||||
|
#include "cprogressbar.h"
|
||||||
|
|
||||||
#include "mainwindow.h"
|
#include "mainwindow.h"
|
||||||
extern MainWindow *mainwin;
|
extern MainWindow *mainwin;
|
||||||
@ -497,6 +498,26 @@ void Overview::on_rangeCombo_activated(int index)
|
|||||||
|
|
||||||
if (start < p_profile->FirstDay()) { start = p_profile->FirstDay(); }
|
if (start < p_profile->FirstDay()) { start = p_profile->FirstDay(); }
|
||||||
|
|
||||||
|
// Ensure that all summary files are available and update version numbers if required
|
||||||
|
int size = start.daysTo(end);
|
||||||
|
qDebug() << "Overview range combo from" << start << "to" << end << "with" << size << "days";
|
||||||
|
QDate dateback = end;
|
||||||
|
CProgressBar * progress = new CProgressBar (QObject::tr("Loading summaries"), mainwin, size);
|
||||||
|
for (int i=1; i < size; ++i) {
|
||||||
|
progress->add(1);
|
||||||
|
auto di = p_profile->daylist.find(dateback);
|
||||||
|
dateback = dateback.addDays(-1);
|
||||||
|
if (di == p_profile->daylist.end()) // Check for no Day entry
|
||||||
|
continue;
|
||||||
|
Day * day = di.value();
|
||||||
|
if (!day)
|
||||||
|
continue;
|
||||||
|
if (day->size() <= 0)
|
||||||
|
continue;
|
||||||
|
day->OpenSummary(); // This can be slow if summary needs to be updated to new version
|
||||||
|
}
|
||||||
|
progress->close();
|
||||||
|
|
||||||
// first and last dates for ANY machine type
|
// first and last dates for ANY machine type
|
||||||
setRange(start, end);
|
setRange(start, end);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user