1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
7 // Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
12 #pragma implementation "imaglist.h"
15 #include "wx/imaglist.h"
17 //-----------------------------------------------------------------------------
19 //-----------------------------------------------------------------------------
21 IMPLEMENT_DYNAMIC_CLASS(wxImageList
, wxObject
)
23 wxImageList::wxImageList( int width
, int height
, bool WXUNUSED(mask
), int WXUNUSED(initialCount
) )
30 wxImageList::~wxImageList()
34 int wxImageList::GetImageCount() const
36 return m_images
.Number();
39 bool wxImageList::Create()
41 m_images
.DeleteContents( TRUE
);
45 int wxImageList::Add( const wxBitmap
&bitmap
)
47 m_images
.Append( new wxBitmap(bitmap
) );
48 return m_images
.Number();
51 const wxBitmap
*wxImageList::GetBitmap(int index
) const {
52 wxNode
*node
= m_images
.Nth(index
);
54 return (wxBitmap
*)node
->Data();
56 return (wxBitmap
*) NULL
;
59 bool wxImageList::Replace( int index
, const wxBitmap
&bitmap
)
61 wxNode
*node
= m_images
.Nth( index
);
62 if (!node
) return FALSE
;
64 if (index
== m_images
.Number()-1)
66 m_images
.DeleteNode( node
);
67 m_images
.Append( new wxBitmap(bitmap
) );
71 wxNode
*next
= node
->Next();
72 m_images
.DeleteNode( node
);
73 m_images
.Insert( next
, new wxBitmap(bitmap
) );
79 bool wxImageList::Remove( int index
)
81 wxNode
*node
= m_images
.Nth( index
);
82 if (node
) m_images
.DeleteNode( node
);
83 return (node
!= NULL
);
86 bool wxImageList::RemoveAll()
92 bool wxImageList::GetSize( int index
, int &width
, int &height
) const
99 return (m_images
.Nth( index
) != NULL
);
103 wxNode
*node
= m_images
.Nth( index
);
106 wxBitmap
*bm
= (wxBitmap
*)node
->Data();
107 width
= bm
->GetWidth();
108 height
= bm
->GetHeight();
121 bool wxImageList::Draw( int index
, wxDC
&dc
, int x
, int y
,
122 int flags
, bool WXUNUSED(solidBackground
) )
124 wxNode
*node
= m_images
.Nth( index
);
125 if (!node
) return FALSE
;
126 wxBitmap
*bm
= (wxBitmap
*)node
->Data();
130 // As X doesn't have a standard size for icons, we resize here.
131 // Otherwise we'd simply have to forbid different bitmap sizes.
133 if ((m_width
!= bm
->GetWidth()) ||
134 (m_height
!= bm
->GetHeight()))
136 bm
->Resize( m_width
, m_height
);
141 wxIcon
*icon
= (wxIcon
*)bm
;
142 dc
.DrawIcon( *icon
, x
, y
, (flags
& wxIMAGELIST_DRAW_TRANSPARENT
) > 0 );