]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk/region.h
no changes, just wrap long lines
[wxWidgets.git] / include / wx / gtk / region.h
index 3aae6270c465250d484a3472bd285f3d5641c056..71f47a47aa06c491a8717d16a955c61421cd4e7f 100644 (file)
@@ -94,6 +94,7 @@ class WXDLLIMPEXP_CORE wxRegionIterator: public wxObject
 public:
     wxRegionIterator();
     wxRegionIterator(const wxRegion& region);
+    ~wxRegionIterator();
 
     void Reset() { m_current = 0u; }
     void Reset(const wxRegion& region);
@@ -113,9 +114,15 @@ public:
     wxRect GetRect() const;
 
 private:
+    void Init();
+    void CreateRects( const wxRegion& r );
+
     size_t   m_current;
     wxRegion m_region;
 
+    wxRect *m_rects;
+    size_t  m_numRects;
+
 private:
     DECLARE_DYNAMIC_CLASS(wxRegionIterator)
 };