]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiFontLoader.h
cleanup/compile fix
[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 namespace frontend {
19
20 class GuiFontMetrics;
21
22 /// Metrics on the font
23 GuiFontMetrics const & getFontMetrics(FontInfo const & f);
24 /// Get the QFont for this FontInfo
25 QFont const & getFont(FontInfo const & f);
26
27 } // namespace frontend
28 } // namespace lyx
29
30 #endif // GUI_FONTLOADER_H