X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7266b6723573ce6317577226cb1e5d32826e24e8..4227afa4f748870bbfce75047db465f024e0ac1d:/src/x11/icon.cpp diff --git a/src/x11/icon.cpp b/src/x11/icon.cpp index 11cea5bf32..0086004ff4 100644 --- a/src/x11/icon.cpp +++ b/src/x11/icon.cpp @@ -9,78 +9,49 @@ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -#ifdef __GNUG__ +#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) #pragma implementation "icon.h" #endif #include "wx/icon.h" #include "wx/window.h" -#ifdef __VMS__ -#pragma message disable nosimpint -#endif - -#ifdef __VMS__ -#pragma message enable nosimpint -#endif - #include "wx/x11/private.h" -IMPLEMENT_DYNAMIC_CLASS(wxIcon, wxBitmap) - -/* -* Icons -*/ +//----------------------------------------------------------------------------- +// wxIcon +//----------------------------------------------------------------------------- -wxIcon::wxIcon() -{ -} - -// Create from XBM data -wxIcon::wxIcon(const char bits[], int width, int height) -{ - (void) Create((void*) bits, wxBITMAP_TYPE_XBM_DATA, width, height, 1); -} +IMPLEMENT_DYNAMIC_CLASS(wxIcon,wxBitmap) -// Create from XPM data -wxIcon::wxIcon(char **data) +wxIcon::wxIcon( const char **bits, int WXUNUSED(width), int WXUNUSED(height) ) : + wxBitmap( bits ) { - (void) Create((void*) data, wxBITMAP_TYPE_XPM_DATA, 0, 0, 0); } -wxIcon::wxIcon(const char **data) +wxIcon::wxIcon( char **bits, int WXUNUSED(width), int WXUNUSED(height) ) : + wxBitmap( bits ) { - (void) Create((void*) data, wxBITMAP_TYPE_XPM_DATA, 0, 0, 0); } -wxIcon::wxIcon(const wxString& icon_file, long flags, - int desiredWidth, int desiredHeight) - +wxIcon::wxIcon() : wxBitmap() { - LoadFile(icon_file, flags, desiredWidth, desiredHeight); } -wxIcon::~wxIcon() +wxIcon::wxIcon( const wxIcon& icon ) : wxBitmap() { + Ref(icon); } -bool wxIcon::LoadFile(const wxString& filename, long type, - int desiredWidth, int desiredHeight) +wxIcon& wxIcon::operator = ( const wxIcon& icon ) { - UnRef(); - - m_refData = new wxBitmapRefData; - - wxBitmapHandler *handler = FindHandler(type); - - if ( handler ) - return handler->LoadFile(this, filename, type, desiredWidth, desiredHeight); - else - return FALSE; + if (*this == icon) return (*this); + Ref(icon); + return *this; } -bool wxIcon::CopyFromBitmap(const wxBitmap& bitmap) +void wxIcon::CopyFromBitmap(const wxBitmap& bmp) { - // TODO - return FALSE; + wxIcon *icon = (wxIcon*)(&bmp); + *this = *icon; }