#include <fontbase.h>
Inheritance diagram for OILEnumFonts:
Public Member Functions | |
OILEnumFonts () | |
This function allows kernel routines to enumerate all the installed fonts in the system. It is currently used to build menus. | |
void | Execute () |
virtual BOOL | NewFont (FontClass Class, ENUMLOGFONT FAR *lpelf) |
Definition at line 235 of file fontbase.h.
|
This function allows kernel routines to enumerate all the installed fonts in the system. It is currently used to build menus.
Definition at line 1552 of file fontbase.cpp.
|
|
Definition at line 1556 of file fontbase.cpp. 01557 { 01558 PORTNOTE("text","We do not use TTFontMan in wxOil") 01559 #ifndef EXCLUDE_FROM_XARALX 01560 TTFontMan::EnumAllFonts(this); 01561 #endif 01562 PORTNOTE("text","We do not use ATMFontMan in wxOil") 01563 #ifndef EXCLUDE_FROM_XARALX 01564 ATMFontMan::EnumAllFonts(this); 01565 #endif 01566 #ifdef __WXGTK__ 01567 FTFontMan::EnumAllFonts(this); 01568 #endif 01569 // Add any further OIL Level font managers here 01570 }
|
|
Reimplemented in EnumAllFonts, TextInfoBarEnumFont, and FontDropEnumFont. |