]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/xfont_metrics.h
Introduce LFUN_PRINT.
[lyx.git] / src / frontends / xforms / xfont_metrics.h
1 // -*- C++ -*-
2 /**
3  * \file xfont_metrics.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author unknown
8  * \author John Levon
9  *
10  * Full author contact details are available in file CREDITS.
11  */
12
13 #ifndef XFONT_METRICS_H
14 #define XFONT_METRICS_H
15
16
17
18
19 #include <X11/Xlib.h>
20
21 class LyXFont;
22
23 namespace xfont_metrics {
24         int XTextWidth(LyXFont const & f, char const * str, int count);
25         ///
26         int width(XChar2b const * s, int n, LyXFont const & f);
27         ///
28         int XTextWidth16(LyXFont const & f, XChar2b const * str, int count);
29         ///
30         void XSetFont(Display * display, GC gc, LyXFont const & f);
31 } // namespace xfont_metrics
32
33 #endif // FONT_METRICS_H