lyx_mirror/src/frontends/FontLoader.h
André Pönitz 6c300f72a2 move everything into namespace lyx
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15422 a592a061-630c-0410-9148-cb99ea01b6c8
2006-10-21 00:16:43 +00:00

51 lines
935 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 LyXFont;
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(LyXFont const & f) = 0;
/// Get the Font metrics for this LyXFont
virtual FontMetrics const & metrics(LyXFont const & f) = 0;
};
} // namespace frontend
/// Implementation is in Application.C
extern frontend::FontLoader & theFontLoader();
} // namespace lyx
#endif // QFONT_LOADER_H