1 /////////////////////////////////////////////////////////////////////////////
2 // Name: generic/imaglist.cpp
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
11 #pragma implementation "imaglist.h"
14 // For compilers that support precompilation, includes "wx.h".
15 #include "wx/wxprec.h"
25 #include "wx/generic/imaglist.h"
31 //-----------------------------------------------------------------------------
33 //-----------------------------------------------------------------------------
35 IMPLEMENT_DYNAMIC_CLASS(wxGenericImageList
, wxObject
)
37 #if !defined(__WXMSW__) || defined(__WXUNIVERSAL__)
39 * wxImageList has to be a real class or we have problems with
40 * the run-time information.
43 IMPLEMENT_DYNAMIC_CLASS(wxImageList
, wxGenericImageList
)
46 wxGenericImageList::wxGenericImageList( int width
, int height
, bool mask
, int initialCount
)
48 (void)Create(width
, height
, mask
, initialCount
);
51 wxGenericImageList::~wxGenericImageList()
56 int wxGenericImageList::GetImageCount() const
58 return m_images
.GetCount();
61 bool wxGenericImageList::Create( int width
, int height
, bool WXUNUSED(mask
), int WXUNUSED(initialCount
) )
69 bool wxGenericImageList::Create()
74 int wxGenericImageList::Add( const wxBitmap
&bitmap
)
76 wxASSERT_MSG( bitmap
.GetWidth() == m_width
&&
77 bitmap
.GetHeight() == m_height
,
78 _T("invalid bitmap size in wxImageList: this might work ")
79 _T("on this platform but definitely won't under Windows.") );
81 if (bitmap
.IsKindOf(CLASSINFO(wxIcon
)))
82 m_images
.Append( new wxIcon( (const wxIcon
&) bitmap
) );
84 m_images
.Append( new wxBitmap(bitmap
) );
85 return m_images
.GetCount()-1;
88 int wxGenericImageList::Add( const wxBitmap
& bitmap
, const wxBitmap
& mask
)
92 bmp
.SetMask(new wxMask(mask
));
96 int wxGenericImageList::Add( const wxBitmap
& bitmap
, const wxColour
& maskColour
)
98 wxImage img
= bitmap
.ConvertToImage();
99 img
.SetMaskColour(maskColour
.Red(), maskColour
.Green(), maskColour
.Blue());
100 return Add(wxBitmap(img
));
103 const wxBitmap
*wxGenericImageList::GetBitmap( int index
) const
105 wxList::compatibility_iterator node
= m_images
.Item( index
);
107 wxCHECK_MSG( node
, (wxBitmap
*) NULL
, wxT("wrong index in image list") );
109 return (wxBitmap
*)node
->GetData();
112 bool wxGenericImageList::Replace( int index
, const wxBitmap
&bitmap
)
114 wxList::compatibility_iterator node
= m_images
.Item( index
);
116 wxCHECK_MSG( node
, false, wxT("wrong index in image list") );
118 wxBitmap
* newBitmap
= (bitmap
.IsKindOf(CLASSINFO(wxIcon
))) ?
119 #if defined(__VISAGECPP__)
120 //just can't do this in VisualAge now, with all this new Bitmap-Icon stuff
121 //so construct it from a bitmap object until I can figure this nonsense out. (DW)
124 new wxBitmap( (const wxIcon
&) bitmap
)
126 : new wxBitmap(bitmap
) ;
128 if (index
== (int) m_images
.GetCount() - 1)
130 delete node
->GetData();
131 m_images
.Erase( node
);
132 m_images
.Append( newBitmap
);
136 wxList::compatibility_iterator next
= node
->GetNext();
137 delete node
->GetData();
138 m_images
.Erase( node
);
139 m_images
.Insert( next
, newBitmap
);
145 bool wxGenericImageList::Remove( int index
)
147 wxList::compatibility_iterator node
= m_images
.Item( index
);
149 wxCHECK_MSG( node
, false, wxT("wrong index in image list") );
151 delete node
->GetData();
152 m_images
.Erase( node
);
157 bool wxGenericImageList::RemoveAll()
159 WX_CLEAR_LIST(wxList
, m_images
);
165 bool wxGenericImageList::GetSize( int index
, int &width
, int &height
) const
170 wxList::compatibility_iterator node
= m_images
.Item( index
);
172 wxCHECK_MSG( node
, false, wxT("wrong index in image list") );
174 wxBitmap
*bm
= (wxBitmap
*)node
->GetData();
175 width
= bm
->GetWidth();
176 height
= bm
->GetHeight();
181 bool wxGenericImageList::Draw( int index
, wxDC
&dc
, int x
, int y
,
182 int flags
, bool WXUNUSED(solidBackground
) )
184 wxList::compatibility_iterator node
= m_images
.Item( index
);
186 wxCHECK_MSG( node
, false, wxT("wrong index in image list") );
188 wxBitmap
*bm
= (wxBitmap
*)node
->GetData();
190 if (bm
->IsKindOf(CLASSINFO(wxIcon
)))
191 dc
.DrawIcon( * ((wxIcon
*) bm
), x
, y
);
193 dc
.DrawBitmap( *bm
, x
, y
, (flags
& wxIMAGELIST_DRAW_TRANSPARENT
) > 0 );
198 #endif // __WXPALMOS__