document that under wxMSW slant == italic

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59841 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Francesco Montorsi 2009-03-25 12:30:27 +00:00
parent c1ab2be0a0
commit 071de7a097

View File

@ -31,9 +31,16 @@ enum wxFontFamily
*/
enum wxFontStyle
{
/// The font is drawn without slant.
wxFONTSTYLE_NORMAL = wxNORMAL,
/// The font is slanted in an italic style.
wxFONTSTYLE_ITALIC = wxITALIC,
/// The font is slanted, but in a roman style.
/// Note that under wxMSW this style is the same as @c wxFONTSTYLE_ITALIC.
wxFONTSTYLE_SLANT = wxSLANT,
wxFONTSTYLE_MAX
};