mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
eea79637c7
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@21198 a592a061-630c-0410-9148-cb99ea01b6c8
88 lines
1.6 KiB
C++
88 lines
1.6 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file GuiFontLoader.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author John Levon
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef QT4_FONTLOADER_H
|
|
#define QT4_FONTLOADER_H
|
|
|
|
#include "frontends/FontLoader.h"
|
|
|
|
#include "GuiFontMetrics.h"
|
|
|
|
#include "Encoding.h"
|
|
#include "Font.h"
|
|
|
|
#include <QFont>
|
|
|
|
#include <boost/scoped_ptr.hpp>
|
|
|
|
namespace lyx {
|
|
namespace frontend {
|
|
|
|
/**
|
|
* Qt font loader for LyX. Matches Fonts against
|
|
* actual QFont instances, and also caches metrics.
|
|
*/
|
|
class GuiFontInfo
|
|
{
|
|
public:
|
|
GuiFontInfo(Font const & f);
|
|
|
|
/// The font instance
|
|
QFont font;
|
|
/// Metrics on the font
|
|
boost::scoped_ptr<GuiFontMetrics> metrics;
|
|
};
|
|
|
|
|
|
/// Hold info about a particular font
|
|
class GuiFontLoader : public FontLoader
|
|
{
|
|
public:
|
|
///
|
|
GuiFontLoader();
|
|
|
|
/// Destructor
|
|
virtual ~GuiFontLoader() {}
|
|
|
|
virtual void update();
|
|
virtual bool available(Font const & f);
|
|
inline virtual FontMetrics const & metrics(Font const & f) {
|
|
return *fontinfo(f).metrics.get();
|
|
}
|
|
|
|
/// Get the QFont for this Font
|
|
QFont const & get(Font const & f) {
|
|
return fontinfo(f).font;
|
|
}
|
|
|
|
|
|
/// Get font info (font + metrics) for the given LyX font.
|
|
GuiFontInfo & fontinfo(Font const & f) {
|
|
// fi is a reference to the pointer type (GuiFontInfo *) in the
|
|
// fontinfo_ table.
|
|
GuiFontInfo * & fi =
|
|
fontinfo_[f.family()][f.series()][f.realShape()][f.size()];
|
|
if (!fi)
|
|
fi = new GuiFontInfo(f);
|
|
return *fi;
|
|
}
|
|
|
|
private:
|
|
/// BUTT ugly !
|
|
GuiFontInfo * fontinfo_[Font::NUM_FAMILIES][2][4][10];
|
|
};
|
|
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|
|
|
|
#endif // QT4_FONTLOADER_H
|