Calculate currentTime String for line cursor mode only once per frame (really slow on mac)

This commit is contained in:
Mark Watkins 2014-08-11 00:00:20 -05:00
parent de67282670
commit 99b255304d
2 changed files with 9 additions and 5 deletions

View File

@ -378,7 +378,13 @@ class gGraphView
//! \brief The current time the mouse pointer is hovering over
inline double currentTime() { return m_currenttime; }
inline void setCurrentTime(double time) { m_currenttime = time; }
inline QString currentTimeString() { return m_currentTimeString; }
inline void setCurrentTime(double time) {
m_currenttime = time;
QDateTime dt=QDateTime::fromMSecsSinceEpoch(time);
m_currentTimeString = dt.toString("MMM dd - HH:mm:ss:zzz");
}
inline QPoint currentMousePos() const { return m_mouse; }
@ -501,7 +507,7 @@ class gGraphView
QPoint m_mouse;
qint64 m_currenttime;
QString m_currentTimeString;
QTime m_animationStarted;

View File

@ -399,9 +399,7 @@ void gLineChart::paint(QPainter &painter, gGraph &w, const QRegion &region)
getMetaString(time);
}
// YEOWCH!!!! SLLLLLLLLLLOOOOOOOOWWWWWW.. Month name lookup is hideously slow on mac..
QDateTime dt=QDateTime::fromMSecsSinceEpoch(time);
QString text = dt.toString("MMM dd - HH:mm:ss:zzz") + lasttext;
QString text = w.graphView()->currentTimeString() + lasttext;
int wid, h;
GetTextExtent(text, wid, h);