mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10:44 +00:00
Use repaint() in gGraphView
This commit is contained in:
parent
f89a5e8ad7
commit
d0fdf69deb
@ -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();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -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>
|
||||||
|
Loading…
Reference in New Issue
Block a user