]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiFontLoader.h
* fix spelling in comments to please John.
[lyx.git] / src / frontends / qt4 / GuiFontLoader.h
1 // -*- C++ -*-
2 /**
3  * \file GuiFontLoader.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author John Levon
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef GUI_FONTLOADER_H
13 #define GUI_FONTLOADER_H
14
15 class QFont;
16
17 namespace lyx {
18
19 class FontInfo;
20
21 namespace frontend {
22
23 class GuiFontMetrics;
24
25 /// Metrics on the font
26 GuiFontMetrics const & getFontMetrics(FontInfo const & f);
27 /// Get the QFont for this FontInfo
28 QFont const & getFont(FontInfo const & f);
29
30 } // namespace frontend
31 } // namespace lyx
32
33 #endif // GUI_FONTLOADER_H