From 071de7a097edd90a8f39d4624b26b5744560e677 Mon Sep 17 00:00:00 2001 From: Francesco Montorsi Date: Wed, 25 Mar 2009 12:30:27 +0000 Subject: [PATCH] document that under wxMSW slant == italic git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59841 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- interface/wx/font.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/interface/wx/font.h b/interface/wx/font.h index 6b600a95f7..d0f7f25ca9 100644 --- a/interface/wx/font.h +++ b/interface/wx/font.h @@ -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 }; -- 2.45.2