]> git.saurik.com Git - wxWidgets.git/commitdiff
document that under wxMSW slant == italic
authorFrancesco Montorsi <f18m_cpp217828@yahoo.it>
Wed, 25 Mar 2009 12:30:27 +0000 (12:30 +0000)
committerFrancesco Montorsi <f18m_cpp217828@yahoo.it>
Wed, 25 Mar 2009 12:30:27 +0000 (12:30 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59841 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

interface/wx/font.h

index 6b600a95f7e864ac6ab390b6c2fe356d7195552a..d0f7f25ca938bfde44d540cc27156e2ba790c3de 100644 (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
 };