1 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3 %% Purpose: wxFontEnumerator documentation
4 %% Author: Vadim Zeitlin
8 %% Copyright: (c) Vadim Zeitlin
9 %% Licence: wxWindows licence
10 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
12 \section{\class{wxFontEnumerator
}}\label{wxfontenumerator
}
14 wxFontEnumerator enumerates either all available fonts on the system or only
15 the ones with given attributes - either only fixed-width (suited for use in
16 programs such as terminal emulators and the like) or the fonts available in
17 the given
\helpref{encoding
}{wxfontencodingoverview
}.
19 To do this, you just have to call one of EnumerateXXX() functions - either
20 \helpref{EnumerateFacenames
}{wxfontenumeratorenumeratefacenames
} or
21 \helpref{EnumerateEncodings
}{wxfontenumeratorenumerateencodings
} and the
22 corresponding callback (
\helpref{OnFacename
}{wxFontEnumeratoronfacename
} or
23 \helpref{OnFontEncoding
}{wxfontenumeratoronfontencoding
}) will be called
24 repeatedly until either all fonts satisfying the specified criteria are
25 exhausted or the callback returns FALSE.
27 \wxheading{Virtual functions to override
}
29 Either
\helpref{OnFacename
}{wxfontenumeratoronfacename
} or
30 \helpref{OnFontEncoding
}{wxfontenumeratoronfontencoding
} should be overridden
31 depending on whether you plan to call
32 \helpref{EnumerateFacenames
}{wxfontenumeratorenumeratefacenames
} or
33 \helpref{EnumerateEncodings
}{wxfontenumeratorenumerateencodings
}. Of course,
34 if you call both of them, you should override both functions.
36 \wxheading{Derived from
}
40 \wxheading{Include files
}
46 \helpref{Font encoding overview
}{wxfontencodingoverview
},
47 \helpref{Font sample
}{samplefont
},
48 \helpref{wxFont
}{wxfont
},
49 \helpref{wxFontMapper
}{wxfontmapper
}
51 \latexignore{\rtfignore{\wxheading{Members
}}}
53 \membersection{wxFontEnumerator::EnumerateFacenames
}\label{wxfontenumeratorenumeratefacenames
}
55 \func{virtual bool
}{EnumerateFacenames
}{
56 \param{wxFontEncoding
}{encoding = wxFONTENCODING
\_SYSTEM},
57 \param{bool
}{fixedWidthOnly = FALSE
}}
59 Call
\helpref{OnFacename
}{wxfontenumeratoronfacename
} for each font which
60 supports given encoding (only if it is not wxFONTENCODING
\_SYSTEM) and is of
61 fixed width (if
{\it fixedWidthOnly
} is TRUE).
63 Calling this function with default arguments will result in enumerating all
64 fonts available on the system.
66 \membersection{wxFontEnumerator::EnumerateEncodings
}\label{wxfontenumeratorenumerateencodings
}
68 \func{virtual bool
}{EnumerateEncodings
}{\param{const wxString\&
}{font = ""
}}
70 Call
\helpref{OnFontEncoding
}{wxfontenumeratoronfontencoding
} for each
71 encoding supported by the given font - or for each encoding supported by at
72 least some font if
{\it font
} is not specified.
75 \membersection{wxFontEnumerator::GetEncodings
}\label{wxfontenumeratorgetencodings
}
77 \func{wxArrayString*
}{GetEncodings
}{\void}
79 Return array of strings containing all encodings found by
80 \helpref{EnumerateEncodings
}{wxfontenumeratorenumerateencodings
}. This is convenience function. It is
81 based on default implementation of
\helpref{OnFontEncoding
}{wxfontenumeratoronfontencoding
} so don't expect
82 it to work if you overwrite that method.
84 \membersection{wxFontEnumerator::GetFacenames
}\label{wxfontenumeratorgetfacenames
}
86 \func{wxArrayString*
}{GetFacenames
}{\void}
88 Return array of strings containing all facenames found by
89 \helpref{EnumerateFacenames
}{wxfontenumeratorenumeratefacenames
}. This is convenience function. It is
90 based on default implementation of
\helpref{OnFacename
}{wxfontenumeratoronfacename
} so don't expect
91 it to work if you overwrite that method.
94 \membersection{wxFontEnumerator::OnFacename
}\label{wxfontenumeratoronfacename
}
96 \func{virtual bool
}{OnFacename
}{\param{const wxString\&
}{font
}}
98 Called by
\helpref{EnumerateFacenames
}{wxfontenumeratorenumeratefacenames
} for
99 each match. Return TRUE to continue enumeration or FALSE to stop it.
101 \membersection{wxFontEnumerator::OnFontEncoding
}\label{wxfontenumeratoronfontencoding
}
103 \func{virtual bool
}{OnFontEncoding
}{
104 \param{const wxString\&
}{font
},
105 \param{const wxString\&
}{encoding
}
108 Called by
\helpref{EnumerateEncodings
}{wxfontenumeratorenumerateencodings
} for
109 each match. Return TRUE to continue enumeration or FALSE to stop it.