- wxFontEnumerator::EnumerateFacenames or
- wxFontEnumerator::EnumerateEncodings and the
- corresponding callback (wxFontEnumerator::OnFacename or
- wxFontEnumerator::OnFontEncoding) will be called
- repeatedly until either all fonts satisfying the specified criteria are
- exhausted or the callback returns @false.
+ wxFontEnumerator::EnumerateFacenames() or wxFontEnumerator::EnumerateEncodings()
+ and the corresponding callback (wxFontEnumerator::OnFacename() or
+ wxFontEnumerator::OnFontEncoding()) will be called repeatedly until either
+ all fonts satisfying the specified criteria are exhausted or the callback
+ returns @false.
+
+ @section fontenum_virtual Virtual functions to override
+
+ Either OnFacename or OnFontEncoding should be overridden depending on
+ whether you plan to call EnumerateFacenames or EnumerateEncodings.
+ Of course, if you call both of them, you should override both functions.