X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ad81651f00edc6f489d9b6a0839d316a964fd521..2d2c394b59407ca3780a92a28ab12f63489c9cb1:/src/mac/carbon/icon.cpp

diff --git a/src/mac/carbon/icon.cpp b/src/mac/carbon/icon.cpp
index 2fb0616ba8..26cb83e93c 100644
--- a/src/mac/carbon/icon.cpp
+++ b/src/mac/carbon/icon.cpp
@@ -15,46 +15,31 @@
 
 #include "wx/icon.h"
 
+#if !USE_SHARED_LIBRARIES
 IMPLEMENT_DYNAMIC_CLASS(wxIcon, wxBitmap)
+#endif
 
 /*
  * Icons
  */
 
-
-wxIconRefData::wxIconRefData()
+wxIcon::wxIcon()
 {
-    m_ok = FALSE;
-    m_width = 0;
-    m_height = 0;
-    m_depth = 0;
-    m_quality = 0;
-    m_numColors = 0;
-    m_bitmapMask = NULL;
-		m_hBitmap = NULL ;
-		m_hIcon = NULL ;
 }
 
-wxIconRefData::~wxIconRefData()
+wxIcon::wxIcon(const char bits[], int width, int height) :
+    wxBitmap(bits,width,height )
 {
-	if ( m_hIcon )
-	{
-		DisposeCIcon( m_hIcon ) ;
-		m_hIcon = NULL ;
-	}
-		
-  if (m_bitmapMask)
-  {
-    delete m_bitmapMask;
-    m_bitmapMask = NULL;
-  }
+    
 }
 
-wxIcon::wxIcon()
+wxIcon::wxIcon( const char **bits ) :
+    wxBitmap(bits  )
 {
 }
 
-wxIcon::wxIcon(const char WXUNUSED(bits)[], int WXUNUSED(width), int WXUNUSED(height))
+wxIcon::wxIcon( char **bits ) :
+    wxBitmap(bits )
 {
 }
 
@@ -74,9 +59,9 @@ bool wxIcon::LoadFile(const wxString& filename, long type,
 {
   UnRef();
 
-  m_refData = new wxIconRefData;
+  m_refData = new wxBitmapRefData;
 
-  wxBitmapHandler *handler = FindHandler(type);
+  wxBitmapHandler *handler = FindHandler((wxBitmapType)type);
 
   if ( handler )
 	return handler->LoadFile(this, filename, type, desiredWidth, desiredHeight);
@@ -89,27 +74,57 @@ IMPLEMENT_DYNAMIC_CLASS(wxICONResourceHandler, wxBitmapHandler)
 bool  wxICONResourceHandler::LoadFile(wxBitmap *bitmap, const wxString& name, long flags,
           int desiredWidth, int desiredHeight)
 {
-	Str255 theName ;
-	short theId ;
-	OSType theType ;
-	strcpy( (char*) theName , name ) ;
-	c2pstr( (char*) theName ) ;
-	
-	Handle resHandle = GetNamedResource( 'cicn' , theName ) ;
-	GetResInfo( resHandle , &theId , &theType , theName ) ;
-	ReleaseResource( resHandle ) ;
-	
-	CIconHandle theIcon = (CIconHandle ) GetCIcon( theId ) ;
-	if ( theIcon )
+	short theId = -1 ;
+    if ( name == "wxICON_INFO" )
+    {
+        theId = kNoteIcon ;
+    }
+    else if ( name == "wxICON_QUESTION" )
+    {
+        theId = kCautionIcon ;
+    }
+    else if ( name == "wxICON_WARNING" )
+    {
+         theId = kCautionIcon ;
+   }
+    else if ( name == "wxICON_ERROR" )
+    {
+        theId = kStopIcon ;
+    }
+    else
+    {
+    	Str255 theName ;
+    	OSType theType ;
+
+    #if TARGET_CARBON
+    	c2pstrcpy( (StringPtr) theName , name ) ;
+    #else
+    	strcpy( (char *) theName , name ) ;
+    	c2pstr( (char *) theName ) ;
+    #endif
+    	
+    	Handle resHandle = GetNamedResource( 'cicn' , theName ) ;
+    	if ( resHandle != 0L )
+    	{
+    		GetResInfo( resHandle , &theId , &theType , theName ) ;
+    		ReleaseResource( resHandle ) ;
+    	}
+    }
+	if ( theId != -1 )
 	{
-		M_ICONHANDLERDATA->m_hIcon = theIcon ;
-		M_ICONHANDLERDATA->m_width =  32 ;
-		M_ICONHANDLERDATA->m_height = 32 ;
-		
-		M_ICONHANDLERDATA->m_depth = 8 ;
-		M_ICONHANDLERDATA->m_ok = true ;
-		M_ICONHANDLERDATA->m_numColors = 256 ;
-		return TRUE ;
+		CIconHandle theIcon = (CIconHandle ) GetCIcon( theId ) ;
+		if ( theIcon )
+		{
+			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 FALSE ;
 }