X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/435151d7f2eac93bf85552820eefa356bf809b6c..af51080d149236d28af5484096a1b5eda43b5ae0:/include/wx/fontenum.h diff --git a/include/wx/fontenum.h b/include/wx/fontenum.h index 9c56ec51cd..6da6a74784 100644 --- a/include/wx/fontenum.h +++ b/include/wx/fontenum.h @@ -13,11 +13,12 @@ #ifndef _WX_FONTENUM_H_ #define _WX_FONTENUM_H_ -#ifdef __GNUG__ +#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) #pragma interface "fontenum.h" #endif -#include "wx/font.h" +#include "wx/fontenc.h" +#include "wx/arrstr.h" // ---------------------------------------------------------------------------- // wxFontEnumerator enumerates all available fonts on the system or only the @@ -42,7 +43,7 @@ public: // enumerate the different encodings either for given font facename or for // all facenames - will result in OnFontEncoding() being called for each // available (facename, encoding) couple - virtual bool EnumerateEncodings(const wxString& facename = wxT("")); + virtual bool EnumerateEncodings(const wxString& facename = wxEmptyString); // callbacks which are called after one of EnumerateXXX() functions from // above is invoked - all of them may return FALSE to stop enumeration or @@ -84,6 +85,8 @@ public: private: wxArrayString *m_Facenames, *m_Encodings; + + DECLARE_NO_COPY_CLASS(wxFontEnumerator) }; #endif // _WX_FONTENUM_H_