mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Force Progress bar updates
This commit is contained in:
parent
61520a33f3
commit
ee49d4dedd
@ -176,13 +176,11 @@ void gFlagsLine::Plot(gGraphWindow & w,float scrx,float scry)
|
||||
}
|
||||
}
|
||||
}
|
||||
glLineWidth (1);
|
||||
|
||||
glColor4ub(col.red(),col.green(),col.blue(),col.alpha());
|
||||
glScissor(w.GetLeftMargin(),w.GetBottomMargin(),width,height);
|
||||
glEnable(GL_SCISSOR_TEST);
|
||||
|
||||
glLineWidth (1);
|
||||
glLineWidth (1.5);
|
||||
bool antialias=pref["UseAntiAliasing"].toBool();
|
||||
if (antialias) {
|
||||
glEnable(GL_BLEND);
|
||||
|
@ -263,7 +263,7 @@ void gLineChart::Plot(gGraphWindow & w,float scrx,float scry)
|
||||
EventDataType ymin=miny/gain;
|
||||
|
||||
const vector<EventStoreType> & dat=el.getData();
|
||||
//const vector<qint32> & tim=el.getTime();
|
||||
const vector<quint32> & tim=el.getTime();
|
||||
|
||||
done=false;
|
||||
first=true;
|
||||
@ -274,7 +274,9 @@ void gLineChart::Plot(gGraphWindow & w,float scrx,float scry)
|
||||
qint64 rate=sr*sam;
|
||||
|
||||
if (accel) {
|
||||
|
||||
//////////////////////////////////////////////////////////////////
|
||||
// Accelerated Waveform Plot
|
||||
//////////////////////////////////////////////////////////////////
|
||||
for (int i=idx;i<siz;i+=sam) {
|
||||
time+=rate;
|
||||
//time=el.time(i);
|
||||
@ -313,6 +315,9 @@ void gLineChart::Plot(gGraphWindow & w,float scrx,float scry)
|
||||
}
|
||||
|
||||
} else { // Zoomed in Waveform
|
||||
//////////////////////////////////////////////////////////////////
|
||||
// Normal Waveform Plot
|
||||
//////////////////////////////////////////////////////////////////
|
||||
for (int i=idx;i<siz;i+=sam,time+=rate) {
|
||||
if (time < minx)
|
||||
continue; // Skip stuff before the start of our data window
|
||||
@ -350,14 +355,15 @@ void gLineChart::Plot(gGraphWindow & w,float scrx,float scry)
|
||||
// Standard events/zoomed in Plot
|
||||
//////////////////////////////////////////////////////////////////
|
||||
first=true;
|
||||
qint64 start=el.first();
|
||||
for (int i=idx;i<siz;i+=sam) {
|
||||
time=el.time(i);
|
||||
time=start+tim[i];//el.time(i);
|
||||
|
||||
if (first) {
|
||||
if (num_points>5 && (time < minx)) continue; // Skip stuff before the start of our data window
|
||||
first=false;
|
||||
if (i>=sam) i-=sam; // Start with the previous sample (which will be in clipping area)
|
||||
time=el.time(i); //el.time(i);
|
||||
time=start+tim[i];//el.time(i); //el.time(i);
|
||||
}
|
||||
data=dat[i]*gain; //
|
||||
//data=el.data(i); // raw access is faster
|
||||
|
@ -13,6 +13,7 @@ License: GPL
|
||||
//********************************************************************************************
|
||||
|
||||
#include <QProgressBar>
|
||||
#include <QApplication>
|
||||
#include <QDir>
|
||||
#include <QString>
|
||||
#include <QDateTime>
|
||||
@ -98,6 +99,7 @@ int CMS50Loader::OpenCMS50(QString & path, Profile *profile)
|
||||
int cnt=0;
|
||||
for (list<QString>::iterator n=files.begin();n!=files.end();n++,++cnt) {
|
||||
if (qprogress) qprogress->setValue((float(cnt)/float(size)*50.0));
|
||||
QApplication::processEvents();
|
||||
OpenSPORFile((*n),mach,profile);
|
||||
}
|
||||
mach->Save();
|
||||
|
@ -6,6 +6,7 @@ Author: Mark Watkins <jedimark64@users.sourceforge.net>
|
||||
License: GPL
|
||||
*/
|
||||
|
||||
#include <QApplication>
|
||||
#include <QString>
|
||||
#include <QDateTime>
|
||||
#include <QDir>
|
||||
@ -267,9 +268,11 @@ int PRS1Loader::OpenMachine(Machine *m,QString path,Profile *profile)
|
||||
sessfiles[session][2]=fi.canonicalFilePath();
|
||||
}
|
||||
cnt++;
|
||||
//if (qprogress) qprogress->Pulse(); //Update((float(cnt)/float(size)*25));
|
||||
|
||||
if (qprogress) qprogress->setValue((float(cnt)/float(size)*33.0));
|
||||
|
||||
QApplication::processEvents();
|
||||
|
||||
}
|
||||
}
|
||||
size=sessfiles.size();
|
||||
@ -281,6 +284,7 @@ int PRS1Loader::OpenMachine(Machine *m,QString path,Profile *profile)
|
||||
session=s->first;
|
||||
cnt++;
|
||||
if (qprogress) qprogress->setValue(33.0+(float(cnt)/float(size)*33.0));
|
||||
QApplication::processEvents();
|
||||
|
||||
if (m->SessionExists(session)) continue;
|
||||
if (s->second[0].isEmpty()) continue;
|
||||
@ -385,6 +389,7 @@ int PRS1Loader::OpenMachine(Machine *m,QString path,Profile *profile)
|
||||
m->properties["DataVersion"]=s;
|
||||
m->Save(); // Save any new sessions to disk in our format */
|
||||
if (qprogress) qprogress->setValue(100);
|
||||
|
||||
//qDebug() << "OpenMachine Done";
|
||||
return true;
|
||||
}
|
||||
|
@ -6,6 +6,8 @@ Author: Mark Watkins <jedimark64@users.sourceforge.net>
|
||||
License: GPL
|
||||
*/
|
||||
|
||||
|
||||
#include <QApplication>
|
||||
#include <QString>
|
||||
#include <QDateTime>
|
||||
#include <QDir>
|
||||
@ -288,6 +290,8 @@ int ResmedLoader::Open(QString & path,Profile *profile)
|
||||
|
||||
sessfiles[sessionid].push_back(fi.canonicalFilePath());
|
||||
if (qprogress) qprogress->setValue((float(i+1)/float(size)*33.0));
|
||||
QApplication::processEvents();
|
||||
|
||||
}
|
||||
|
||||
Machine *m=NULL;
|
||||
@ -348,6 +352,8 @@ int ResmedLoader::Open(QString & path,Profile *profile)
|
||||
}
|
||||
}
|
||||
if (qprogress) qprogress->setValue(33.0+(float(++cnt)/float(size)*33.0));
|
||||
QApplication::processEvents();
|
||||
|
||||
if (!sess) continue;
|
||||
if (!sess->first()) {
|
||||
delete sess;
|
||||
|
@ -4,6 +4,7 @@
|
||||
License: GPL
|
||||
*/
|
||||
|
||||
#include <QApplication>
|
||||
#include <QDir>
|
||||
#include <QProgressBar>
|
||||
#include <QDebug>
|
||||
@ -342,6 +343,8 @@ bool Machine::Save()
|
||||
if (qprogress) qprogress->setValue(66.0+(float(cnt)/float(size)*33.0));
|
||||
if ((*s)->IsChanged()) (*s)->Store(path);
|
||||
(*s)->TrashEvents();
|
||||
QApplication::processEvents();
|
||||
|
||||
}
|
||||
//qDebug() << "Day Save Completed";
|
||||
|
||||
|
@ -1,3 +1,4 @@
|
||||
#include <QApplication>
|
||||
#include <QDebug>
|
||||
#include <QProgressBar>
|
||||
#include <QMessageBox>
|
||||
@ -469,6 +470,8 @@ void Oximetry::on_ImportButton_clicked()
|
||||
memcpy((char *)buffer,(char *)&rb[startpos],bytes);
|
||||
} else {
|
||||
qprogress->setValue((100.0/length)*bytes);
|
||||
QApplication::processEvents();
|
||||
|
||||
memcpy((char *)&buffer[bytes],(char *)rb,res);
|
||||
bytes+=res;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user