]> git.saurik.com Git - wxWidgets.git/blame_incremental - src/generic/imaglist.cpp
compile warnings, M_BITMAPDATA privatized
[wxWidgets.git] / src / generic / imaglist.cpp
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: generic/imaglist.cpp
3// Purpose:
4// Author: Robert Roebling
5// Id: $id$
6// Copyright: (c) 1998 Robert Roebling
7// Licence: wxWindows licence
8/////////////////////////////////////////////////////////////////////////////
9
10#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
11#pragma implementation "imaglist.h"
12#endif
13
14// For compilers that support precompilation, includes "wx.h".
15#include "wx/wxprec.h"
16
17#ifdef __BORLANDC__
18#pragma hdrstop
19#endif
20
21#include "wx/defs.h"
22
23#ifndef __WXPALMOS__
24
25#include "wx/generic/imaglist.h"
26
27#include "wx/icon.h"
28#include "wx/image.h"
29#include "wx/dc.h"
30
31//-----------------------------------------------------------------------------
32// wxImageList
33//-----------------------------------------------------------------------------
34
35IMPLEMENT_DYNAMIC_CLASS(wxGenericImageList, wxObject)
36
37#if !defined(__WXMSW__) || defined(__WXUNIVERSAL__)
38/*
39 * wxImageList has to be a real class or we have problems with
40 * the run-time information.
41 */
42
43IMPLEMENT_DYNAMIC_CLASS(wxImageList, wxGenericImageList)
44#endif
45
46wxGenericImageList::wxGenericImageList( int width, int height, bool mask, int initialCount )
47{
48 (void)Create(width, height, mask, initialCount);
49}
50
51wxGenericImageList::~wxGenericImageList()
52{
53 (void)RemoveAll();
54}
55
56int wxGenericImageList::GetImageCount() const
57{
58 return m_images.GetCount();
59}
60
61bool wxGenericImageList::Create( int width, int height, bool WXUNUSED(mask), int WXUNUSED(initialCount) )
62{
63 m_width = width;
64 m_height = height;
65
66 return Create();
67}
68
69bool wxGenericImageList::Create()
70{
71 return true;
72}
73
74int wxGenericImageList::Add( const wxBitmap &bitmap )
75{
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.") );
80
81 if (bitmap.IsKindOf(CLASSINFO(wxIcon)))
82 m_images.Append( new wxIcon( (const wxIcon&) bitmap ) );
83 else
84 m_images.Append( new wxBitmap(bitmap) );
85
86 if (m_width == 0 && m_height == 0)
87 {
88 m_width = bitmap.GetWidth();
89 m_height = bitmap.GetHeight();
90 }
91
92 return m_images.GetCount()-1;
93}
94
95int wxGenericImageList::Add( const wxBitmap& bitmap, const wxBitmap& mask )
96{
97 wxBitmap bmp(bitmap);
98 if (mask.Ok())
99 bmp.SetMask(new wxMask(mask));
100 return Add(bmp);
101}
102
103int wxGenericImageList::Add( const wxBitmap& bitmap, const wxColour& maskColour )
104{
105 wxImage img = bitmap.ConvertToImage();
106 img.SetMaskColour(maskColour.Red(), maskColour.Green(), maskColour.Blue());
107 return Add(wxBitmap(img));
108}
109
110const wxBitmap *wxGenericImageList::GetBitmap( int index ) const
111{
112 wxList::compatibility_iterator node = m_images.Item( index );
113
114 wxCHECK_MSG( node, (wxBitmap *) NULL, wxT("wrong index in image list") );
115
116 return (wxBitmap*)node->GetData();
117}
118
119bool wxGenericImageList::Replace( int index, const wxBitmap &bitmap )
120{
121 wxList::compatibility_iterator node = m_images.Item( index );
122
123 wxCHECK_MSG( node, false, wxT("wrong index in image list") );
124
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)
129 new wxBitmap(bitmap)
130 #else
131 new wxBitmap( (const wxIcon&) bitmap )
132 #endif
133 : new wxBitmap(bitmap) ;
134
135 if (index == (int) m_images.GetCount() - 1)
136 {
137 delete node->GetData();
138 m_images.Erase( node );
139 m_images.Append( newBitmap );
140 }
141 else
142 {
143 wxList::compatibility_iterator next = node->GetNext();
144 delete node->GetData();
145 m_images.Erase( node );
146 m_images.Insert( next, newBitmap );
147 }
148
149 return true;
150}
151
152bool wxGenericImageList::Remove( int index )
153{
154 wxList::compatibility_iterator node = m_images.Item( index );
155
156 wxCHECK_MSG( node, false, wxT("wrong index in image list") );
157
158 delete node->GetData();
159 m_images.Erase( node );
160
161 return true;
162}
163
164bool wxGenericImageList::RemoveAll()
165{
166 WX_CLEAR_LIST(wxList, m_images);
167 m_images.Clear();
168
169 return true;
170}
171
172bool wxGenericImageList::GetSize( int index, int &width, int &height ) const
173{
174 width = 0;
175 height = 0;
176
177 wxList::compatibility_iterator node = m_images.Item( index );
178
179 wxCHECK_MSG( node, false, wxT("wrong index in image list") );
180
181 wxBitmap *bm = (wxBitmap*)node->GetData();
182 width = bm->GetWidth();
183 height = bm->GetHeight();
184
185 return true;
186}
187
188bool wxGenericImageList::Draw( int index, wxDC &dc, int x, int y,
189 int flags, bool WXUNUSED(solidBackground) )
190{
191 wxList::compatibility_iterator node = m_images.Item( index );
192
193 wxCHECK_MSG( node, false, wxT("wrong index in image list") );
194
195 wxBitmap *bm = (wxBitmap*)node->GetData();
196
197 if (bm->IsKindOf(CLASSINFO(wxIcon)))
198 dc.DrawIcon( * ((wxIcon*) bm), x, y);
199 else
200 dc.DrawBitmap( *bm, x, y, (flags & wxIMAGELIST_DRAW_TRANSPARENT) > 0 );
201
202 return true;
203}
204
205#endif // __WXPALMOS__