X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8907154c1a8a6882c6797d1f16393ddfb23e7f3a..b7ea712cc26f4289211f4a24e308f40ff6445991:/include/wx/msw/bitmap.h diff --git a/include/wx/msw/bitmap.h b/include/wx/msw/bitmap.h index c9d9e38445..50fa1d1271 100644 --- a/include/wx/msw/bitmap.h +++ b/include/wx/msw/bitmap.h @@ -39,10 +39,7 @@ class WXDLLEXPORT wxBitmap : public wxGDIImage { public: // default ctor creates an invalid bitmap, you must Create() it later - wxBitmap() { Init(); } - - // Copy constructors - wxBitmap(const wxBitmap& bitmap) : wxGDIImage(bitmap) { Init(); Ref(bitmap); } + wxBitmap() { } // Initialize with raw data wxBitmap(const char bits[], int width, int height, int depth = 1); @@ -67,7 +64,7 @@ public: // Create a bitmap compatible with the given DC wxBitmap(int width, int height, const wxDC& dc); -#if wxUSE_IMAGE && wxUSE_WXDIB +#if wxUSE_IMAGE // Convert from wxImage wxBitmap(const wxImage& image, int depth = -1) { (void)CreateFromImage(image, depth); } @@ -79,14 +76,7 @@ public: // we must have this, otherwise icons are silently copied into bitmaps using // the copy ctor but the resulting bitmap is invalid! - wxBitmap(const wxIcon& icon) { Init(); CopyFromIcon(icon); } - - wxBitmap& operator=(const wxBitmap& bitmap) - { - if ( m_refData != bitmap.m_refData ) - Ref(bitmap); - return *this; - } + wxBitmap(const wxIcon& icon) { CopyFromIcon(icon); } wxBitmap& operator=(const wxIcon& icon) { @@ -104,7 +94,7 @@ public: virtual ~wxBitmap(); -#if wxUSE_IMAGE && wxUSE_WXDIB +#if wxUSE_IMAGE wxImage ConvertToImage() const; #endif // wxUSE_IMAGE @@ -172,9 +162,6 @@ public: #endif // __WXDEBUG__ protected: - // common part of all ctors - void Init(); - virtual wxGDIImageRefData *CreateData() const; virtual wxObjectRefData *CloneRefData(const wxObjectRefData *data) const; @@ -184,7 +171,7 @@ protected: // creates an uninitialized bitmap, called from Create()s above bool DoCreate(int w, int h, int depth, WXHDC hdc); -#if wxUSE_IMAGE && wxUSE_WXDIB +#if wxUSE_IMAGE // creates the bitmap from wxImage, supposed to be called from ctor bool CreateFromImage(const wxImage& image, int depth); @@ -196,10 +183,9 @@ protected: #endif // wxUSE_IMAGE private: -#ifdef __WIN32__ // common part of CopyFromIcon/CopyFromCursor for Win32 bool CopyFromIconOrCursor(const wxGDIImage& icon); -#endif // __WIN32__ + DECLARE_DYNAMIC_CLASS(wxBitmap) };