/////////////////////////////////////////////////////////////////////////////
-// Name: icon.cpp
+// Name: src/mac/classic/icon.cpp
// Purpose: wxIcon class
// Author: Stefan Csomor
// Modified by:
// Created: 1998-01-01
// RCS-ID: $Id$
// Copyright: (c) Stefan Csomor
-// Licence: wxWindows licence
+// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
-#ifdef __GNUG__
-#pragma implementation "icon.h"
-#endif
+#include "wx/wxprec.h"
#include "wx/icon.h"
-#if !USE_SHARED_LIBRARIES
IMPLEMENT_DYNAMIC_CLASS(wxIcon, wxBitmap)
-#endif
#include "wx/mac/private.h"
{
}
-wxIcon::wxIcon(const char bits[], int width, int height) :
- wxBitmap(bits, width, height)
+wxIcon::wxIcon(const char bits[], int width, int height)
+ :wxBitmap(bits, width, height)
{
-
}
wxIcon::wxIcon( const char **bits ) :
int desiredWidth, int desiredHeight)
{
UnRef();
-
+
m_refData = new wxBitmapRefData;
-
+
wxBitmapHandler *handler = FindHandler((wxBitmapType)type);
-
+
if ( handler )
return handler->LoadFile(this, filename, type, desiredWidth, desiredHeight);
else
- return FALSE;
+ return false;
}
void wxIcon::CopyFromBitmap(const wxBitmap& bmp)
Str255 theName ;
OSType theType ;
wxMacStringToPascal( name , theName ) ;
-
+
Handle resHandle = GetNamedResource( 'cicn' , theName ) ;
if ( resHandle != 0L )
{
M_BITMAPHANDLERDATA->m_hIcon = theIcon ;
M_BITMAPHANDLERDATA->m_width = 32 ;
M_BITMAPHANDLERDATA->m_height = 32 ;
-
+
M_BITMAPHANDLERDATA->m_depth = 8 ;
M_BITMAPHANDLERDATA->m_ok = true ;
M_BITMAPHANDLERDATA->m_numColors = 256 ;
M_BITMAPHANDLERDATA->m_bitmapType = kMacBitmapTypeIcon ;
- return TRUE ;
+ return true;
}
}
- return FALSE ;
+ return false;
}