]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/palmos/gdiimage.h
adding 10.4 build compatibility for osx cocoa, see #10361
[wxWidgets.git] / include / wx / palmos / gdiimage.h
index 512d373a28d07fc54cdb78627de2608241aed97b..db0d112c376f5cb46e004ed9f333075c9dc73b2c 100644 (file)
@@ -151,6 +151,12 @@ public:
     int GetHeight() const { return IsNull() ? 0 : GetGDIImageData()->m_height; }
     int GetDepth() const { return IsNull() ? 0 : GetGDIImageData()->m_depth; }
 
+    wxSize GetSize() const
+    {
+        return IsNull() ? wxSize(0,0) :
+               wxSize(GetGDIImageData()->m_width, GetGDIImageData()->m_height);
+    }
+
     void SetWidth(int w) { EnsureHasData(); GetGDIImageData()->m_width = w; }
     void SetHeight(int h) { EnsureHasData(); GetGDIImageData()->m_height = h; }
     void SetDepth(int d) { EnsureHasData(); GetGDIImageData()->m_depth = d; }