]> git.saurik.com Git - wxWidgets.git/blame - include/wx/generic/imaglist.h
don't use -single_module together with -bundle under Darwin (ld gives an error for...
[wxWidgets.git] / include / wx / generic / imaglist.h
CommitLineData
c801d85f 1/////////////////////////////////////////////////////////////////////////////
f6bcfd97 2// Name: wx/generic/imaglist.h
c801d85f
KB
3// Purpose:
4// Author: Robert Roebling
5// Created: 01/02/97
6// Id:
371a5b4e 7// Copyright: (c) 1998 Robert Roebling and Julian Smart
65571936 8// Licence: wxWindows licence
c801d85f
KB
9/////////////////////////////////////////////////////////////////////////////
10
11#ifndef __IMAGELISTH_G__
12#define __IMAGELISTH_G__
13
c801d85f 14#include "wx/defs.h"
00dd3b18 15#include "wx/list.h"
f45fac95 16#include "wx/icon.h"
00dd3b18
MB
17
18class WXDLLEXPORT wxDC;
19class WXDLLEXPORT wxBitmap;
20class WXDLLEXPORT wxColour;
c801d85f
KB
21
22/*
23 * wxImageList is used for wxListCtrl, wxTreeCtrl. These controls refer to
24 * images for their items by an index into an image list.
25 * A wxImageList is capable of creating images with optional masks from
26 * a variety of sources - a single bitmap plus a colour to indicate the mask,
27 * two bitmaps, or an icon.
28 *
29 * Image lists can also create and draw images used for drag and drop functionality.
30 * This is not yet implemented in wxImageList. We need to discuss a generic API
31 * for doing drag and drop and see whether it ties in with the Win95 view of it.
32 * See below for candidate functions and an explanation of how they might be
33 * used.
34 */
35
3cd94a0d
JS
36#if !defined(wxIMAGELIST_DRAW_NORMAL)
37
c801d85f
KB
38// Flags for Draw
39#define wxIMAGELIST_DRAW_NORMAL 0x0001
40#define wxIMAGELIST_DRAW_TRANSPARENT 0x0002
41#define wxIMAGELIST_DRAW_SELECTED 0x0004
42#define wxIMAGELIST_DRAW_FOCUSED 0x0008
43
e2414cbe
RR
44// Flag values for Set/GetImageList
45enum {
46 wxIMAGE_LIST_NORMAL, // Normal icons
47 wxIMAGE_LIST_SMALL, // Small icons
48 wxIMAGE_LIST_STATE // State icons: unimplemented (see WIN32 documentation)
49};
50
3cd94a0d
JS
51#endif
52
53class WXDLLEXPORT wxGenericImageList: public wxObject
c801d85f 54{
f6bcfd97 55public:
77bf4cef 56 wxGenericImageList() { m_width = m_height = 0; }
ca65c044 57 wxGenericImageList( int width, int height, bool mask = true, int initialCount = 1 );
3cd94a0d 58 ~wxGenericImageList();
ca65c044 59 bool Create( int width, int height, bool mask = true, int initialCount = 1 );
0423b685 60 bool Create();
f6bcfd97 61
3cd94a0d
JS
62 virtual int GetImageCount() const;
63 virtual bool GetSize( int index, int &width, int &height ) const;
f6bcfd97 64
4d449473
VS
65 int Add( const wxBitmap& bitmap );
66 int Add( const wxBitmap& bitmap, const wxBitmap& mask );
67 int Add( const wxBitmap& bitmap, const wxColour& maskColour );
49bf4e3e
JS
68 wxBitmap GetBitmap(int index) const;
69 wxIcon GetIcon(int index) const;
0423b685
VZ
70 bool Replace( int index, const wxBitmap &bitmap );
71 bool Remove( int index );
72 bool RemoveAll();
debe6624 73
3cd94a0d 74 virtual bool Draw(int index, wxDC& dc, int x, int y,
f6bcfd97 75 int flags = wxIMAGELIST_DRAW_NORMAL,
ca65c044 76 bool solidBackground = false);
c801d85f 77
49bf4e3e
JS
78 // Internal use only
79 const wxBitmap *GetBitmapPtr(int index) const;
f6bcfd97 80private:
c801d85f 81 wxList m_images;
f6bcfd97 82
219f895a
RR
83 int m_width;
84 int m_height;
f6bcfd97 85
3cd94a0d 86 DECLARE_DYNAMIC_CLASS(wxGenericImageList)
c801d85f
KB
87};
88
3a5bcc4d 89#if !defined(__WXMSW__) || defined(__WXUNIVERSAL__)
b31989e2
JS
90/*
91 * wxImageList has to be a real class or we have problems with
92 * the run-time information.
93 */
94
95class WXDLLEXPORT wxImageList: public wxGenericImageList
96{
97 DECLARE_DYNAMIC_CLASS(wxImageList)
98
99public:
100 wxImageList() {}
101
ca65c044 102 wxImageList( int width, int height, bool mask = true, int initialCount = 1 )
b31989e2
JS
103 : wxGenericImageList(width, height, mask, initialCount)
104 {
105 }
106};
3a5bcc4d 107#endif // !__WXMSW__ || __WXUNIVERSAL__
b31989e2 108
c801d85f
KB
109#endif // __IMAGELISTH_G__
110