X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/bc797f4cc8ffe36277ba8b7dd4b57e63a96bfcb5..264cb7f5f33e6d4fcae54093f5169c559190ecd0:/src/x11/icon.cpp diff --git a/src/x11/icon.cpp b/src/x11/icon.cpp index 5acb3abee3..ae063ad5d9 100644 --- a/src/x11/icon.cpp +++ b/src/x11/icon.cpp @@ -1,81 +1,47 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: icon.cpp +// Name: src/x11/icon.cpp // Purpose: wxIcon class // Author: Julian Smart // Modified by: // Created: 17/09/98 // RCS-ID: $Id$ // Copyright: (c) Julian Smart -// Licence: wxWindows licence +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -#ifdef __GNUG__ -#pragma implementation "icon.h" -#endif +// for compilers that support precompilation, includes "wx.h". +#include "wx/wxprec.h" #include "wx/icon.h" -#include "wx/window.h" - -#ifdef __VMS__ -#pragma message disable nosimpint -#endif -#ifdef __VMS__ -#pragma message enable nosimpint +#ifndef WX_PRECOMP + #include "wx/window.h" #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) +void wxIcon::CopyFromBitmap(const wxBitmap& bmp) { - (void) Create((void*) data, wxBITMAP_TYPE_XPM_DATA, 0, 0, 0); + wxIcon *icon = (wxIcon*)(&bmp); + *this = *icon; } - -wxIcon::wxIcon(const wxString& icon_file, long flags, - int desiredWidth, int desiredHeight) - -{ - LoadFile(icon_file, flags, desiredWidth, desiredHeight); -} - -wxIcon::~wxIcon() -{ -} - -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; -} -