| 1 | ///////////////////////////////////////////////////////////////////////////// |
| 2 | // Name: src/dfb/fontenum.cpp |
| 3 | // Purpose: wxFontEnumerator class |
| 4 | // Author: Vaclav Slavik |
| 5 | // Created: 2006-08-10 |
| 6 | // RCS-ID: $Id$ |
| 7 | // Copyright: (c) 2006 REA Elektronik GmbH |
| 8 | // Licence: wxWindows licence |
| 9 | ///////////////////////////////////////////////////////////////////////////// |
| 10 | |
| 11 | // For compilers that support precompilation, includes "wx.h". |
| 12 | #include "wx/wxprec.h" |
| 13 | |
| 14 | #ifdef __BORLANDC__ |
| 15 | #pragma hdrstop |
| 16 | #endif |
| 17 | |
| 18 | #include "wx/fontenum.h" |
| 19 | |
| 20 | // ---------------------------------------------------------------------------- |
| 21 | // wxFontEnumerator |
| 22 | // ---------------------------------------------------------------------------- |
| 23 | |
| 24 | bool wxFontEnumerator::EnumerateFacenames(wxFontEncoding WXUNUSED(encoding), |
| 25 | bool WXUNUSED(fixedWidthOnly)) |
| 26 | { |
| 27 | // FIXME_DFB |
| 28 | OnFacename(_T("Default")); |
| 29 | return true; |
| 30 | } |
| 31 | |
| 32 | bool wxFontEnumerator::EnumerateEncodings(const wxString& WXUNUSED(family)) |
| 33 | { |
| 34 | // FIXME_DFB |
| 35 | return false; |
| 36 | } |