X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/55ccdb93e4ae4b606a4068cb37492c1ec3ed77a6..eeb0bee1d31939f8ff14a3c7dba6ff22fcdb6fff:/include/wx/mac/carbon/icon.h diff --git a/include/wx/mac/carbon/icon.h b/include/wx/mac/carbon/icon.h index 2e9e0d0af9..ead16ba56b 100644 --- a/include/wx/mac/carbon/icon.h +++ b/include/wx/mac/carbon/icon.h @@ -15,7 +15,7 @@ #include "wx/bitmap.h" // Icon -class WXDLLEXPORT wxIcon: public wxGDIObject +class WXDLLEXPORT wxIcon : public wxGDIObject { public: wxIcon(); @@ -29,6 +29,9 @@ public: { LoadFile(loc.GetFileName(), wxBITMAP_TYPE_ICON); } + + wxIcon(WXHICON icon, const wxSize& size); + virtual ~wxIcon(); bool LoadFile(const wxString& name, wxBitmapType flags /* = wxBITMAP_TYPE_ICON_RESOURCE */ , @@ -42,8 +45,6 @@ public: // ctors, assignment operators...), but it's ok to have such function void CopyFromBitmap(const wxBitmap& bmp); - bool Ok() const { return IsOk(); } - bool IsOk() const; int GetWidth() const; int GetHeight() const; int GetDepth() const; @@ -54,6 +55,11 @@ public: WXHICON GetHICON() const ; +protected: + virtual wxGDIRefData *CreateGDIRefData() const; + virtual wxGDIRefData *CloneGDIRefData(const wxGDIRefData *data) const; + +private: DECLARE_DYNAMIC_CLASS(wxIcon) };