mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
f45523aa7a
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@24895 a592a061-630c-0410-9148-cb99ea01b6c8
34 lines
623 B
C++
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
|