mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Implemented font texture caching
This seems to be quite a bit faster and solves the wavy line problems on mac. I implemented a switch so this can be turned on/off in gGraphView::DrawTextQue() change use_pixmap_cache to false to turn it off. I'll remove the graph title and yaxis bits and put them back as this has the same effect
This commit is contained in:
parent
aa24352e70
commit
67f0cf443b
@ -13,6 +13,7 @@
|
|||||||
#include <QDir>
|
#include <QDir>
|
||||||
#include <QGLPixelBuffer>
|
#include <QGLPixelBuffer>
|
||||||
#include <QGLFramebufferObject>
|
#include <QGLFramebufferObject>
|
||||||
|
#include <QPixmapCache>
|
||||||
#include "mainwindow.h"
|
#include "mainwindow.h"
|
||||||
|
|
||||||
#include "Graphs/gYAxis.h"
|
#include "Graphs/gYAxis.h"
|
||||||
@ -22,7 +23,7 @@
|
|||||||
|
|
||||||
extern MainWindow *mainwin;
|
extern MainWindow *mainwin;
|
||||||
|
|
||||||
#ifdef Q_WS_MAC
|
#ifdef Q_OS_MAC
|
||||||
#define USE_RENDERTEXT
|
#define USE_RENDERTEXT
|
||||||
#include "OpenGL/glu.h"
|
#include "OpenGL/glu.h"
|
||||||
#else
|
#else
|
||||||
@ -1730,8 +1731,8 @@ void gGraph::DrawTextQue()
|
|||||||
// margin recalcs..
|
// margin recalcs..
|
||||||
void gGraph::resize(int width, int height)
|
void gGraph::resize(int width, int height)
|
||||||
{
|
{
|
||||||
width=width;
|
Q_UNUSED(width);
|
||||||
height=height;
|
Q_UNUSED(height);
|
||||||
//m_height=height;
|
//m_height=height;
|
||||||
//m_width=width;
|
//m_width=width;
|
||||||
}
|
}
|
||||||
@ -1850,9 +1851,9 @@ Layer * gGraph::getLineChart()
|
|||||||
}
|
}
|
||||||
|
|
||||||
// QTBUG-24710 pixmaps might not be freeing properly..
|
// QTBUG-24710 pixmaps might not be freeing properly..
|
||||||
QPixmap gGraphView::pbRenderPixmap(int w,int h)
|
QImage gGraphView::pbRenderPixmap(int w,int h)
|
||||||
{
|
{
|
||||||
QPixmap pm=QPixmap();
|
QImage pm=QImage();
|
||||||
QGLFormat pbufferFormat = format();
|
QGLFormat pbufferFormat = format();
|
||||||
QGLPixelBuffer pbuffer(w,h,pbufferFormat,this);
|
QGLPixelBuffer pbuffer(w,h,pbufferFormat,this);
|
||||||
|
|
||||||
@ -1861,17 +1862,17 @@ QPixmap gGraphView::pbRenderPixmap(int w,int h)
|
|||||||
resizeGL(w,h);
|
resizeGL(w,h);
|
||||||
initializeGL();
|
initializeGL();
|
||||||
paintGL();
|
paintGL();
|
||||||
QImage image=pbuffer.toImage();
|
pm=pbuffer.toImage();
|
||||||
pm=QPixmap::fromImage(image);
|
//pm=QPixmap::fromImage(image);
|
||||||
pbuffer.doneCurrent();
|
pbuffer.doneCurrent();
|
||||||
}
|
}
|
||||||
return pm;
|
return pm;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
QPixmap gGraphView::fboRenderPixmap(int w,int h)
|
QImage gGraphView::fboRenderPixmap(int w,int h)
|
||||||
{
|
{
|
||||||
QPixmap pm=QPixmap();
|
QImage pm=QImage();
|
||||||
|
|
||||||
if (fbo_unsupported)
|
if (fbo_unsupported)
|
||||||
return pm;
|
return pm;
|
||||||
@ -1897,7 +1898,7 @@ QPixmap gGraphView::fboRenderPixmap(int w,int h)
|
|||||||
fbo->release();
|
fbo->release();
|
||||||
|
|
||||||
// Copy just the section of the image (remember openGL draws from the bottom up)
|
// Copy just the section of the image (remember openGL draws from the bottom up)
|
||||||
pm=QPixmap::fromImage(fbo->toImage()).copy(0,max_fbo_height-h,w,h);
|
pm=fbo->toImage().copy(0,max_fbo_height-h,w,h);
|
||||||
doneCurrent();
|
doneCurrent();
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
@ -1957,14 +1958,15 @@ QPixmap gGraph::renderPixmap(int w, int h, bool printing)
|
|||||||
sg->setScaleY(1.0);
|
sg->setScaleY(1.0);
|
||||||
|
|
||||||
//sg->makeCurrent();
|
//sg->makeCurrent();
|
||||||
|
#ifndef Q_OS_MAC
|
||||||
pm=sg->renderPixmap(w,h,false);
|
pm=sg->renderPixmap(w,h,false);
|
||||||
|
#endif
|
||||||
if (pm.isNull()) {
|
if (pm.isNull()) {
|
||||||
// this one gives nags
|
// this one gives nags
|
||||||
pm=sg->fboRenderPixmap(w,h);
|
pm=QPixmap::fromImage(sg->fboRenderPixmap(w,h));
|
||||||
} else if (pm.isNull()) { // not sure if this will work with printing
|
} else if (pm.isNull()) { // not sure if this will work with printing
|
||||||
qDebug() << "Had to use PixelBuffer for snapshots\n";
|
qDebug() << "Had to use PixelBuffer for snapshots\n";
|
||||||
pm=sg->pbRenderPixmap(w,h);
|
pm=QPixmap::fromImage(sg->pbRenderPixmap(w,h));
|
||||||
}
|
}
|
||||||
|
|
||||||
//sg->doneCurrent();
|
//sg->doneCurrent();
|
||||||
@ -2086,6 +2088,7 @@ gGraphView::gGraphView(QWidget *parent, gGraphView * shared) :
|
|||||||
m_button_down=m_graph_dragging=m_sizer_dragging=false;
|
m_button_down=m_graph_dragging=m_sizer_dragging=false;
|
||||||
m_lastypos=m_lastxpos=0;
|
m_lastypos=m_lastxpos=0;
|
||||||
m_horiz_travel=0;
|
m_horiz_travel=0;
|
||||||
|
pixmap_cache_size=0;
|
||||||
this->setMouseTracking(true);
|
this->setMouseTracking(true);
|
||||||
m_emptytext=QObject::tr("No Data");
|
m_emptytext=QObject::tr("No Data");
|
||||||
InitGraphs();
|
InitGraphs();
|
||||||
@ -2161,61 +2164,168 @@ gGraphView::~gGraphView()
|
|||||||
timer->stop();
|
timer->stop();
|
||||||
delete timer;
|
delete timer;
|
||||||
}
|
}
|
||||||
|
|
||||||
void gGraphView::DrawTextQue()
|
void gGraphView::DrawTextQue()
|
||||||
{
|
{
|
||||||
glPushAttrib(GL_COLOR_BUFFER_BIT);
|
const qint64 expire_after_ms=4000; // expire string pixmap after this many milliseconds
|
||||||
|
const bool use_pixmap_cache=true;
|
||||||
|
quint64 ti=0;
|
||||||
int w,h;
|
int w,h;
|
||||||
|
QHash<QString,myPixmapCache*>::iterator it;
|
||||||
QPainter painter;
|
QPainter painter;
|
||||||
|
if (use_pixmap_cache) {
|
||||||
|
// Current time in milliseconds since epoch.
|
||||||
|
ti=QDateTime::currentDateTime().toMSecsSinceEpoch();
|
||||||
|
|
||||||
|
|
||||||
|
// Expire any strings not used
|
||||||
|
QList<QString> expire;
|
||||||
|
|
||||||
|
for (it=pixmap_cache.begin();it!=pixmap_cache.end();it++) {
|
||||||
|
if ((*it)->last_used < (ti-expire_after_ms)) {
|
||||||
|
expire.push_back(it.key());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
for (int i=0;i<expire.count();i++) {
|
||||||
|
const QString key=expire.at(i);
|
||||||
|
// unbind the texture
|
||||||
|
deleteTexture(pixmap_cache[key]->textureID);
|
||||||
|
QPixmap *pm=pixmap_cache[key]->pixmap;
|
||||||
|
pixmap_cache_size-=pm->width() * pm->height() * (pm->depth()/8);
|
||||||
|
// free the pixmap
|
||||||
|
delete pixmap_cache[key]->pixmap;
|
||||||
|
|
||||||
|
// free the myPixmapCache object
|
||||||
|
delete pixmap_cache[key];
|
||||||
|
|
||||||
|
// pull the dead record from the cache.
|
||||||
|
pixmap_cache.remove(expire.at(i));
|
||||||
|
}
|
||||||
|
|
||||||
|
} else {
|
||||||
|
glPushAttrib(GL_COLOR_BUFFER_BIT);
|
||||||
|
|
||||||
#ifndef USE_RENDERTEXT
|
#ifndef USE_RENDERTEXT
|
||||||
painter.begin(this);
|
painter.begin(this);
|
||||||
#endif
|
#endif
|
||||||
|
}
|
||||||
for (int i=0;i<m_textque_items;i++) {
|
for (int i=0;i<m_textque_items;i++) {
|
||||||
// GL Font drawing is ass in Qt.. :(
|
// GL Font drawing is ass in Qt.. :(
|
||||||
TextQue & q=m_textque[i];
|
TextQue & q=m_textque[i];
|
||||||
#ifndef USE_RENDERTEXT
|
|
||||||
QBrush b(q.color);
|
|
||||||
painter.setBrush(b);
|
|
||||||
painter.setFont(*q.font);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
if (q.angle==0) {
|
if (use_pixmap_cache) {
|
||||||
qglColor(q.color);
|
// Generate the pixmap cache "key"
|
||||||
|
QString hstr=QString("%4:%5:%6").arg(q.text).arg(q.color.name()).arg(q.font->key());
|
||||||
|
|
||||||
// *********************************************************
|
QPixmap * pm=NULL;
|
||||||
// Holy crap this is slow
|
|
||||||
// The following line is responsible for 77% of drawing time
|
//Random_note: test add to qmake for qt5 stuff DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x040900
|
||||||
// *********************************************************
|
|
||||||
#ifdef USE_RENDERTEXT
|
it=pixmap_cache.find(hstr);
|
||||||
renderText(q.x,q.y,q.text,*q.font);
|
myPixmapCache *pc=NULL;
|
||||||
#else
|
if (it!=pixmap_cache.end()) {
|
||||||
painter.drawText(q.x, q.y, q.text);
|
pc=(*it);
|
||||||
#endif
|
|
||||||
|
} else {
|
||||||
|
//This is much slower than other text rendering methods, but caching more than makes up for the speed decrease.
|
||||||
|
pc=new myPixmapCache;
|
||||||
|
// not found.. create the image and store it in a cache
|
||||||
|
pc->last_used=ti; // set the last_used value.
|
||||||
|
|
||||||
|
QFontMetrics fm(*q.font);
|
||||||
|
QRect rect=fm.boundingRect(q.text);
|
||||||
|
w=rect.width();
|
||||||
|
h=rect.height();
|
||||||
|
pm=new QPixmap(w+4,h+4);
|
||||||
|
pm->fill(Qt::transparent);
|
||||||
|
|
||||||
|
painter.begin(pm);
|
||||||
|
|
||||||
|
QBrush b(q.color);
|
||||||
|
painter.setBrush(b);
|
||||||
|
painter.setFont(*q.font);
|
||||||
|
painter.drawText(2,h,q.text);
|
||||||
|
painter.end();
|
||||||
|
|
||||||
|
pc->pixmap=pm;
|
||||||
|
pixmap_cache_size+=pm->width()*pm->height()*(pm->depth()/8);
|
||||||
|
pc->textureID=bindTexture(*pm);
|
||||||
|
pixmap_cache[hstr]=pc;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
if (pc) {
|
||||||
|
pc->last_used=ti;
|
||||||
|
glEnable(GL_BLEND);
|
||||||
|
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
|
||||||
|
|
||||||
|
glEnable(GL_TEXTURE_2D);
|
||||||
|
if (q.angle!=0) {
|
||||||
|
glPushMatrix();
|
||||||
|
glTranslatef(q.x-pc->pixmap->height()*2+4,q.y+pc->pixmap->width()/2+4, 0);
|
||||||
|
glRotatef(-q.angle,0,0,1);
|
||||||
|
drawTexture(QPoint(0,pc->pixmap->height()/2),pc->textureID);
|
||||||
|
glPopMatrix();
|
||||||
|
//glTranslatef(marginLeft()+4,originY+height/2+x/2, 0);
|
||||||
|
//glRotatef(-90,0,0,1);
|
||||||
|
//m_graphview->drawTexture(QPoint(0,y/2),titleImageTex);
|
||||||
|
} else {
|
||||||
|
// TODO: setup for rotation if angle specified.
|
||||||
|
drawTexture(QPoint(q.x,q.y-pc->pixmap->height()+4),pc->textureID);
|
||||||
|
}
|
||||||
|
glDisable(GL_TEXTURE_2D);
|
||||||
|
glDisable(GL_BLEND);
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
#ifdef USE_RENDERTEXT
|
|
||||||
painter.begin(this);
|
#ifndef USE_RENDERTEXT
|
||||||
QBrush b(q.color);
|
QBrush b(q.color);
|
||||||
painter.setBrush(b);
|
painter.setBrush(b);
|
||||||
painter.setFont(*q.font);
|
painter.setFont(*q.font);
|
||||||
#endif
|
#endif
|
||||||
w=painter.fontMetrics().width(q.text);
|
|
||||||
h=painter.fontMetrics().xHeight()+2;
|
|
||||||
|
|
||||||
painter.translate(q.x, q.y);
|
if (q.angle==0) {
|
||||||
painter.rotate(-q.angle);
|
qglColor(q.color);
|
||||||
painter.drawText(floor(-w/2.0), floor(-h/2.0), q.text);
|
// *********************************************************
|
||||||
painter.rotate(+q.angle);
|
// Holy crap this is slow
|
||||||
painter.translate(-q.x, -q.y);
|
// The following line is responsible for 77% of drawing time
|
||||||
|
// *********************************************************
|
||||||
|
|
||||||
#ifdef USE_RENDERTEXT
|
#ifdef USE_RENDERTEXT
|
||||||
painter.end();
|
renderText(q.x,q.y,q.text,*q.font);
|
||||||
|
#else
|
||||||
|
painter.drawText(q.x, q.y, q.text);
|
||||||
#endif
|
#endif
|
||||||
|
} else {
|
||||||
|
#ifdef USE_RENDERTEXT
|
||||||
|
painter.begin(this);
|
||||||
|
QBrush b(q.color);
|
||||||
|
painter.setBrush(b);
|
||||||
|
painter.setFont(*q.font);
|
||||||
|
#endif
|
||||||
|
w=painter.fontMetrics().width(q.text);
|
||||||
|
h=painter.fontMetrics().xHeight()+2;
|
||||||
|
|
||||||
|
painter.translate(q.x, q.y);
|
||||||
|
painter.rotate(-q.angle);
|
||||||
|
painter.drawText(floor(-w/2.0), floor(-h/2.0), q.text);
|
||||||
|
painter.rotate(+q.angle);
|
||||||
|
painter.translate(-q.x, -q.y);
|
||||||
|
#ifdef USE_RENDERTEXT
|
||||||
|
painter.end();
|
||||||
|
#endif
|
||||||
|
}
|
||||||
}
|
}
|
||||||
q.text.clear();
|
q.text.clear();
|
||||||
//q.text.squeeze();
|
//q.text.squeeze();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!use_pixmap_cache) {
|
||||||
#ifndef USE_RENDERTEXT
|
#ifndef USE_RENDERTEXT
|
||||||
painter.end();
|
painter.end();
|
||||||
#endif
|
#endif
|
||||||
glPopAttrib();
|
glPopAttrib();
|
||||||
|
}
|
||||||
//qDebug() << "rendered" << m_textque_items << "text items";
|
//qDebug() << "rendered" << m_textque_items << "text items";
|
||||||
m_textque_items=0;
|
m_textque_items=0;
|
||||||
}
|
}
|
||||||
@ -2964,7 +3074,7 @@ void gGraphView::paintGL()
|
|||||||
v+=ring[i];
|
v+=ring[i];
|
||||||
}
|
}
|
||||||
double fps=v/double(rs);
|
double fps=v/double(rs);
|
||||||
ss="Debug Mode "+QString::number(ms,'f',1)+"ms ("+QString::number(fps,'f',1)+"fps) "+QString::number(lines_drawn_this_frame,'f',0)+" lines "+QString::number(quads_drawn_this_frame,'f',0)+" quads";
|
ss="Debug Mode "+QString::number(ms,'f',1)+"ms ("+QString::number(fps,'f',1)+"fps) "+QString::number(lines_drawn_this_frame,'f',0)+" lines "+QString::number(quads_drawn_this_frame,'f',0)+" quads "+QString::number(pixmap_cache.count(),'f',0)+" strings";
|
||||||
int w,h;
|
int w,h;
|
||||||
GetTextExtent(ss,w,h);
|
GetTextExtent(ss,w,h);
|
||||||
QColor col=Qt::white;
|
QColor col=Qt::white;
|
||||||
|
@ -794,6 +794,18 @@ protected slots:
|
|||||||
void Timeout();
|
void Timeout();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/*! \struct myPixmapCache
|
||||||
|
\brief My version of Pixmap cache with texture binding support
|
||||||
|
|
||||||
|
*/
|
||||||
|
struct myPixmapCache
|
||||||
|
{
|
||||||
|
quint64 last_used;
|
||||||
|
QPixmap *pixmap;
|
||||||
|
GLuint textureID;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
/*! \class gGraphView
|
/*! \class gGraphView
|
||||||
\brief Main OpenGL Graph Area, derived from QGLWidget
|
\brief Main OpenGL Graph Area, derived from QGLWidget
|
||||||
|
|
||||||
@ -964,10 +976,10 @@ public:
|
|||||||
void trashGraphs();
|
void trashGraphs();
|
||||||
|
|
||||||
//! \brief Use a QGLFrameBufferObject to render to a pixmap
|
//! \brief Use a QGLFrameBufferObject to render to a pixmap
|
||||||
QPixmap fboRenderPixmap(int w,int h);
|
QImage fboRenderPixmap(int w,int h);
|
||||||
|
|
||||||
//! \brief Use a QGLPixelBuffer to render to a pixmap
|
//! \brief Use a QGLPixelBuffer to render to a pixmap
|
||||||
QPixmap pbRenderPixmap(int w,int h);
|
QImage pbRenderPixmap(int w,int h);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
//! \brief Set up the OpenGL basics for the QGLWidget underneath
|
//! \brief Set up the OpenGL basics for the QGLWidget underneath
|
||||||
@ -1080,6 +1092,11 @@ protected:
|
|||||||
|
|
||||||
QTime m_animationStarted;
|
QTime m_animationStarted;
|
||||||
|
|
||||||
|
// turn this into a struct later..
|
||||||
|
QHash<QString,myPixmapCache *> pixmap_cache;
|
||||||
|
qint32 pixmap_cache_size;
|
||||||
|
|
||||||
|
|
||||||
//QVector<GLuint> texid;
|
//QVector<GLuint> texid;
|
||||||
signals:
|
signals:
|
||||||
|
|
||||||
|
@ -520,7 +520,7 @@ void gLineChart::paint(gGraph & w,int left, int top, int width, int height)
|
|||||||
gs <<= 1;
|
gs <<= 1;
|
||||||
if (gs > j) {
|
if (gs > j) {
|
||||||
qDebug() << "Would overflow line points.. increase default VertexBuffer size in gLineChart";
|
qDebug() << "Would overflow line points.. increase default VertexBuffer size in gLineChart";
|
||||||
siz=j >> square_plot ? 2 : 1;
|
siz=(j >> square_plot) ? 2 : 1;
|
||||||
done=true; // end after this partial draw..
|
done=true; // end after this partial draw..
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@ void gStatsLine::paint(gGraph & w, int left, int top, int width, int height)
|
|||||||
{
|
{
|
||||||
if (!m_visible) return;
|
if (!m_visible) return;
|
||||||
//if (m_empty) return;
|
//if (m_empty) return;
|
||||||
height=height;
|
Q_UNUSED(height);
|
||||||
|
|
||||||
int z=(width+gYAxis::Margin)/5;
|
int z=(width+gYAxis::Margin)/5;
|
||||||
int p=left-gYAxis::Margin;
|
int p=left-gYAxis::Margin;
|
||||||
|
@ -165,7 +165,7 @@ void gXAxis::paint(gGraph & w,int left,int top, int width, int height)
|
|||||||
if (py<start_px) continue;
|
if (py<start_px) continue;
|
||||||
lines->add(py,top,py,mintop);
|
lines->add(py,top,py,mintop);
|
||||||
}
|
}
|
||||||
static QString dow[]={"Sun","Mon","Tue","Wed","Thu","Fri","Sat"};
|
//static QString dow[]={"Sun","Mon","Tue","Wed","Thu","Fri","Sat"};
|
||||||
|
|
||||||
int ms,m,h,s,d;
|
int ms,m,h,s,d;
|
||||||
qint64 j;
|
qint64 j;
|
||||||
|
@ -224,7 +224,7 @@ void gYAxis::paint(gGraph & w,int left,int top, int width, int height)
|
|||||||
if (x>labelW) labelW=x;
|
if (x>labelW) labelW=x;
|
||||||
h=(height-2)-ty;
|
h=(height-2)-ty;
|
||||||
h+=yh;
|
h+=yh;
|
||||||
#ifndef Q_WS_MAC
|
#ifndef Q_OS_MAC
|
||||||
// stupid pixel alignment rubbish, I really should be using floats..
|
// stupid pixel alignment rubbish, I really should be using floats..
|
||||||
h+=1;
|
h+=1;
|
||||||
#endif
|
#endif
|
||||||
|
@ -568,7 +568,7 @@ void FlowParser::flagEvents()
|
|||||||
|
|
||||||
double start=m_flow->first();
|
double start=m_flow->first();
|
||||||
// double sps=1000.0/m_rate;
|
// double sps=1000.0/m_rate;
|
||||||
double st,mt,et, dur;
|
double st,et, dur; //mt
|
||||||
qint64 len;
|
qint64 len;
|
||||||
|
|
||||||
bool allowDuplicates=PROFILE.cpap->userEventDuplicates();
|
bool allowDuplicates=PROFILE.cpap->userEventDuplicates();
|
||||||
@ -1042,7 +1042,7 @@ void zMaskProfile::scanPressure(Session * session)
|
|||||||
Pressure.clear();
|
Pressure.clear();
|
||||||
|
|
||||||
int prescnt=0;
|
int prescnt=0;
|
||||||
EventStoreType pressure;
|
//EventStoreType pressure;
|
||||||
if (session->eventlist.contains(CPAP_Pressure)) {
|
if (session->eventlist.contains(CPAP_Pressure)) {
|
||||||
prescnt=session->count(CPAP_Pressure);
|
prescnt=session->count(CPAP_Pressure);
|
||||||
Pressure.reserve(prescnt);
|
Pressure.reserve(prescnt);
|
||||||
@ -1071,11 +1071,11 @@ void zMaskProfile::scanLeakList(EventList * el)
|
|||||||
EventStoreType * dptr=el->rawData();
|
EventStoreType * dptr=el->rawData();
|
||||||
EventStoreType * eptr=dptr+count;
|
EventStoreType * eptr=dptr+count;
|
||||||
quint32 * tptr=el->rawTime();
|
quint32 * tptr=el->rawTime();
|
||||||
EventDataType gain=el->gain();
|
//EventDataType gain=el->gain();
|
||||||
|
|
||||||
EventStoreType pressure,leak;
|
EventStoreType pressure,leak;
|
||||||
|
|
||||||
EventDataType fleak;
|
//EventDataType fleak;
|
||||||
QMap<EventStoreType, EventDataType>::iterator pmin;
|
QMap<EventStoreType, EventDataType>::iterator pmin;
|
||||||
qint64 ti;
|
qint64 ti;
|
||||||
bool found;
|
bool found;
|
||||||
@ -1117,7 +1117,7 @@ void zMaskProfile::scanLeakList(EventList * el)
|
|||||||
// }
|
// }
|
||||||
// }
|
// }
|
||||||
} else {
|
} else {
|
||||||
int i=5;
|
//int i=5;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1163,7 +1163,7 @@ void zMaskProfile::updatePressureMin()
|
|||||||
nthi=floor(nth);
|
nthi=floor(nth);
|
||||||
|
|
||||||
sum1=0,sum2=0;
|
sum1=0,sum2=0;
|
||||||
w1,w2=0;
|
w1=0,w2=0;
|
||||||
|
|
||||||
EventDataType v1=0,v2;
|
EventDataType v1=0,v2;
|
||||||
|
|
||||||
|
@ -196,7 +196,7 @@ EventDataType Day::percentile(ChannelID code,EventDataType percentile)
|
|||||||
|
|
||||||
int value;
|
int value;
|
||||||
qint64 weight;
|
qint64 weight;
|
||||||
qint64 tval;
|
//qint64 tval;
|
||||||
if (timeweight) {
|
if (timeweight) {
|
||||||
for (QHash<EventStoreType, quint32>::iterator i=tei.value().begin();i!=tei.value().end();i++) {
|
for (QHash<EventStoreType, quint32>::iterator i=tei.value().begin();i!=tei.value().end();i++) {
|
||||||
value=i.key();
|
value=i.key();
|
||||||
|
@ -170,7 +170,7 @@ int FPIconLoader::OpenMachine(Machine *mach, QString & path, Profile * profile)
|
|||||||
for (int i=0;i<flw.size();i++) {
|
for (int i=0;i<flw.size();i++) {
|
||||||
OpenFLW(mach,flw[i],profile);
|
OpenFLW(mach,flw[i],profile);
|
||||||
}
|
}
|
||||||
SessionID zz,sid,st;
|
SessionID zz,sid;//,st;
|
||||||
float hours,dur,mins;
|
float hours,dur,mins;
|
||||||
|
|
||||||
qDebug() << "Last 20 Sessions";
|
qDebug() << "Last 20 Sessions";
|
||||||
@ -205,7 +205,7 @@ int FPIconLoader::OpenMachine(Machine *mach, QString & path, Profile * profile)
|
|||||||
QList<FPWaveChunk> chunks;
|
QList<FPWaveChunk> chunks;
|
||||||
for (QMap<int,QDate>::iterator dit=FLWDate.begin();dit!=FLWDate.end();dit++) {
|
for (QMap<int,QDate>::iterator dit=FLWDate.begin();dit!=FLWDate.end();dit++) {
|
||||||
int k=dit.key();
|
int k=dit.key();
|
||||||
QDate date=dit.value();
|
//QDate date=dit.value();
|
||||||
// QList<Session *> values = SessDate.values(date);
|
// QList<Session *> values = SessDate.values(date);
|
||||||
for (int j=0;j<FLWTS[k].size();j++) {
|
for (int j=0;j<FLWTS[k].size();j++) {
|
||||||
|
|
||||||
@ -247,11 +247,13 @@ int FPIconLoader::OpenMachine(Machine *mach, QString & path, Profile * profile)
|
|||||||
|
|
||||||
bool FPIconLoader::OpenFLW(Machine * mach,QString filename, Profile * profile)
|
bool FPIconLoader::OpenFLW(Machine * mach,QString filename, Profile * profile)
|
||||||
{
|
{
|
||||||
|
Q_UNUSED(mach);
|
||||||
|
Q_UNUSED(profile);
|
||||||
QByteArray data;
|
QByteArray data;
|
||||||
quint16 t1;
|
quint16 t1;
|
||||||
quint32 ts;
|
quint32 ts;
|
||||||
double ti;
|
double ti;
|
||||||
qint8 b;
|
//qint8 b;
|
||||||
EventList * flow=NULL, * pressure=NULL, *leak=NULL;
|
EventList * flow=NULL, * pressure=NULL, *leak=NULL;
|
||||||
QDateTime datetime;
|
QDateTime datetime;
|
||||||
quint8 a1,a2;
|
quint8 a1,a2;
|
||||||
@ -397,7 +399,7 @@ bool FPIconLoader::OpenFLW(Machine * mach,QString filename, Profile * profile)
|
|||||||
break;
|
break;
|
||||||
if (!((p2[0]==0xff) && (p2[1]==0xff))) {
|
if (!((p2[0]==0xff) && (p2[1]==0xff))) {
|
||||||
if (count>0) {
|
if (count>0) {
|
||||||
int i=5;
|
//int i=5;
|
||||||
}
|
}
|
||||||
do {
|
do {
|
||||||
while ((*p++ != 0xff) && (p < endbuf)) {
|
while ((*p++ != 0xff) && (p < endbuf)) {
|
||||||
@ -421,10 +423,10 @@ bool FPIconLoader::OpenFLW(Machine * mach,QString filename, Profile * profile)
|
|||||||
|
|
||||||
count++;
|
count++;
|
||||||
|
|
||||||
if (pr<0) {
|
//if (pr<0) {
|
||||||
quint16 z3=pr;
|
//quint16 z3=pr;
|
||||||
int i=5;
|
// int i=5;
|
||||||
}
|
//}
|
||||||
|
|
||||||
if (leak) {
|
if (leak) {
|
||||||
leak->AddEvent(ti,lkaj);
|
leak->AddEvent(ti,lkaj);
|
||||||
@ -436,10 +438,10 @@ bool FPIconLoader::OpenFLW(Machine * mach,QString filename, Profile * profile)
|
|||||||
if (flow) {
|
if (flow) {
|
||||||
qint16 tmp;
|
qint16 tmp;
|
||||||
unsigned char * bb=(unsigned char *)buf;
|
unsigned char * bb=(unsigned char *)buf;
|
||||||
char c;
|
//char c;
|
||||||
if (len>50) {
|
//if (len>50) {
|
||||||
int i=5;
|
//int i=5;
|
||||||
}
|
//}
|
||||||
|
|
||||||
EventDataType val;
|
EventDataType val;
|
||||||
for (int i=0;i<len;i++) {
|
for (int i=0;i<len;i++) {
|
||||||
@ -536,7 +538,7 @@ bool FPIconLoader::OpenSummary(Machine * mach,QString filename, Profile * profil
|
|||||||
in.setVersion(QDataStream::Qt_4_6);
|
in.setVersion(QDataStream::Qt_4_6);
|
||||||
in.setByteOrder(QDataStream::LittleEndian);
|
in.setByteOrder(QDataStream::LittleEndian);
|
||||||
|
|
||||||
quint16 t1,t2;
|
quint16 t1;//,t2;
|
||||||
quint32 ts;
|
quint32 ts;
|
||||||
//QByteArray line;
|
//QByteArray line;
|
||||||
unsigned char a1,a2, a3,a4, a5, p1, p2, p3, p4, p5, j1, j2, j3 ,j4,j5,j6,j7, x1, x2;
|
unsigned char a1,a2, a3,a4, a5, p1, p2, p3, p4, p5, j1, j2, j3 ,j4,j5,j6,j7, x1, x2;
|
||||||
@ -642,6 +644,9 @@ bool FPIconLoader::OpenSummary(Machine * mach,QString filename, Profile * profil
|
|||||||
|
|
||||||
bool FPIconLoader::OpenDetail(Machine * mach, QString filename, Profile * profile)
|
bool FPIconLoader::OpenDetail(Machine * mach, QString filename, Profile * profile)
|
||||||
{
|
{
|
||||||
|
Q_UNUSED(mach);
|
||||||
|
Q_UNUSED(profile);
|
||||||
|
|
||||||
qDebug() << filename;
|
qDebug() << filename;
|
||||||
QByteArray header;
|
QByteArray header;
|
||||||
QFile file(filename);
|
QFile file(filename);
|
||||||
@ -664,7 +669,7 @@ bool FPIconLoader::OpenDetail(Machine * mach, QString filename, Profile * profil
|
|||||||
|
|
||||||
QByteArray index;
|
QByteArray index;
|
||||||
index=file.read(0x800);
|
index=file.read(0x800);
|
||||||
long size=index.size(),pos=0;
|
//long size=index.size(),pos=0;
|
||||||
QDataStream in(index);
|
QDataStream in(index);
|
||||||
|
|
||||||
in.setVersion(QDataStream::Qt_4_6);
|
in.setVersion(QDataStream::Qt_4_6);
|
||||||
|
@ -117,6 +117,7 @@ blockLayoutOffsets {
|
|||||||
|
|
||||||
int MSeriesLoader::Open(QString & path,Profile *profile)
|
int MSeriesLoader::Open(QString & path,Profile *profile)
|
||||||
{
|
{
|
||||||
|
Q_UNUSED(profile);
|
||||||
// Until a smartcard reader is written, this is not an auto-scanner.. it just opens a block file..
|
// Until a smartcard reader is written, this is not an auto-scanner.. it just opens a block file..
|
||||||
|
|
||||||
QFile file(path);
|
QFile file(path);
|
||||||
@ -138,13 +139,13 @@ int MSeriesLoader::Open(QString & path,Profile *profile)
|
|||||||
if (magic!=0x5249) { // "RI" Respironics Magic number
|
if (magic!=0x5249) { // "RI" Respironics Magic number
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
quint8 cardtype=cardinfo[2];
|
//quint8 cardtype=cardinfo[2];
|
||||||
quint8 cardver=cardinfo[3];
|
//quint8 cardver=cardinfo[3];
|
||||||
|
|
||||||
quint16 user_offset=(cardinfo[4] << 8) | cardinfo[5];
|
quint16 user_offset=(cardinfo[4] << 8) | cardinfo[5];
|
||||||
quint16 rx_offset=(cardinfo[8] << 8) | cardinfo[9];
|
//quint16 rx_offset=(cardinfo[8] << 8) | cardinfo[9];
|
||||||
quint16 control_offset=(cardinfo[12] << 8) | cardinfo[13];
|
quint16 control_offset=(cardinfo[12] << 8) | cardinfo[13];
|
||||||
quint16 data_offset=(cardinfo[16] << 8) | cardinfo[17];
|
//quint16 data_offset=(cardinfo[16] << 8) | cardinfo[17];
|
||||||
|
|
||||||
|
|
||||||
const char * userinfo=block.data()+user_offset;
|
const char * userinfo=block.data()+user_offset;
|
||||||
@ -164,7 +165,7 @@ int MSeriesLoader::Open(QString & path,Profile *profile)
|
|||||||
qDebug() << "MSeries UserInfo block checksum failure" << path;
|
qDebug() << "MSeries UserInfo block checksum failure" << path;
|
||||||
}
|
}
|
||||||
|
|
||||||
const unsigned char * rxblock=(unsigned char *)block.data()+rx_offset;
|
//const unsigned char * rxblock=(unsigned char *)block.data()+rx_offset;
|
||||||
|
|
||||||
unsigned char * controlblock=(unsigned char *)block.data()+control_offset;
|
unsigned char * controlblock=(unsigned char *)block.data()+control_offset;
|
||||||
quint16 count=controlblock[0] << 8 | controlblock[1]; // number of control blocks
|
quint16 count=controlblock[0] << 8 | controlblock[1]; // number of control blocks
|
||||||
@ -262,7 +263,7 @@ int MSeriesLoader::Open(QString & path,Profile *profile)
|
|||||||
u1=cb[0];
|
u1=cb[0];
|
||||||
cb++;
|
cb++;
|
||||||
|
|
||||||
if ((cb[0]==0xfe)) {
|
if (cb[0]==0xfe) {
|
||||||
u1=cb[0] << 8 | cb[1]; // fe 0a, followed by timestamp
|
u1=cb[0] << 8 | cb[1]; // fe 0a, followed by timestamp
|
||||||
cb+=2;
|
cb+=2;
|
||||||
break; // start on the next timestamp
|
break; // start on the next timestamp
|
||||||
@ -308,7 +309,7 @@ int MSeriesLoader::Open(QString & path,Profile *profile)
|
|||||||
} while (cb < endcard && !done);
|
} while (cb < endcard && !done);
|
||||||
|
|
||||||
done=false;
|
done=false;
|
||||||
bool first=true;
|
//bool first=true;
|
||||||
quint8 exch;
|
quint8 exch;
|
||||||
cnt=0;
|
cnt=0;
|
||||||
do {
|
do {
|
||||||
|
@ -91,12 +91,12 @@ bool EDFParser::Parse()
|
|||||||
bool ok;
|
bool ok;
|
||||||
QString temp,temp2;
|
QString temp,temp2;
|
||||||
|
|
||||||
version=QString::fromAscii(header.version,8).toLong(&ok);
|
version=QString::fromLatin1(header.version,8).toLong(&ok);
|
||||||
if (!ok)
|
if (!ok)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
//patientident=QString::fromAscii(header.patientident,80);
|
//patientident=QString::fromLatin1(header.patientident,80);
|
||||||
recordingident=QString::fromAscii(header.recordingident,80); // Serial number is in here..
|
recordingident=QString::fromLatin1(header.recordingident,80); // Serial number is in here..
|
||||||
int snp=recordingident.indexOf("SRN=");
|
int snp=recordingident.indexOf("SRN=");
|
||||||
serialnumber.clear();
|
serialnumber.clear();
|
||||||
/*char * idx=index(header.recordingident,'=');
|
/*char * idx=index(header.recordingident,'=');
|
||||||
@ -112,7 +112,7 @@ bool EDFParser::Parse()
|
|||||||
break;
|
break;
|
||||||
serialnumber+=recordingident[i];
|
serialnumber+=recordingident[i];
|
||||||
}
|
}
|
||||||
QDateTime startDate=QDateTime::fromString(QString::fromAscii(header.datetime,16),"dd.MM.yyHH.mm.ss");
|
QDateTime startDate=QDateTime::fromString(QString::fromLatin1(header.datetime,16),"dd.MM.yyHH.mm.ss");
|
||||||
//startDate.toTimeSpec(Qt::UTC);
|
//startDate.toTimeSpec(Qt::UTC);
|
||||||
QDate d2=startDate.date();
|
QDate d2=startDate.date();
|
||||||
if (d2.year()<2000) {
|
if (d2.year()<2000) {
|
||||||
@ -128,18 +128,18 @@ bool EDFParser::Parse()
|
|||||||
|
|
||||||
//qDebug() << startDate.toString("yyyy-MM-dd HH:mm:ss");
|
//qDebug() << startDate.toString("yyyy-MM-dd HH:mm:ss");
|
||||||
|
|
||||||
num_header_bytes=QString::fromAscii(header.num_header_bytes,8).toLong(&ok);
|
num_header_bytes=QString::fromLatin1(header.num_header_bytes,8).toLong(&ok);
|
||||||
if (!ok)
|
if (!ok)
|
||||||
return false;
|
return false;
|
||||||
//reserved44=QString::fromAscii(header.reserved,44);
|
//reserved44=QString::fromLatin1(header.reserved,44);
|
||||||
num_data_records=QString::fromAscii(header.num_data_records,8).toLong(&ok);
|
num_data_records=QString::fromLatin1(header.num_data_records,8).toLong(&ok);
|
||||||
if (!ok)
|
if (!ok)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
dur_data_record=QString::fromAscii(header.dur_data_records,8).toDouble(&ok)*1000.0;
|
dur_data_record=QString::fromLatin1(header.dur_data_records,8).toDouble(&ok)*1000.0;
|
||||||
if (!ok)
|
if (!ok)
|
||||||
return false;
|
return false;
|
||||||
num_signals=QString::fromAscii(header.num_signals,4).toLong(&ok);
|
num_signals=QString::fromLatin1(header.num_signals,4).toLong(&ok);
|
||||||
if (!ok)
|
if (!ok)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
@ -218,7 +218,7 @@ bool EDFParser::Open(QString name)
|
|||||||
datasize=filesize-EDFHeaderSize;
|
datasize=filesize-EDFHeaderSize;
|
||||||
if (datasize<0) return false;
|
if (datasize<0) return false;
|
||||||
qDebug() << "Size of" << name << "uncompressed=" << filesize;
|
qDebug() << "Size of" << name << "uncompressed=" << filesize;
|
||||||
gzFile f=gzopen(name.toAscii(),"rb");
|
gzFile f=gzopen(name.toLatin1(),"rb");
|
||||||
if (!f) {
|
if (!f) {
|
||||||
qDebug() << "EDFParser::Open() Couldn't open file" << name;
|
qDebug() << "EDFParser::Open() Couldn't open file" << name;
|
||||||
return false;
|
return false;
|
||||||
@ -478,9 +478,9 @@ int ResmedLoader::Open(QString & path,Profile *profile)
|
|||||||
|
|
||||||
QHash<qint16,QList<time_t> > daystarttimes;
|
QHash<qint16,QList<time_t> > daystarttimes;
|
||||||
QHash<qint16,QList<time_t> > dayendtimes;
|
QHash<qint16,QList<time_t> > dayendtimes;
|
||||||
qint16 on,off;
|
//qint16 on,off;
|
||||||
qint16 o1[10],o2[10];
|
//qint16 o1[10],o2[10];
|
||||||
time_t st,et;
|
//time_t st,et;
|
||||||
time_t time=stredf.startdate/1000L; // == 12pm on first day
|
time_t time=stredf.startdate/1000L; // == 12pm on first day
|
||||||
// for (int i=0;i<days;i++) {
|
// for (int i=0;i<days;i++) {
|
||||||
// EDFSignal *maskon=stredf.lookup["Mask On"];
|
// EDFSignal *maskon=stredf.lookup["Mask On"];
|
||||||
@ -636,7 +636,7 @@ int ResmedLoader::Open(QString & path,Profile *profile)
|
|||||||
/////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
// Scan over file list and knock out of dayused list
|
// Scan over file list and knock out of dayused list
|
||||||
/////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
int dn;
|
//int dn;
|
||||||
// for (QMap<SessionID,QStringList>::iterator si=sessfiles.begin();si!=sessfiles.end();si++) {
|
// for (QMap<SessionID,QStringList>::iterator si=sessfiles.begin();si!=sessfiles.end();si++) {
|
||||||
// sessionid=si.key();
|
// sessionid=si.key();
|
||||||
|
|
||||||
|
@ -133,7 +133,7 @@ int ZEOLoader::OpenFile(QString filename)
|
|||||||
QDateTime start_of_night, end_of_night, rise_time;
|
QDateTime start_of_night, end_of_night, rise_time;
|
||||||
SessionID sid;
|
SessionID sid;
|
||||||
|
|
||||||
const qint64 WindowSize=30000;
|
//const qint64 WindowSize=30000;
|
||||||
qint64 st,tt;
|
qint64 st,tt;
|
||||||
int stage;
|
int stage;
|
||||||
|
|
||||||
|
@ -109,7 +109,7 @@ QDate Machine::AddSession(Session *s,Profile *p)
|
|||||||
|
|
||||||
sessionlist[s->session()]=s; // To make sure it get's saved later even if it's not wanted.
|
sessionlist[s->session()]=s; // To make sure it get's saved later even if it's not wanted.
|
||||||
|
|
||||||
int drift=PROFILE.cpap->clockDrift();
|
//int drift=PROFILE.cpap->clockDrift();
|
||||||
|
|
||||||
QDateTime d2=QDateTime::fromTime_t(s->first()/1000);
|
QDateTime d2=QDateTime::fromTime_t(s->first()/1000);
|
||||||
|
|
||||||
@ -162,7 +162,7 @@ QDate Machine::AddSession(Session *s,Profile *p)
|
|||||||
dit=day.find(date);
|
dit=day.find(date);
|
||||||
if (dit==day.end()) {
|
if (dit==day.end()) {
|
||||||
//QString dstr=date.toString("yyyyMMdd");
|
//QString dstr=date.toString("yyyyMMdd");
|
||||||
//qDebug("Adding Profile Day %s",dstr.toAscii().data());
|
//qDebug("Adding Profile Day %s",dstr.toLatin1().data());
|
||||||
dd=new Day(this);
|
dd=new Day(this);
|
||||||
day[date]=dd;
|
day[date]=dd;
|
||||||
// Add this Day record to profile
|
// Add this Day record to profile
|
||||||
|
@ -70,7 +70,7 @@ bool MachineLoader::compressFile(QString inpath, QString outpath)
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
f.close();
|
f.close();
|
||||||
gzFile gz=gzopen(outpath.toAscii(),"wb");
|
gzFile gz=gzopen(outpath.toLatin1(),"wb");
|
||||||
//gzbuffer(gz,65536*2);
|
//gzbuffer(gz,65536*2);
|
||||||
if (!gz) {
|
if (!gz) {
|
||||||
qDebug() << "compressFile() Couldn't open" << outpath <<"for writing";
|
qDebug() << "compressFile() Couldn't open" << outpath <<"for writing";
|
||||||
|
@ -4,7 +4,15 @@
|
|||||||
#
|
#
|
||||||
#-------------------------------------------------
|
#-------------------------------------------------
|
||||||
|
|
||||||
QT += core gui webkit opengl network xml
|
QT += core gui opengl network xml
|
||||||
|
|
||||||
|
contains(QT_MAJOR_VERSION,5) {
|
||||||
|
QT += webkitwidgets
|
||||||
|
}
|
||||||
|
|
||||||
|
!contains(QT_MAJOR_VERSION,5) {
|
||||||
|
QT += webkit
|
||||||
|
}
|
||||||
|
|
||||||
CONFIG += rtti
|
CONFIG += rtti
|
||||||
|
|
||||||
|
@ -193,7 +193,7 @@ void ExportCSV::on_exportButton_clicked()
|
|||||||
header+=sep+schema::channel[p90list[i]].label()+tr(" %1%").arg(percent,0,'f',0);
|
header+=sep+schema::channel[p90list[i]].label()+tr(" %1%").arg(percent,0,'f',0);
|
||||||
}
|
}
|
||||||
header+=newline;
|
header+=newline;
|
||||||
file.write(header.toAscii());
|
file.write(header.toLatin1());
|
||||||
QDate date=ui->startDate->date();
|
QDate date=ui->startDate->date();
|
||||||
Daily *daily=mainwin->getDaily();
|
Daily *daily=mainwin->getDaily();
|
||||||
QDate daily_date=daily->getDate();
|
QDate daily_date=daily->getDate();
|
||||||
@ -230,7 +230,7 @@ void ExportCSV::on_exportButton_clicked()
|
|||||||
for (int i=0;i<p90list.size();i++)
|
for (int i=0;i<p90list.size();i++)
|
||||||
data+=sep+QString::number(day->p90(p90list.at(i)));
|
data+=sep+QString::number(day->p90(p90list.at(i)));
|
||||||
data+=newline;
|
data+=newline;
|
||||||
file.write(data.toAscii());
|
file.write(data.toLatin1());
|
||||||
|
|
||||||
} else if (ui->rb1_Sessions->isChecked()) {
|
} else if (ui->rb1_Sessions->isChecked()) {
|
||||||
for (int i=0;i<day->size();i++) {
|
for (int i=0;i<day->size();i++) {
|
||||||
@ -258,7 +258,7 @@ void ExportCSV::on_exportButton_clicked()
|
|||||||
for (int j=0;j<p90list.size();j++)
|
for (int j=0;j<p90list.size();j++)
|
||||||
data+=sep+QString::number(day->p90(p90list.at(j)));
|
data+=sep+QString::number(day->p90(p90list.at(j)));
|
||||||
data+=newline;
|
data+=newline;
|
||||||
file.write(data.toAscii());
|
file.write(data.toLatin1());
|
||||||
}
|
}
|
||||||
} else if (ui->rb1_details->isChecked()) {
|
} else if (ui->rb1_details->isChecked()) {
|
||||||
QList<ChannelID> all=countlist;
|
QList<ChannelID> all=countlist;
|
||||||
@ -280,7 +280,7 @@ void ExportCSV::on_exportButton_clicked()
|
|||||||
data+=sep+schema::channel[key].name();
|
data+=sep+schema::channel[key].name();
|
||||||
data+=sep+QString::number(ev->data(q),'f',2);
|
data+=sep+QString::number(ev->data(q),'f',2);
|
||||||
data+=newline;
|
data+=newline;
|
||||||
file.write(data.toAscii());
|
file.write(data.toLatin1());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
9
main.cpp
9
main.cpp
@ -115,7 +115,10 @@ int main(int argc, char *argv[])
|
|||||||
#ifdef Q_WS_X11
|
#ifdef Q_WS_X11
|
||||||
XInitThreads();
|
XInitThreads();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if QT_VERSION < QT_VERSION_CHECK(5,0,0)
|
||||||
QGL::setPreferredPaintEngine(QPaintEngine::OpenGL);
|
QGL::setPreferredPaintEngine(QPaintEngine::OpenGL);
|
||||||
|
#endif
|
||||||
|
|
||||||
bool force_login_screen=false;
|
bool force_login_screen=false;
|
||||||
QApplication a(argc, argv);
|
QApplication a(argc, argv);
|
||||||
@ -248,8 +251,12 @@ int main(int argc, char *argv[])
|
|||||||
PREF["Fonts_Application_Italic"].toBool()));
|
PREF["Fonts_Application_Italic"].toBool()));
|
||||||
|
|
||||||
qDebug() << "Selected" << QApplication::font().family();
|
qDebug() << "Selected" << QApplication::font().family();
|
||||||
qInstallMsgHandler(MyOutputHandler);
|
|
||||||
|
|
||||||
|
//#if QT_VERSION >= QT_VERSION_CHECK(5,0,0)
|
||||||
|
// qInstallMessageHandler(MyOutputHandler);
|
||||||
|
//#else
|
||||||
|
qInstallMsgHandler(MyOutputHandler);
|
||||||
|
//#endif
|
||||||
MainWindow w;
|
MainWindow w;
|
||||||
mainwin=&w;
|
mainwin=&w;
|
||||||
|
|
||||||
|
@ -86,7 +86,7 @@ MainWindow::MainWindow(QWidget *parent) :
|
|||||||
//ui->tabWidget->setCurrentIndex(1);
|
//ui->tabWidget->setCurrentIndex(1);
|
||||||
|
|
||||||
// Disable Screenshot on Mac Platform,as it doesn't work, and the system provides this functionality anyway.
|
// Disable Screenshot on Mac Platform,as it doesn't work, and the system provides this functionality anyway.
|
||||||
#ifdef Q_WS_MAC
|
#ifdef Q_OS_MAC
|
||||||
ui->action_Screenshot->setVisible(false);
|
ui->action_Screenshot->setVisible(false);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -121,7 +121,7 @@ MainWindow::MainWindow(QWidget *parent) :
|
|||||||
ui->logText->hide();
|
ui->logText->hide();
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef Q_WS_MAC
|
#ifdef Q_OS_MAC
|
||||||
PROFILE.appearance->setAntiAliasing(false);
|
PROFILE.appearance->setAntiAliasing(false);
|
||||||
#endif
|
#endif
|
||||||
ui->action_Link_Graph_Groups->setChecked(PROFILE.general->linkGroups());
|
ui->action_Link_Graph_Groups->setChecked(PROFILE.general->linkGroups());
|
||||||
@ -233,7 +233,7 @@ void MainWindow::Notify(QString s,QString title,int ms)
|
|||||||
|
|
||||||
void MainWindow::Startup()
|
void MainWindow::Startup()
|
||||||
{
|
{
|
||||||
qDebug() << PREF["AppName"].toString().toAscii()+" v"+VersionString.toAscii() << "built with Qt"<< QT_VERSION_STR << "on" << __DATE__ << __TIME__;
|
qDebug() << PREF["AppName"].toString().toLatin1()+" v"+VersionString.toLatin1() << "built with Qt"<< QT_VERSION_STR << "on" << __DATE__ << __TIME__;
|
||||||
qstatus->setText(tr("Loading Data"));
|
qstatus->setText(tr("Loading Data"));
|
||||||
qprogress->show();
|
qprogress->show();
|
||||||
//qstatusbar->showMessage(tr("Loading Data"),0);
|
//qstatusbar->showMessage(tr("Loading Data"),0);
|
||||||
@ -316,7 +316,7 @@ void MainWindow::on_action_Import_Data_triggered()
|
|||||||
w.setFileMode(QFileDialog::Directory);
|
w.setFileMode(QFileDialog::Directory);
|
||||||
w.setOption(QFileDialog::ShowDirsOnly, true);
|
w.setOption(QFileDialog::ShowDirsOnly, true);
|
||||||
|
|
||||||
#if defined(Q_WS_MAC) && (QT_VERSION_CHECK(4,8,0) > QT_VERSION)
|
#if defined(Q_OS_MAC) && (QT_VERSION_CHECK(4,8,0) > QT_VERSION)
|
||||||
// Fix for tetragon, 10.6 barfs up Qt's custom dialog
|
// Fix for tetragon, 10.6 barfs up Qt's custom dialog
|
||||||
w.setOption(QFileDialog::DontUseNativeDialog,true);
|
w.setOption(QFileDialog::DontUseNativeDialog,true);
|
||||||
#else
|
#else
|
||||||
@ -1443,7 +1443,7 @@ void MainWindow::on_overviewButton_clicked()
|
|||||||
|
|
||||||
void MainWindow::on_webView_loadFinished(bool arg1)
|
void MainWindow::on_webView_loadFinished(bool arg1)
|
||||||
{
|
{
|
||||||
arg1=arg1;
|
Q_UNUSED(arg1);
|
||||||
qprogress->hide();
|
qprogress->hide();
|
||||||
if (first_load) {
|
if (first_load) {
|
||||||
QTimer::singleShot(0,this,SLOT(Startup()));
|
QTimer::singleShot(0,this,SLOT(Startup()));
|
||||||
@ -1567,7 +1567,7 @@ void MainWindow::on_action_Screenshot_triggered()
|
|||||||
}
|
}
|
||||||
void MainWindow::DelayedScreenshot()
|
void MainWindow::DelayedScreenshot()
|
||||||
{
|
{
|
||||||
//#ifdef Q_WS_MAC
|
//#ifdef Q_OS_MAC
|
||||||
// CGImageRef windowImage = CGWindowListCreateImage(imageBounds, singleWindowListOptions, windowID, imageOptions);
|
// CGImageRef windowImage = CGWindowListCreateImage(imageBounds, singleWindowListOptions, windowID, imageOptions);
|
||||||
// originalPixmap = new QPixmap(QPixmap::fromMacCGImageRef(windowImage));
|
// originalPixmap = new QPixmap(QPixmap::fromMacCGImageRef(windowImage));
|
||||||
|
|
||||||
@ -1740,7 +1740,7 @@ void MainWindow::PrintReport(gGraphView *gv,QString name, QDate date)
|
|||||||
printer->setNumCopies(1);
|
printer->setNumCopies(1);
|
||||||
printer->setPageMargins(10,10,10,10,QPrinter::Millimeter);
|
printer->setPageMargins(10,10,10,10,QPrinter::Millimeter);
|
||||||
QPrintDialog dialog(printer);
|
QPrintDialog dialog(printer);
|
||||||
#ifdef Q_WS_MAC
|
#ifdef Q_OS_MAC
|
||||||
// QTBUG-17913
|
// QTBUG-17913
|
||||||
QApplication::processEvents();
|
QApplication::processEvents();
|
||||||
#endif
|
#endif
|
||||||
@ -2164,14 +2164,21 @@ void MainWindow::PrintReport(gGraphView *gv,QString name, QDate date)
|
|||||||
//painter.beginNativePainting();
|
//painter.beginNativePainting();
|
||||||
//g->showTitle(false);
|
//g->showTitle(false);
|
||||||
int hhh=full_graph_height-normal_height;
|
int hhh=full_graph_height-normal_height;
|
||||||
QPixmap pm=g->renderPixmap(virt_width,hhh,1);//fscale);
|
QPixmap pm2=g->renderPixmap(virt_width,hhh,1);
|
||||||
|
QImage pm=pm2.toImage();//fscale);
|
||||||
|
pm2.detach();
|
||||||
//g->showTitle(true);
|
//g->showTitle(true);
|
||||||
//painter.endNativePainting();
|
//painter.endNativePainting();
|
||||||
g->m_marginbottom=tmb;
|
g->m_marginbottom=tmb;
|
||||||
PROFILE.appearance->setAntiAliasing(aa_setting);
|
PROFILE.appearance->setAntiAliasing(aa_setting);
|
||||||
|
|
||||||
|
|
||||||
if (!pm.isNull()) {
|
if (!pm.isNull()) {
|
||||||
painter.drawPixmap(0,top,virt_width,full_graph_height-normal_height,pm);
|
painter.drawImage(0,top,pm);;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
//painter.drawImage(0,top,virt_width,full_graph_height-normal_height,pm);
|
||||||
}
|
}
|
||||||
top+=full_graph_height;
|
top+=full_graph_height;
|
||||||
|
|
||||||
|
@ -939,7 +939,7 @@ void Oximetry::on_RefreshPortsButton_clicked()
|
|||||||
bool current_found=false;
|
bool current_found=false;
|
||||||
|
|
||||||
// Windows build mixes these up
|
// Windows build mixes these up
|
||||||
#if defined(Q_WS_WIN32) || defined(Q_WS_MAC)
|
#if defined(Q_WS_WIN32) || defined(Q_OS_MAC)
|
||||||
#define qesPORTNAME portName
|
#define qesPORTNAME portName
|
||||||
#else
|
#else
|
||||||
#define qesPORTNAME physName
|
#define qesPORTNAME physName
|
||||||
|
@ -680,9 +680,9 @@ bool QextSerialPort::open(OpenMode mode)
|
|||||||
if (mode == QIODevice::NotOpen)
|
if (mode == QIODevice::NotOpen)
|
||||||
return isOpen();
|
return isOpen();
|
||||||
if (!isOpen()) {
|
if (!isOpen()) {
|
||||||
qDebug() << "trying to open file" << port.toAscii();
|
qDebug() << "trying to open file" << port.toLatin1();
|
||||||
//note: linux 2.6.21 seems to ignore O_NDELAY flag
|
//note: linux 2.6.21 seems to ignore O_NDELAY flag
|
||||||
if ((fd = ::open(port.toAscii() ,O_RDWR | O_NOCTTY | O_NDELAY)) != -1) {
|
if ((fd = ::open(port.toLatin1() ,O_RDWR | O_NOCTTY | O_NDELAY)) != -1) {
|
||||||
qDebug("file opened succesfully");
|
qDebug("file opened succesfully");
|
||||||
|
|
||||||
setOpenMode(mode); // Flag the port as opened
|
setOpenMode(mode); // Flag the port as opened
|
||||||
|
@ -53,7 +53,7 @@ bool QextSerialPort::open(OpenMode mode) {
|
|||||||
return isOpen();
|
return isOpen();
|
||||||
if (!isOpen()) {
|
if (!isOpen()) {
|
||||||
/*open the port*/
|
/*open the port*/
|
||||||
Win_Handle=CreateFileA(port.toAscii(), GENERIC_READ|GENERIC_WRITE,
|
Win_Handle=CreateFileA(port.toLatin1(), GENERIC_READ|GENERIC_WRITE,
|
||||||
0, NULL, OPEN_EXISTING, dwFlagsAndAttributes, NULL);
|
0, NULL, OPEN_EXISTING, dwFlagsAndAttributes, NULL);
|
||||||
if (Win_Handle!=INVALID_HANDLE_VALUE) {
|
if (Win_Handle!=INVALID_HANDLE_VALUE) {
|
||||||
QIODevice::open(mode);
|
QIODevice::open(mode);
|
||||||
|
@ -1245,7 +1245,7 @@ extern int ZEXPORT unzReadCurrentFile (file, buf, len)
|
|||||||
return UNZ_PARAMERROR;
|
return UNZ_PARAMERROR;
|
||||||
|
|
||||||
|
|
||||||
if ((pfile_in_zip_read_info->read_buffer == NULL))
|
if (pfile_in_zip_read_info->read_buffer == NULL)
|
||||||
return UNZ_END_OF_LIST_OF_FILE;
|
return UNZ_END_OF_LIST_OF_FILE;
|
||||||
if (len==0)
|
if (len==0)
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -776,9 +776,9 @@ extern int ZEXPORT zipOpenNewFileInZip3 (file, filename, zipfi,
|
|||||||
zi->ci.flag = 0;
|
zi->ci.flag = 0;
|
||||||
if ((level==8) || (level==9))
|
if ((level==8) || (level==9))
|
||||||
zi->ci.flag |= 2;
|
zi->ci.flag |= 2;
|
||||||
if ((level==2))
|
if (level==2)
|
||||||
zi->ci.flag |= 4;
|
zi->ci.flag |= 4;
|
||||||
if ((level==1))
|
if (level==1)
|
||||||
zi->ci.flag |= 6;
|
zi->ci.flag |= 6;
|
||||||
if (password != NULL)
|
if (password != NULL)
|
||||||
{
|
{
|
||||||
|
@ -13,7 +13,7 @@ const QString FullVersionString=QString().sprintf("%i.%i.%i-%i",major_version,mi
|
|||||||
|
|
||||||
const QString ReleaseStatus="beta";
|
const QString ReleaseStatus="beta";
|
||||||
|
|
||||||
#ifdef Q_WS_MAC
|
#ifdef Q_OS_MAC
|
||||||
const QString PlatformString="MacOSX";
|
const QString PlatformString="MacOSX";
|
||||||
#elif defined(Q_WS_WIN32)
|
#elif defined(Q_WS_WIN32)
|
||||||
const QString PlatformString="Win32";
|
const QString PlatformString="Win32";
|
||||||
|
Loading…
Reference in New Issue
Block a user