]> git.saurik.com Git - wxWidgets.git/blobdiff - src/dfb/fontenum.cpp
initial (not yet working) code for DirectFB port
[wxWidgets.git] / src / dfb / fontenum.cpp
diff --git a/src/dfb/fontenum.cpp b/src/dfb/fontenum.cpp
new file mode 100644 (file)
index 0000000..4e1f905
--- /dev/null
@@ -0,0 +1,36 @@
+/////////////////////////////////////////////////////////////////////////////
+// Name:        src/dfb/fontenum.cpp
+// Purpose:     wxFontEnumerator class
+// Author:      Vaclav Slavik
+// Created:     2006-08-10
+// RCS-ID:      $Id$
+// Copyright:   (c) 2006 REA Elektronik GmbH
+// Licence:     wxWindows licence
+/////////////////////////////////////////////////////////////////////////////
+
+// For compilers that support precompilation, includes "wx.h".
+#include "wx/wxprec.h"
+
+#ifdef __BORLANDC__
+    #pragma hdrstop
+#endif
+
+#include "wx/fontenum.h"
+
+// ----------------------------------------------------------------------------
+// wxFontEnumerator
+// ----------------------------------------------------------------------------
+
+bool wxFontEnumerator::EnumerateFacenames(wxFontEncoding WXUNUSED(encoding),
+                                          bool WXUNUSED(fixedWidthOnly))
+{
+    // FIXME_DFB
+    OnFacename(_T("Default"));
+    return true;
+}
+
+bool wxFontEnumerator::EnumerateEncodings(const wxString& WXUNUSED(family))
+{
+    // FIXME_DFB
+    return false;
+}