Use repaint() in gGraphView

This commit is contained in:
Mark Watkins 2014-05-16 20:44:09 +10:00
parent f89a5e8ad7
commit d0fdf69deb
2 changed files with 7 additions and 6 deletions

View File

@ -274,7 +274,7 @@ gGraphView::gGraphView(QWidget *parent, gGraphView *shared)
redrawtimer = new QTimer(this);
//redrawtimer->setInterval(80);
//redrawtimer->start();
connect(redrawtimer, SIGNAL(timeout()), SLOT(updateGL()));
connect(redrawtimer, SIGNAL(timeout()), SLOT(repaint()));
//cubeimg.push_back(images["brick"]);
//cubeimg.push_back(images[""]);
@ -1736,7 +1736,7 @@ void gGraphView::keyPressEvent(QKeyEvent *event)
m_offsetY -= PROFILE.appearance->graphHeight() * 3 * m_scaleY;
m_scrollbar->setValue(m_offsetY);
m_offsetY = m_scrollbar->value();
repaint(rect());
repaint();
return;
} else if (event->key() == Qt::Key_PageDown) {
m_offsetY += PROFILE.appearance->graphHeight() * 3 * m_scaleY; //PROFILE.appearance->graphHeight();
@ -1745,7 +1745,7 @@ void gGraphView::keyPressEvent(QKeyEvent *event)
m_scrollbar->setValue(m_offsetY);
m_offsetY = m_scrollbar->value();
repaint(rect());
repaint();
return;
// redraw();
}
@ -2008,9 +2008,10 @@ int gGraphView::visibleGraphs()
return cnt;
}
void gGraphView::redraw()
{
if (!m_inAnimation) {
repaint(rect());
repaint();
}
}

View File

@ -51,7 +51,7 @@
<item>
<widget class="QTabWidget" name="tabWidget">
<property name="currentIndex">
<number>1</number>
<number>0</number>
</property>
<widget class="QWidget" name="importTab">
<attribute name="title">
@ -346,7 +346,7 @@ SleepyHead can keep a copy of this data if you ever need to reinstall.
(Highly recomended, unless your short on disk space or don't care about the graph data)</string>
</property>
<property name="text">
<string>Create SD Card Backups during Import (only for ResMed so far, highly recommended)</string>
<string>Create SD Card Backups during Import (This is fairly important for ResMed and FP ICON)</string>
</property>
</widget>
</item>