]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/os2/gdiimage.h
adding 10.4 build compatibility for osx cocoa, see #10361
[wxWidgets.git] / include / wx / os2 / gdiimage.h
index 8b5625abdfc1c0f70a1d94ca675419c53d354921..7d96b89e9f1f51a31b1fb81ce4142ba95a056fae 100644 (file)
@@ -191,6 +191,12 @@ public:
     int GetHeight() const { return IsNull() ? 0 : GetGDIImageData()->m_nHeight; }
     int GetDepth() const { return IsNull() ? 0 : GetGDIImageData()->m_nDepth; }
 
+    wxSize GetSize() const
+    {
+        return IsNull() ? wxSize(0,0) :
+               wxSize(GetGDIImageData()->m_nWidth, GetGDIImageData()->m_nHeight);
+    }
+
     void SetWidth(int nW) { EnsureHasData(); GetGDIImageData()->m_nWidth = nW; }
     void SetHeight(int nH) { EnsureHasData(); GetGDIImageData()->m_nHeight = nH; }
     void SetDepth(int nD) { EnsureHasData(); GetGDIImageData()->m_nDepth = nD; }