- wxNode *node = m_images.Nth( index );
- if (!node) return FALSE;
-
- if (index == m_images.Number()-1)
- {
- m_images.DeleteNode( node );
- m_images.Append( new wxBitmap(bitmap) );
- }
- else
- {
- wxNode *next = node->Next();
- m_images.DeleteNode( node );
- m_images.Insert( next, new wxBitmap(bitmap) );
- };
-
- return TRUE;
-};
+ if (bitmap.IsKindOf(CLASSINFO(wxIcon)))
+ m_images.Append( new wxIcon( (const wxIcon&) bitmap ) );
+ else
+ m_images.Append( new wxBitmap(bitmap) );
+ return m_images.Number()-1;
+}
+
+int wxGenericImageList::Add( const wxBitmap& bitmap, const wxBitmap& mask )
+{
+ wxBitmap bmp(bitmap);
+ if (mask.Ok())
+ bmp.SetMask(new wxMask(mask));
+ return Add(bmp);
+}
+
+int wxGenericImageList::Add( const wxBitmap& bitmap, const wxColour& maskColour )
+{
+ wxImage img = bitmap.ConvertToImage();
+ img.SetMaskColour(maskColour.Red(), maskColour.Green(), maskColour.Blue());
+ return Add(wxBitmap(img));
+}
+
+const wxBitmap *wxGenericImageList::GetBitmap( int index ) const
+{
+ wxNode *node = m_images.Nth( index );
+
+ wxCHECK_MSG( node, (wxBitmap *) NULL, wxT("wrong index in image list") );
+
+ return (wxBitmap*)node->Data();
+}
+
+bool wxGenericImageList::Replace( int index, const wxBitmap &bitmap )
+{
+ wxNode *node = m_images.Nth( index );
+
+ wxCHECK_MSG( node, FALSE, wxT("wrong index in image list") );
+
+ wxBitmap* newBitmap = NULL;
+ if (bitmap.IsKindOf(CLASSINFO(wxIcon)))
+#if defined(__VISAGECPP__)
+//just can't do this in VisualAge now, with all this new Bitmap-Icon stuff
+//so construct it from a bitmap object until I can figure this nonsense out. (DW)
+ newBitmap = new wxBitmap(bitmap) ;
+#else
+ newBitmap = new wxBitmap( (const wxIcon&) bitmap );
+#endif
+ else
+ newBitmap = new wxBitmap(bitmap) ;