X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8a16d7370e3cdc7d583a6f14ab11b3a1d27b73df..4e124582c4503cea32915642d97a0476f8d81cc4:/include/wx/gtk/region.h diff --git a/include/wx/gtk/region.h b/include/wx/gtk/region.h index 3aae6270c4..71f47a47aa 100644 --- a/include/wx/gtk/region.h +++ b/include/wx/gtk/region.h @@ -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) };