]> git.saurik.com Git - wxWidgets.git/commitdiff
Additional wx*_HATCH styles comment.
authorWłodzimierz Skiba <abx@abx.art.pl>
Tue, 30 Nov 2004 18:52:47 +0000 (18:52 +0000)
committerWłodzimierz Skiba <abx@abx.art.pl>
Tue, 30 Nov 2004 18:52:47 +0000 (18:52 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30820 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/defs.h

index 608182a9d68d9ec23a3a2e4de4e17f94ff829f71..a56564130f7083f347c5fd74e8615761f316c81b 100644 (file)
@@ -1808,12 +1808,13 @@ enum
     wxSTIPPLE_MASK,        /* mask is used for masking areas in the stipple bitmap (TO DO) */
     /*  drawn with a Pen, and without any Brush -- and it can be stippled. */
     wxSTIPPLE =          110,
-    wxBDIAGONAL_HATCH,
-    wxCROSSDIAG_HATCH,
-    wxFDIAGONAL_HATCH,
-    wxCROSS_HATCH,
-    wxHORIZONTAL_HATCH,
-    wxVERTICAL_HATCH,
+
+    wxBDIAGONAL_HATCH,     /* In wxWidgets < 2.6 use WX_HATCH macro  */
+    wxCROSSDIAG_HATCH,     /* to verify these wx*_HATCH are in style */
+    wxFDIAGONAL_HATCH,     /* of wxBrush. In wxWidgets >= 2.6 use    */
+    wxCROSS_HATCH,         /* wxBrush::IsHatch() instead.            */
+    wxHORIZONTAL_HATCH,    /* Adding new hatch styles remember to    */
+    wxVERTICAL_HATCH,      /* adjust style check accordingly.        */
 
     wxJOIN_BEVEL =     120,
     wxJOIN_MITER,