GCC build fix GetTextExtent inline needed to be defined in header

This commit is contained in:
Mark Watkins 2015-09-06 12:36:44 +10:00
parent ff4a29cb26
commit c56ae98139
2 changed files with 8 additions and 20 deletions

View File

@ -1430,26 +1430,6 @@ int gGraph::minHeight()
return minheight;
}
inline void GetTextExtent(QString text, int &width, int &height, QFont *font)
{
#ifdef ENABLE_THREADED_DRAWING
static QMutex mut;
mut.lock();
#endif
QFontMetrics fm(*font);
//#ifdef Q_OS_WIN32
QRect r = fm.boundingRect(text);
width = r.width();
height = r.height();
//#else
// width=fm.width(text);
// height=fm.xHeight()+2; // doesn't work properly on windows..
//#endif
#ifdef ENABLE_THREADED_DRAWING
mut.unlock();
#endif
}
int GetXHeight(QFont *font)
{
QFontMetrics fm(*font);

View File

@ -34,6 +34,14 @@ void DestroyGraphGlobals();
const int mouse_movement_threshold = 6;
inline void GetTextExtent(QString text, int &width, int &height, QFont *font)
{
QFontMetrics fm(*font);
QRect r = fm.boundingRect(text);
width = r.width();
height = r.height();
}
/*! \class gGraph
\brief Single Graph object, containing multiple layers and Layer layout code
*/