X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/bc797f4cc8ffe36277ba8b7dd4b57e63a96bfcb5..f58fc1407b9d1f6db80943338714242d87b766d0:/src/x11/icon.cpp diff --git a/src/x11/icon.cpp b/src/x11/icon.cpp index 5acb3abee3..0086004ff4 100644 --- a/src/x11/icon.cpp +++ b/src/x11/icon.cpp @@ -9,73 +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) +//----------------------------------------------------------------------------- +// wxIcon +//----------------------------------------------------------------------------- -/* -* Icons -*/ +IMPLEMENT_DYNAMIC_CLASS(wxIcon,wxBitmap) -wxIcon::wxIcon() +wxIcon::wxIcon( const char **bits, int WXUNUSED(width), int WXUNUSED(height) ) : + wxBitmap( bits ) { } -// Create from XBM data -wxIcon::wxIcon(const char bits[], int width, int height) +wxIcon::wxIcon( char **bits, int WXUNUSED(width), int WXUNUSED(height) ) : + wxBitmap( bits ) { - (void) Create((void*) bits, wxBITMAP_TYPE_XBM_DATA, width, height, 1); } -// Create from XPM data -wxIcon::wxIcon(char **data) +wxIcon::wxIcon() : wxBitmap() { - (void) Create((void*) data, wxBITMAP_TYPE_XPM_DATA, 0, 0, 0); } -wxIcon::wxIcon(const char **data) +wxIcon::wxIcon( const wxIcon& icon ) : wxBitmap() { - (void) Create((void*) data, wxBITMAP_TYPE_XPM_DATA, 0, 0, 0); + Ref(icon); } -wxIcon::wxIcon(const wxString& icon_file, long flags, - int desiredWidth, int desiredHeight) - +wxIcon& wxIcon::operator = ( const wxIcon& icon ) { - LoadFile(icon_file, flags, desiredWidth, desiredHeight); + if (*this == icon) return (*this); + Ref(icon); + return *this; } -wxIcon::~wxIcon() +void wxIcon::CopyFromBitmap(const wxBitmap& bmp) { + wxIcon *icon = (wxIcon*)(&bmp); + *this = *icon; } - -bool wxIcon::LoadFile(const wxString& filename, long type, - int desiredWidth, int desiredHeight) -{ - UnRef(); - - m_refData = new wxBitmapRefData; - - wxBitmapHandler *handler = FindHandler(type); - - if ( handler ) - return handler->LoadFile(this, filename, type, desiredWidth, desiredHeight); - else - return FALSE; -} -