X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/2d120f8391920145647ec10e84629bc21fa9f1bb..0356c2597ec9f604918c880e3057650a7bf467f6:/src/motif/icon.cpp?ds=sidebyside diff --git a/src/motif/icon.cpp b/src/motif/icon.cpp index 55d70fdd9a..b1a4a57d6b 100644 --- a/src/motif/icon.cpp +++ b/src/motif/icon.cpp @@ -9,25 +9,20 @@ // 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" - -#include -#include +// For compilers that support precompilation, includes "wx.h". +#include "wx/wxprec.h" -#include "wx/motif/private.h" +#include "wx/icon.h" -#if !USE_SHARED_LIBRARIES -IMPLEMENT_DYNAMIC_CLASS(wxIcon, wxBitmap) -#endif +IMPLEMENT_DYNAMIC_CLASS(wxIcon, wxBitmap); -/* -* Icons -*/ +// ============================================================================ +// Icons +// ============================================================================ wxIcon::wxIcon() { @@ -45,29 +40,31 @@ wxIcon::wxIcon(char **data) (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(const char **data) +{ + (void) Create((void*) data, wxBITMAP_TYPE_XPM_DATA, 0, 0, 0); +} + +void wxIcon::CopyFromBitmap(const wxBitmap& bmp) { - LoadFile(icon_file, flags, desiredWidth, desiredHeight); + wxIcon *icon = (wxIcon*)(&bmp); + *this = *icon; } wxIcon::~wxIcon() { } -bool wxIcon::LoadFile(const wxString& filename, long type, +bool wxIcon::LoadFile(const wxString& filename, wxBitmapType type, int desiredWidth, int desiredHeight) { UnRef(); - - m_refData = new wxBitmapRefData; - + wxBitmapHandler *handler = FindHandler(type); if ( handler ) - return handler->LoadFile(this, filename, type, desiredWidth, desiredHeight); + return handler->LoadFile(this, filename, type, + desiredWidth, desiredHeight); else - return FALSE; + return false; } -