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

View File

@ -51,7 +51,7 @@
<item> <item>
<widget class="QTabWidget" name="tabWidget"> <widget class="QTabWidget" name="tabWidget">
<property name="currentIndex"> <property name="currentIndex">
<number>1</number> <number>0</number>
</property> </property>
<widget class="QWidget" name="importTab"> <widget class="QWidget" name="importTab">
<attribute name="title"> <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> (Highly recomended, unless your short on disk space or don't care about the graph data)</string>
</property> </property>
<property name="text"> <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> </property>
</widget> </widget>
</item> </item>