lyx_mirror/src/frontends/qt4/GuiFontLoader.h
Abdelrazak Younes f45523aa7a Pimpl stuff in GuiApplication.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@24895 a592a061-630c-0410-9148-cb99ea01b6c8
2008-05-23 08:43:07 +00:00

34 lines
623 B
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 GUI_FONTLOADER_H
#define GUI_FONTLOADER_H
class QFont;
namespace lyx {
class FontInfo;
namespace frontend {
class GuiFontMetrics;
/// Metrics on the font
GuiFontMetrics const & getFontMetrics(FontInfo const & f);
/// Get the QFont for this FontInfo
QFont const & getFont(FontInfo const & f);
} // namespace frontend
} // namespace lyx
#endif // GUI_FONTLOADER_H