mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-23 10:18:50 +00:00
use our own font width cache with Qt/Mac
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@14128 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
fbda39f77c
commit
2b8d396ef2
@ -359,7 +359,7 @@ QLFontInfo::QLFontInfo(LyXFont const & f)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
int QLFontInfo::width(Uchar val) const
|
int QLFontInfo::width(Uchar val)
|
||||||
{
|
{
|
||||||
// Starting with version 3.1.0, Qt/X11 does its own caching of
|
// Starting with version 3.1.0, Qt/X11 does its own caching of
|
||||||
// character width, so it is not necessary to provide ours.
|
// character width, so it is not necessary to provide ours.
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
#include <qfont.h>
|
#include <qfont.h>
|
||||||
#include <qfontmetrics.h>
|
#include <qfontmetrics.h>
|
||||||
|
|
||||||
#if QT_VERSION < 0x030100
|
#if QT_VERSION < 0x030100 || defined(Q_WS_MACX)
|
||||||
#define USE_LYX_FONTCACHE
|
#define USE_LYX_FONTCACHE
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -35,7 +35,7 @@ public:
|
|||||||
QLFontInfo(LyXFont const & f);
|
QLFontInfo(LyXFont const & f);
|
||||||
|
|
||||||
/// Return pixel width for the given unicode char
|
/// Return pixel width for the given unicode char
|
||||||
int width(Uchar val) const;
|
int width(Uchar val);
|
||||||
|
|
||||||
/// The font instance
|
/// The font instance
|
||||||
QFont font;
|
QFont font;
|
||||||
|
Loading…
Reference in New Issue
Block a user