mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Window 32bit build fixes, variable cleanups
This commit is contained in:
parent
ffeb0149c0
commit
1ade0e7b04
@ -68,7 +68,7 @@ class gFlagsLine: public Layer
|
||||
void setLineNum(int i) { line_num = i; }
|
||||
|
||||
virtual Layer * Clone() {
|
||||
gFlagsLine * layer = new gFlagsLine(nullptr); //ouchie..
|
||||
gFlagsLine * layer = new gFlagsLine(NoChannel); //ouchie..
|
||||
Layer::CloneInto(layer);
|
||||
CloneInto(layer);
|
||||
return layer;
|
||||
|
@ -298,7 +298,8 @@ void gGraph::paint(QPainter &painter, const QRegion ®ion)
|
||||
//m_marginbottom=5;
|
||||
|
||||
left = marginLeft()*printScaleX(), right = marginRight()*printScaleX(), top = marginTop(), bottom = marginBottom() * printScaleY();
|
||||
int x = 0, y = 0;
|
||||
//int x;
|
||||
int y;
|
||||
|
||||
if (m_showTitle) {
|
||||
int title_x, yh;
|
||||
@ -309,7 +310,7 @@ void gGraph::paint(QPainter &painter, const QRegion ®ion)
|
||||
yh = fm.height();
|
||||
//GetTextExtent("Wy@",x,yh,mediumfont); // This gets a better consistent height. should be cached.
|
||||
y = yh;
|
||||
x = fm.width(title());
|
||||
//x = fm.width(title());
|
||||
//GetTextExtent(title(),x,y,mediumfont);
|
||||
title_x = float(yh) ;
|
||||
|
||||
@ -716,7 +717,7 @@ void gGraph::mouseMoveEvent(QMouseEvent *event)
|
||||
int y = event->y();
|
||||
int x = event->x();
|
||||
|
||||
bool doredraw = false;
|
||||
//bool doredraw = false;
|
||||
|
||||
timedRedraw(0);
|
||||
|
||||
@ -796,7 +797,7 @@ void gGraph::mouseMoveEvent(QMouseEvent *event)
|
||||
int offset = (x >= x2) ? 20 : - 20;
|
||||
ToolTip(m_selDurString, m_rect.left() + x + offset, m_rect.top() + y + 20, align);
|
||||
|
||||
doredraw = true;
|
||||
//doredraw = true;
|
||||
} else if (event->buttons() & Qt::RightButton) { // Right Mouse button dragging
|
||||
m_graphview->setPointClicked(event->pos());
|
||||
x -= left;
|
||||
@ -822,7 +823,7 @@ void gGraph::mouseMoveEvent(QMouseEvent *event)
|
||||
}
|
||||
|
||||
m_graphview->SetXBounds(min_x, max_x, m_group, false);
|
||||
doredraw = true;
|
||||
// doredraw = true;
|
||||
} else {
|
||||
qint64 qq = rmax_x - rmin_x;
|
||||
xx = max_x - min_x;
|
||||
@ -845,7 +846,7 @@ void gGraph::mouseMoveEvent(QMouseEvent *event)
|
||||
}
|
||||
|
||||
m_graphview->SetXBounds(min_x, max_x, m_group, false);
|
||||
doredraw = true;
|
||||
//doredraw = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1180,7 +1181,7 @@ void gGraph::ZoomX(double mult, int origin_px)
|
||||
min = max - q;
|
||||
}
|
||||
|
||||
extern const int max_history;
|
||||
//extern const int max_history;
|
||||
|
||||
m_graphview->SetXBounds(min, max, m_group);
|
||||
//updateSelectionTime(max-min);
|
||||
|
@ -81,7 +81,7 @@ void gLineOverlayBar::paint(QPainter &painter, gGraph &w, const QRegion ®ion)
|
||||
|
||||
qint64 clockdrift = qint64(p_profile->cpap->clockDrift()) * 1000L;
|
||||
qint64 drift = 0;
|
||||
bool hover = false;
|
||||
//bool hover = false;
|
||||
|
||||
// For each session, process it's eventlist
|
||||
for (QList<Session *>::iterator s = m_day->begin(); s != m_day->end(); s++) {
|
||||
@ -125,7 +125,7 @@ void gLineOverlayBar::paint(QPainter &painter, gGraph &w, const QRegion ®ion)
|
||||
// FT_Span
|
||||
////////////////////////////////////////////////////////////////////////////
|
||||
for (; dptr < eptr; dptr++) {
|
||||
hover = false;
|
||||
//hover = false;
|
||||
|
||||
X = stime + *tptr++;
|
||||
raw = *dptr;
|
||||
@ -154,9 +154,9 @@ void gLineOverlayBar::paint(QPainter &painter, gGraph &w, const QRegion ®ion)
|
||||
|
||||
QRect rect(x2, start_py, x1-x2, height);
|
||||
QColor col = m_flag_color;
|
||||
if (rect.contains(mouse)) {
|
||||
hover = true;
|
||||
}
|
||||
// if (rect.contains(mouse)) {
|
||||
// hover = true;
|
||||
// }
|
||||
|
||||
painter.fillRect(rect, QBrush(col));
|
||||
}
|
||||
@ -195,7 +195,7 @@ void gLineOverlayBar::paint(QPainter &painter, gGraph &w, const QRegion ®ion)
|
||||
// FT_Bar
|
||||
////////////////////////////////////////////////////////////////////////////
|
||||
for (; dptr < eptr; dptr++) {
|
||||
hover = false;
|
||||
// hover = false;
|
||||
X = stime + *tptr++;
|
||||
raw = *dptr;
|
||||
|
||||
@ -249,7 +249,7 @@ void gLineOverlayBar::paint(QPainter &painter, gGraph &w, const QRegion ®ion)
|
||||
// painter.drawLine(rect.x(), top, rect.x(), bottom);
|
||||
|
||||
// col = COLOR_Gold;
|
||||
hover = true;
|
||||
// hover = true;
|
||||
painter.setPen(QPen(col,3));
|
||||
} else {
|
||||
painter.setPen(QPen(col,1));
|
||||
@ -266,11 +266,11 @@ void gLineOverlayBar::paint(QPainter &painter, gGraph &w, const QRegion ®ion)
|
||||
//////////////////////////////////////////////////////////////////////////////////////
|
||||
// Top and bottom markers
|
||||
//////////////////////////////////////////////////////////////////////////////////////
|
||||
bool b = false;
|
||||
//bool b = false;
|
||||
if (!w.selectingArea() && !m_blockhover && QRect(x1-2, topp, 6, height).contains(mouse) && !m_hover) {
|
||||
// only want to draw the highlight/label once per frame
|
||||
m_hover = true;
|
||||
b = true;
|
||||
//b = true;
|
||||
|
||||
// Draw text label
|
||||
QString lab = QString("%1 (%2)").arg(schema::channel[m_code].fullname()).arg(raw);
|
||||
|
@ -439,12 +439,12 @@ bool Machine::Purge(int secret)
|
||||
QList<Session *> sessions = sessionlist.values();
|
||||
|
||||
// Clean up any loaded sessions from memory first..
|
||||
bool success = true;
|
||||
//bool success = true;
|
||||
for (int i=0; i < sessions.size(); ++i) {
|
||||
Session * sess = sessions[i];
|
||||
if (!sess->Destroy()) {
|
||||
qDebug() << "Could not destroy "+ info.loadername +" ("+info.serial+") session" << sess->session();
|
||||
success = false;
|
||||
// success = false;
|
||||
} else {
|
||||
// sessionlist.remove(sess->session());
|
||||
}
|
||||
@ -482,7 +482,7 @@ bool Machine::Purge(int secret)
|
||||
qDebug() << "Deleting " << QDir::toNativeSeparators(fullpath);
|
||||
if (!dir.remove(fullpath)) {
|
||||
qDebug() << "Could not purge file" << fullpath;
|
||||
success=false;
|
||||
//success=false;
|
||||
could_not_kill++;
|
||||
}
|
||||
} else {
|
||||
|
@ -1156,9 +1156,9 @@ QString Daily::getStatisticsInfo(Day * day)
|
||||
{
|
||||
if (!day) return QString();
|
||||
|
||||
Machine *cpap = day->machine(MT_CPAP),
|
||||
*oxi = day->machine(MT_OXIMETER),
|
||||
*pos = day->machine(MT_POSITION);
|
||||
Machine *cpap = day->machine(MT_CPAP);
|
||||
// *oxi = day->machine(MT_OXIMETER),
|
||||
// *pos = day->machine(MT_POSITION);
|
||||
|
||||
|
||||
int mididx=p_profile->general->prefCalcMiddle();
|
||||
@ -1351,13 +1351,13 @@ void Daily::Load(QDate date)
|
||||
Day * day = p_profile->GetDay(date);
|
||||
Machine *cpap = nullptr,
|
||||
*oxi = nullptr,
|
||||
*stage = nullptr,
|
||||
//*stage = nullptr,
|
||||
*posit = nullptr;
|
||||
|
||||
if (day) {
|
||||
cpap = day->machine(MT_CPAP);
|
||||
oxi = day->machine(MT_OXIMETER);
|
||||
stage = day->machine(MT_SLEEPSTAGE);
|
||||
// stage = day->machine(MT_SLEEPSTAGE);
|
||||
posit = day->machine(MT_POSITION);
|
||||
}
|
||||
|
||||
@ -2004,7 +2004,7 @@ void Daily::on_LineCursorUpdate(double time)
|
||||
} else dateDisplay->setText(QString(GraphView->emptyText()));
|
||||
}
|
||||
|
||||
void Daily::on_RangeUpdate(double minx, double maxx)
|
||||
void Daily::on_RangeUpdate(double minx, double /*maxx*/)
|
||||
{
|
||||
if (minx > 1) {
|
||||
dateDisplay->setText(GraphView->getRangeString());
|
||||
|
@ -304,10 +304,10 @@ retry_directory:
|
||||
////////////////////////////////////////////////////////////////////////////////////////////
|
||||
// Check when last checked for updates..
|
||||
////////////////////////////////////////////////////////////////////////////////////////////
|
||||
bool check_updates = false;
|
||||
//bool check_updates = false;
|
||||
|
||||
if (PREF[STR_GEN_UpdatesAutoCheck].toBool()) {
|
||||
int update_frequency = PREF[STR_GEN_UpdateCheckFrequency].toInt();
|
||||
//int update_frequency = PREF[STR_GEN_UpdateCheckFrequency].toInt();
|
||||
int days = 1000;
|
||||
lastchecked = PREF[STR_GEN_UpdatesLastChecked].toDateTime();
|
||||
|
||||
@ -316,9 +316,9 @@ retry_directory:
|
||||
days /= 86400;
|
||||
};
|
||||
|
||||
if (days > update_frequency) {
|
||||
check_updates = true;
|
||||
}
|
||||
// if (days > update_frequency) {
|
||||
// check_updates = true;
|
||||
// }
|
||||
}
|
||||
|
||||
if (!Profiles::profiles.size()) {
|
||||
@ -337,7 +337,7 @@ retry_directory:
|
||||
if (vc < 0) {
|
||||
release_notes();
|
||||
|
||||
check_updates = false;
|
||||
//check_updates = false;
|
||||
} else if (vc > 0) {
|
||||
if (QMessageBox::warning(nullptr, STR_MessageBox_Error, QObject::tr("The version of SleepyHead you just ran is OLDER than the one used to create this data (%1).").arg(PREF[STR_PREF_VersionString].toString()) +"\n\n"+
|
||||
QObject::tr("It is likely that doing this will cause data corruption, are you sure you want to do this?"), QMessageBox::Yes | QMessageBox::No, QMessageBox::No) == QMessageBox::No) {
|
||||
|
@ -6,7 +6,8 @@
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
* distribution for more details. */
|
||||
|
||||
#include <QGLFormat>
|
||||
#include <QGLContext>
|
||||
|
||||
#include <QFileDialog>
|
||||
#include <QMessageBox>
|
||||
#include <QResource>
|
||||
@ -1563,7 +1564,7 @@ void MainWindow::DelayedScreenshot()
|
||||
#endif
|
||||
|
||||
#if defined(Q_OS_WIN32) || defined(Q_OS_LINUX)
|
||||
QRect rec = QApplication::desktop()->screenGeometry();
|
||||
//QRect rec = QApplication::desktop()->screenGeometry();
|
||||
|
||||
// grab the whole screen
|
||||
QPixmap desktop = QPixmap::grabWindow(QApplication::desktop()->winId());
|
||||
@ -2041,10 +2042,6 @@ void MainWindow::on_actionPurge_Current_Day_triggered()
|
||||
}
|
||||
day = p_profile->GetDay(date, MT_CPAP);
|
||||
|
||||
if (day != nullptr) {
|
||||
int i = 5;
|
||||
}
|
||||
|
||||
getDaily()->clearLastDay();
|
||||
getDaily()->LoadDate(date);
|
||||
}
|
||||
|
@ -20,8 +20,8 @@ contains(DEFINES, BrokenGL) {
|
||||
DEFINES += BROKEN_OPENGL_BUILD
|
||||
} else {
|
||||
message("Building with QGLWidget gGraphView")
|
||||
QT += opengl
|
||||
}
|
||||
QT += opengl
|
||||
|
||||
#The following forces ResMed session locking.. it *may* not be necessary.. I'm still trying to assess this properly.
|
||||
DEFINES += LOCK_RESMED_SESSIONS
|
||||
|
Loading…
Reference in New Issue
Block a user