mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-10 20:04:46 +00:00
fc6ce7cd08
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18095 a592a061-630c-0410-9148-cb99ea01b6c8
51 lines
925 B
C++
51 lines
925 B
C++
// -*- C++ -*-
|
|
/**
|
|
* \file FontLoader.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Abdelrazak Younes
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef LYX_FONTLOADER_H
|
|
#define LYX_FONTLOADER_H
|
|
|
|
namespace lyx {
|
|
|
|
class Font;
|
|
|
|
namespace frontend {
|
|
|
|
class FontMetrics;
|
|
|
|
/// Hold info about a particular font
|
|
class FontLoader
|
|
{
|
|
public:
|
|
///
|
|
FontLoader() {}
|
|
///
|
|
virtual ~FontLoader() {}
|
|
|
|
/// Update fonts after zoom, dpi, font names, or norm change
|
|
virtual void update() = 0;
|
|
|
|
/// Is the given font available ?
|
|
virtual bool available(Font const & f) = 0;
|
|
|
|
/// Get the Font metrics for this Font
|
|
virtual FontMetrics const & metrics(Font const & f) = 0;
|
|
};
|
|
|
|
|
|
} // namespace frontend
|
|
|
|
/// Implementation is in Application.cpp
|
|
extern frontend::FontLoader & theFontLoader();
|
|
|
|
} // namespace lyx
|
|
|
|
#endif // QFONT_LOADER_H
|