]> git.saurik.com Git - wxWidgets.git/blob - include/wx/unix/fontutil.h
wXMotif compilation fixes
[wxWidgets.git] / include / wx / unix / fontutil.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/unix/fontutil.h
3 // Purpose: font-related helper functions for Unix/X11
4 // Author: Vadim Zeitlin
5 // Modified by:
6 // Created: 05.11.99
7 // RCS-ID: $Id$
8 // Copyright: (c) wxWindows team
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_UNIX_FONTUTIL_H_
13 #define _WX_UNIX_FONTUTIL_H_
14
15 #ifdef __X__
16 struct XFontStruct;
17 typedef XFontStruct *wxNativeFont;
18 #elif defined(__WXGTK__)
19 typedef GdkFont *wxNativeFont;
20 #else
21 #error "Unsupported toolkit"
22 #endif
23
24 // returns the handle of the nearest available font or 0
25 extern wxNativeFont wxLoadQueryNearestFont(int pointSize,
26 int family,
27 int style,
28 int weight,
29 bool underlined,
30 const wxString &facename,
31 wxFontEncoding encoding);
32
33 #endif // _WX_UNIX_FONTUTIL_H_