lyx_mirror/src/frontends/qt4/GuiFontLoader.h
André Pönitz 6a64982eb5 cleanup/compile fix
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@23843 a592a061-630c-0410-9148-cb99ea01b6c8
2008-03-20 00:19:10 +00:00

31 lines
605 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 {
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