]> git.saurik.com Git - wxWidgets.git/blob - src/palmos/fontenum.cpp
Make wxEVT_CHAR_HOOK behave in wxGTK as in wxMSW.
[wxWidgets.git] / src / palmos / fontenum.cpp
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/palmos/fontenum.cpp
3 // Purpose: wxFontEnumerator class for Palm OS
4 // Author: William Osborne - minimal working wxPalmOS port
5 // Modified by:
6 // Created: 10/13/04
7 // RCS-ID: $Id$
8 // Copyright: (c) William Osborne
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
11
12 // ============================================================================
13 // declarations
14 // ============================================================================
15
16 // ----------------------------------------------------------------------------
17 // headers
18 // ----------------------------------------------------------------------------
19
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
22
23 #ifdef __BORLANDC__
24 #pragma hdrstop
25 #endif
26
27 #include "wx/fontenum.h"
28
29 #ifndef WX_PRECOMP
30 #include "wx/font.h"
31 #include "wx/encinfo.h"
32 #endif
33
34 #include "wx/fontutil.h"
35 #include "wx/fontmap.h"
36
37 // ============================================================================
38 // implementation
39 // ============================================================================
40
41 // ----------------------------------------------------------------------------
42 // wxFontEnumerator
43 // ----------------------------------------------------------------------------
44
45 bool wxFontEnumerator::EnumerateFacenames(wxFontEncoding encoding,
46 bool fixedWidthOnly)
47 {
48 return false;
49 }
50
51 bool wxFontEnumerator::EnumerateEncodings(const wxString& family)
52 {
53 return false;
54 }