]>
Commit | Line | Data |
---|---|---|
ffecfa5a | 1 | /////////////////////////////////////////////////////////////////////////////// |
e2731512 | 2 | // Name: src/palmos/fontenum.cpp |
ffecfa5a | 3 | // Purpose: wxFontEnumerator class for Palm OS |
e2731512 | 4 | // Author: William Osborne - minimal working wxPalmOS port |
ffecfa5a JS |
5 | // Modified by: |
6 | // Created: 10/13/04 | |
e2731512 | 7 | // RCS-ID: $Id$ |
ffecfa5a JS |
8 | // Copyright: (c) William Osborne |
9 | // Licence: wxWindows licence | |
10 | /////////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | // ============================================================================ | |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
ffecfa5a JS |
20 | // For compilers that support precompilation, includes "wx.h". |
21 | #include "wx/wxprec.h" | |
22 | ||
23 | #ifdef __BORLANDC__ | |
24 | #pragma hdrstop | |
25 | #endif | |
26 | ||
9a8fc68d | 27 | #include "wx/fontenum.h" |
ffecfa5a JS |
28 | |
29 | #ifndef WX_PRECOMP | |
30 | #include "wx/font.h" | |
31 | #include "wx/encinfo.h" | |
32 | #endif | |
33 | ||
ffecfa5a | 34 | #include "wx/fontutil.h" |
ffecfa5a JS |
35 | #include "wx/fontmap.h" |
36 | ||
ffecfa5a JS |
37 | // ============================================================================ |
38 | // implementation | |
39 | // ============================================================================ | |
40 | ||
ffecfa5a JS |
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 | } |