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
&& bitmap
.GetHeight() == m_height
)
77 || (m_width
== 0 && m_height
== 0),
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
) );
86 if (m_width
== 0 && m_height
== 0)
88 m_width
= bitmap
.GetWidth();
89 m_height
= bitmap
.GetHeight();
92 return m_images
.GetCount()-1;
95 int wxGenericImageList::Add( const wxBitmap
& bitmap
, const wxBitmap
& mask
)
99 bmp
.SetMask(new wxMask(mask
));
103 int wxGenericImageList::Add( const wxBitmap
& bitmap
, const wxColour
& maskColour
)
105 wxImage img
= bitmap
.ConvertToImage();
106 img
.SetMaskColour(maskColour
.Red(), maskColour
.Green(), maskColour
.Blue());
107 return Add(wxBitmap(img
));
110 const wxBitmap
*wxGenericImageList::GetBitmap( int index
) const
112 wxList::compatibility_iterator node
= m_images
.Item( index
);
114 wxCHECK_MSG( node
, (wxBitmap
*) NULL
, wxT("wrong index in image list") );
116 return (wxBitmap
*)node
->GetData();
119 bool wxGenericImageList::Replace( int index
, const wxBitmap
&bitmap
)
121 wxList::compatibility_iterator node
= m_images
.Item( index
);
123 wxCHECK_MSG( node
, false, wxT("wrong index in image list") );
125 wxBitmap
* newBitmap
= (bitmap
.IsKindOf(CLASSINFO(wxIcon
))) ?
126 #if defined(__VISAGECPP__)
127 //just can't do this in VisualAge now, with all this new Bitmap-Icon stuff
128 //so construct it from a bitmap object until I can figure this nonsense out. (DW)
131 new wxBitmap( (const wxIcon
&) bitmap
)
133 : new wxBitmap(bitmap
) ;
135 if (index
== (int) m_images
.GetCount() - 1)
137 delete node
->GetData();
138 m_images
.Erase( node
);
139 m_images
.Append( newBitmap
);
143 wxList::compatibility_iterator next
= node
->GetNext();
144 delete node
->GetData();
145 m_images
.Erase( node
);
146 m_images
.Insert( next
, newBitmap
);
152 bool wxGenericImageList::Remove( int index
)
154 wxList::compatibility_iterator node
= m_images
.Item( index
);
156 wxCHECK_MSG( node
, false, wxT("wrong index in image list") );
158 delete node
->GetData();
159 m_images
.Erase( node
);
164 bool wxGenericImageList::RemoveAll()
166 WX_CLEAR_LIST(wxList
, m_images
);
172 bool wxGenericImageList::GetSize( int index
, int &width
, int &height
) const
177 wxList::compatibility_iterator node
= m_images
.Item( index
);
179 wxCHECK_MSG( node
, false, wxT("wrong index in image list") );
181 wxBitmap
*bm
= (wxBitmap
*)node
->GetData();
182 width
= bm
->GetWidth();
183 height
= bm
->GetHeight();
188 bool wxGenericImageList::Draw( int index
, wxDC
&dc
, int x
, int y
,
189 int flags
, bool WXUNUSED(solidBackground
) )
191 wxList::compatibility_iterator node
= m_images
.Item( index
);
193 wxCHECK_MSG( node
, false, wxT("wrong index in image list") );
195 wxBitmap
*bm
= (wxBitmap
*)node
->GetData();
197 if (bm
->IsKindOf(CLASSINFO(wxIcon
)))
198 dc
.DrawIcon( * ((wxIcon
*) bm
), x
, y
);
200 dc
.DrawBitmap( *bm
, x
, y
, (flags
& wxIMAGELIST_DRAW_TRANSPARENT
) > 0 );
205 #endif // __WXPALMOS__