diff --git a/Graphs/gGraphView.cpp b/Graphs/gGraphView.cpp index 80dc6bf0..78b69cb3 100644 --- a/Graphs/gGraphView.cpp +++ b/Graphs/gGraphView.cpp @@ -37,6 +37,8 @@ bool evil_intel_graphics_chip=false; extern QLabel * qstatus2; const int mouse_movement_threshold=6; +QHash images; + // Must be called from a thread inside the application. void InitGraphs() { @@ -81,6 +83,16 @@ void InitGraphs() mediumfont->setStyleHint(QFont::AnyStyle,QFont::OpenGLCompatible); bigfont->setStyleHint(QFont::AnyStyle,QFont::OpenGLCompatible); + images["mask"]=new QImage(":/icons/mask.png"); + images["oximeter"]=new QImage(":/icons/cubeoximeter.png"); + images["smiley"]=new QImage(":/icons/smileyface.png"); + images["sad"]=new QImage(":/icons/sadface.png"); + images["brick"]=new QImage(":/icons/brick.png"); + //images["warning"]=new QImage(":/icons/warning.png"); + //images["bug"]=new QImage(":/icons/bug.png"); + images["sheep"]=new QImage(":/icons/sheep.png"); + images["nodata"]=new QImage(":/icons/nodata.png"); + _graph_init=true; } } @@ -90,6 +102,9 @@ void DoneGraphs() delete defaultfont; delete bigfont; delete mediumfont; + for (QHash::iterator i=images.begin();i!=images.end();i++) { + delete i.value(); + } _graph_init=false; } } @@ -1827,23 +1842,9 @@ gGraphView::gGraphView(QWidget *parent, gGraphView * shared) : //redrawtimer->setInterval(80); //redrawtimer->start(); connect(redrawtimer,SIGNAL(timeout()),SLOT(updateGL())); - QImage *image=new QImage(":/icons/oximeter.png"); - images.push_back(image); - image=new QImage(":/docs/sheep.png"); - images.push_back(image); - - image=new QImage(":/icons/sdcard.png"); - images.push_back(image); - - image=new QImage(":/icons/preferences.png"); - images.push_back(image); - - image=new QImage(":/icons/overview.png"); - images.push_back(image); - - image=new QImage(":/icons/edit-find.png"); - images.push_back(image); + //cubeimg.push_back(images["brick"]); + //cubeimg.push_back(images[""]); m_fadingOut=false; m_fadingIn=false; @@ -1875,9 +1876,6 @@ gGraphView::~gGraphView() disconnect(timer,0,0,0); timer->stop(); delete timer; - for (int i=0;i0) { + cubetex=bindTexture(*cubeimg[0]); } +// texid.resize(images.size()); +// for(int i=0;icancel(); if (m_fadingIn) { - previous_day_snapshot=current_day_snapshot; + m_fadingIn=false; + m_inAnimation=false; + updateGL(); + return; + // previous_day_snapshot=current_day_snapshot; } m_inAnimation=false; current_day_snapshot=renderPixmap(width(),height(),false); @@ -2466,7 +2478,7 @@ void gGraphView::paintGL() glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); bool numgraphs=true; - const int animTimeout=200; + const int animTimeout=500; float phase=0; int elapsed=0; @@ -2515,6 +2527,7 @@ void gGraphView::paintGL() glEnable(GL_BLEND); glColor4f(1.0,1.0,1.0,aphase); +// glBlendFunc(GL_ONE, GL_ONE_MINUS_SRC_ALPHA); bindTexture(previous_day_snapshot); glBegin(GL_QUADS); @@ -2525,7 +2538,10 @@ void gGraphView::paintGL() glEnd(); glColor4f(1.0,1.0,1.0,phase); + // glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); + //glAlphaFunc(GL_GREATER,0.9); + //glEnable(GL_ALPHA_TEST); bindTexture(current_day_snapshot); glBegin(GL_QUADS); glTexCoord2f(0.0f, 1.0f); glVertex2f(0,0); @@ -2534,6 +2550,7 @@ void gGraphView::paintGL() glTexCoord2f(0.0f, 0.0f); glVertex2f(0,height()); glEnd(); + //glDisable(GL_ALPHA_TEST); glDisable(GL_BLEND); glBindTexture(GL_TEXTURE_2D,0); } @@ -2545,16 +2562,20 @@ void gGraphView::paintGL() numgraphs=renderGraphs(); if (!numgraphs) { // No graphs drawn? - - if (something_fun && this->isVisible()) // Do something fun instead - renderSomethingFun(); - - // Then display the empty text message - QColor col=Qt::black; int x,y; GetTextExtent(m_emptytext,x,y,bigfont); - AddTextQue(m_emptytext,(width()/2)-x/2,(height()/2)+y/2,0.0,col,bigfont); + int tp; + if (something_fun && this->isVisible()) {// Do something fun instead + renderSomethingFun(); + tp=height()-(y/2); + } else { + tp=height() / 2 + y / 2; + } + // Then display the empty text message + QColor col=Qt::black; + AddTextQue(m_emptytext,(width()/2)-x/2,tp,0.0,col,bigfont); DrawTextQue(); + } } @@ -2576,13 +2597,22 @@ void gGraphView::paintGL() if (this->isVisible()) { if (m_limbo || m_inAnimation || (something_fun && !numgraphs)) { - redrawtimer->setInterval(25); + redrawtimer->setInterval(15); redrawtimer->setSingleShot(true); redrawtimer->start(); } } } +void gGraphView::setCubeImage(QImage *img) +{ + cubeimg.clear(); + cubeimg.push_back(img); + cubetex=bindTexture(*img); + glBindTexture(GL_TEXTURE_2D,0); +} + + // For manual scrolling void gGraphView::setOffsetY(int offsetY) { diff --git a/Graphs/gGraphView.h b/Graphs/gGraphView.h index 3aafddb3..f8726312 100644 --- a/Graphs/gGraphView.h +++ b/Graphs/gGraphView.h @@ -35,6 +35,8 @@ extern QFont * defaultfont; extern QFont * mediumfont; extern QFont * bigfont; +extern QHash images; + /*! \brief Gets the width and height parameters for supplied text \param QString text - The text string in question \param int & width @@ -796,6 +798,12 @@ public: //! \brief Sets the message displayed when there are no graphs to draw void setEmptyText(QString s) { m_emptytext=s; } + void setCubeImage(QImage *); + + // Cube fun + QVector cubeimg; + GLuint cubetex; + #ifdef ENABLE_THREADED_DRAWING QMutex text_mutex; QMutex gl_mutex; @@ -927,9 +935,7 @@ protected: QTime m_animationStarted; - // Cube fun - QVector images; - QVector texid; + //QVector texid; signals: diff --git a/Resources.qrc b/Resources.qrc index 3f784c2b..620f8be7 100644 --- a/Resources.qrc +++ b/Resources.qrc @@ -27,5 +27,12 @@ icons/arrow-end.png icons/arrow-left.png icons/arrow-right.png + icons/smileyface.png + icons/sadface.png + icons/mask.png + icons/brick.png + icons/sheep.png + icons/nodata.png + icons/cubeoximeter.png diff --git a/daily.cpp b/daily.cpp index 204201cc..4554ad20 100644 --- a/daily.cpp +++ b/daily.cpp @@ -647,8 +647,11 @@ void Daily::Load(QDate date) PRTypes pr; QString a; bool isBrick=false; + + GraphView->setCubeImage(images["nodata"]); if (cpap) { if (GraphView->isEmpty()) { + GraphView->setCubeImage(images["brick"]); GraphView->setEmptyText(tr("Brick Machine :(")); isBrick=true; } else { diff --git a/icons/brick.png b/icons/brick.png new file mode 100644 index 00000000..d5513610 Binary files /dev/null and b/icons/brick.png differ diff --git a/icons/cubeoximeter.png b/icons/cubeoximeter.png new file mode 100644 index 00000000..c83018df Binary files /dev/null and b/icons/cubeoximeter.png differ diff --git a/icons/mask.png b/icons/mask.png new file mode 100644 index 00000000..276fcd23 Binary files /dev/null and b/icons/mask.png differ diff --git a/icons/sheep.png b/icons/sheep.png new file mode 100644 index 00000000..341bc449 Binary files /dev/null and b/icons/sheep.png differ diff --git a/icons/smileyface.png b/icons/smileyface.png new file mode 100644 index 00000000..b07a8678 Binary files /dev/null and b/icons/smileyface.png differ diff --git a/overview.cpp b/overview.cpp index d152add2..0d11d876 100644 --- a/overview.cpp +++ b/overview.cpp @@ -71,6 +71,9 @@ Overview::Overview(QWidget *parent,gGraphView * shared) : GraphView=new gGraphView(ui->graphArea,m_shared); GraphView->setSizePolicy(QSizePolicy::Expanding,QSizePolicy::Expanding); + GraphView->setEmptyText("Import some data!"); + GraphView->setCubeImage(images["nodata"]); + // Create the custom scrollbar and attach to GraphView scrollbar=new MyScrollBar(ui->graphArea); scrollbar->setOrientation(Qt::Vertical); @@ -78,6 +81,7 @@ Overview::Overview(QWidget *parent,gGraphView * shared) : scrollbar->setMaximumWidth(20); GraphView->setScrollBar(scrollbar); + // Add the graphView and scrollbar to the layout. layout->addWidget(GraphView,1); layout->addWidget(scrollbar,0); diff --git a/oximetry.cpp b/oximetry.cpp index f74542fb..7d11c76f 100644 --- a/oximetry.cpp +++ b/oximetry.cpp @@ -887,6 +887,7 @@ Oximetry::Oximetry(QWidget *parent,gGraphView * shared) : ui->saveButton->setEnabled(false); GraphView->LoadSettings("Oximetry"); + GraphView->setCubeImage(images["oximeter"]); QLocale locale=QLocale::system(); QString shortformat=locale.dateFormat(QLocale::ShortFormat);