Clean up a few warnings, fix case sensitivity issue

This commit is contained in:
Mark Watkins 2014-06-02 21:22:45 +10:00
parent d1ffafb409
commit 126e78cddc
10 changed files with 42 additions and 25 deletions

View File

@ -299,8 +299,10 @@ gGraphView::gGraphView(QWidget *parent, gGraphView *shared)
setAutoBufferSwap(false);
#endif
}
void gGraphView::closeEvent(QCloseEvent * event)
{
timer->stop();
redrawtimer->stop();
disconnect(redrawtimer, 0, 0, 0);
@ -311,7 +313,11 @@ void gGraphView::closeEvent(QCloseEvent * event)
if (m_scrollbar) {
this->disconnect(m_scrollbar, SIGNAL(sliderMoved(int)), 0, 0);
}
#ifdef BROKEN_OPENGL_BUILD
QWidget::closeEvent(event);
#else
QGLWidget::closeEvent(event);
#endif
}
gGraphView::~gGraphView()
@ -408,7 +414,7 @@ void gGraphView::DrawTextQue(QPainter &painter)
if (!QPixmapCache::find(hstr, &pm)) {
QFontMetrics fm(*q.font);
QRect rect=fm.tightBoundingRect(q.text);
// QRect rect=fm.tightBoundingRect(q.text);
w = fm.width(q.text);
h = fm.height()+buf;

View File

@ -14,7 +14,7 @@
#include <QDateTime>
#include "SleepLib/profiles.h"
#include "gsessiontimeschart.h"
#include "gSessionTimesChart.h"
#include "gYAxis.h"
@ -92,12 +92,16 @@ void gSessionTimesChart::SetDay(Day *unused_day)
void gSessionTimesChart::paint(QPainter &painter, gGraph &w, const QRegion &region)
{
Q_UNUSED(painter)
Q_UNUSED(w)
Q_UNUSED(region)
QMap<quint32, QList<TimeSpan> >::iterator st_end = sessiontimes.end();
QMap<quint32, QList<TimeSpan> >::iterator it;
for (it = sessiontimes.begin(); it != st_end; ++it) {
int dn = it.key();
// int dn = it.key();
QList<TimeSpan> & st = it.value();
int stsize = st.size();
@ -110,21 +114,29 @@ void gSessionTimesChart::paint(QPainter &painter, gGraph &w, const QRegion &regi
bool gSessionTimesChart::keyPressEvent(QKeyEvent *event, gGraph *graph)
{
Q_UNUSED(event)
Q_UNUSED(graph)
return true;
}
bool gSessionTimesChart::mouseMoveEvent(QMouseEvent *event, gGraph *graph)
{
Q_UNUSED(event)
Q_UNUSED(graph)
return true;
}
bool gSessionTimesChart::mousePressEvent(QMouseEvent *event, gGraph *graph)
{
Q_UNUSED(event)
Q_UNUSED(graph)
return true;
}
bool gSessionTimesChart::mouseReleaseEvent(QMouseEvent *event, gGraph *graph)
{
Q_UNUSED(event)
Q_UNUSED(graph)
return true;
}

View File

@ -35,6 +35,7 @@ SummaryChart::~SummaryChart()
}
void SummaryChart::SetDay(Day * nullday)
{
Q_UNUSED(nullday)
Day *day = nullptr;
Layer::SetDay(day);
@ -834,10 +835,9 @@ jumpnext:
bool ishours = false;
int good = 0;
if (w.title().compare("Resp. Rate")==0) {
int i=5;
int b = i;
}
// if (w.title().compare("Resp. Rate")==0) {
// int i=5;
// }
for (int j = 0; j < m_codes.size(); j++) {
if (!goodcodes[j]) { continue; }

View File

@ -379,9 +379,6 @@ void FlowParser::calc(bool calcResp, bool calcTv, bool calcTi, bool calcTe, bool
double len, st2, et2, adj, stmin, b, rr = 0;
double len2;
int idx;
/////////////////////////////////////////////////////////////////////////////////
// Inspiratory / Expiratory Time setup

View File

@ -244,7 +244,6 @@ EventDataType Day::percentile(ChannelID code, EventDataType percentile)
lastgain = gain;
int value;
qint64 weight;
//qint64 tval;

View File

@ -311,10 +311,10 @@ quint32 convertDate(quint32 timestamp)
QDateTime dt = QDateTime(QDate(year, month, day), QTime(hour, minute, second),Qt::UTC);
Q_ASSERT(dt.isValid());
if ((year == 2013) && (month == 9) && (day == 18)) {
// this is for testing.. set a breakpoint on here and
int i=5;
}
// if ((year == 2013) && (month == 9) && (day == 18)) {
// // this is for testing.. set a breakpoint on here and
// int i=5;
// }
// From Rudd's data set compared to times reported from his F&P software's report (just the time bits left over)
@ -348,9 +348,9 @@ quint32 convertFLWDate(quint32 timestamp)
// hour = (timestamp >> 12) & 0x1f;
QDateTime dt = QDateTime(QDate(year, month, day), QTime(hour, minute, second), Qt::UTC);
Q_ASSERT(dt.isValid());
if ((year == 2013) && (month == 9) && (day == 18)) {
int i=5;
}
// if ((year == 2013) && (month == 9) && (day == 18)) {
// int i=5;
// }
// 87922 23:23:50 WET
return dt.addSecs(-360).toTime_t();
}
@ -498,7 +498,6 @@ bool FPIconLoader::OpenFLW(Machine *mach, QString filename, Profile *profile)
sess = nullptr;
sit = Sessions.end();
int cnt=0;
if (Sessions.begin() != sit) {
do {
sit--;

View File

@ -110,6 +110,7 @@ int MD300W1Loader::Open(QString path, Profile *profile)
void MD300W1Loader::processBytes(QByteArray bytes)
{
Q_UNUSED(bytes);
return;
}

View File

@ -25,7 +25,7 @@
#include "SleepLib/calcs.h"
const int PRS1_MAGIC_NUMBER = 2;
//const int PRS1_MAGIC_NUMBER = 2;
//const int PRS1_SUMMARY_FILE=1;
//const int PRS1_EVENT_FILE=2;
//const int PRS1_WAVEFORM_FILE=5;
@ -358,6 +358,7 @@ bool PRS1Loader::ParseProperties(Machine *m, QString filename)
int PRS1Loader::OpenMachine(Machine *m, QString path, Profile *profile)
{
Q_UNUSED(profile)
qDebug() << "Opening PRS1 " << path;
QDir dir(path);
@ -422,7 +423,6 @@ int PRS1Loader::OpenMachine(Machine *m, QString path, Profile *profile)
long ext;
QHash<SessionID, QStringList> sessfiles;
int size = paths.size();
int cnt = 0;
prs1sessions.clear();
new_sessions.clear(); // this hash is used by OpenFile
@ -488,7 +488,9 @@ int PRS1Loader::OpenMachine(Machine *m, QString path, Profile *profile)
}
}
int tasks = countTasks();
runTasks(p_profile->session->multithreading());
return tasks;
}
bool PRS1SessionData::ParseF5Events()
@ -840,7 +842,7 @@ bool PRS1SessionData::ParseF0Events()
int cnt = 0;
short delta;
int tdata;
quint64 pos;
int pos;
qint64 t = qint64(event->timestamp) * 1000L, tt;
session->updateFirst(t);
@ -1188,7 +1190,7 @@ bool PRS1SessionData::ParseSummary()
//////////////////////////////////////////////////////////////////////////////////////////
quint8 rectype = data[0x00];
//quint8 rectype = data[0x00];

View File

@ -194,7 +194,6 @@ void ResmedLoader::ParseSTR(Machine *mach, QStringList strfiles)
}
continue;
}
bool skip = false;
QMap<quint32, STRRecord>::iterator sid = strsess.find(ontime);
// Record already exists?

View File

@ -63,6 +63,8 @@ class MachineLoader: public QObject
//! \brief Process Task list using all available threads.
void runTasks(bool threaded=true);
int countTasks() { return m_tasklist.size(); }
inline bool isAborted() { return m_abort; }
void abort() { m_abort = true; }