]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/imaglist.tex
Fixed wxMotif's wxExecute again, added OnPaint capability to wxFrame,
[wxWidgets.git] / docs / latex / wx / imaglist.tex
CommitLineData
a660d684
KB
1\section{\class{wxImageList}}\label{wximagelist}
2
3A wxImageList contains a list of images, which are stored in
4an unspecified form. Images can have masks for transparent
5drawing, and can be made from a variety of sources including bitmaps
6and icons.
7
8wxImageList is used principally in conjunction with \helpref{wxTreeCtrl}{wxtreectrl} and
9\rtfsp\helpref{wxListCtrl}{wxlistctrl} classes.
10
11\wxheading{Derived from}
12
13\helpref{wxObject}{wxobject}
14
954b8ae6
JS
15\wxheading{Include files}
16
17<wx/imaglist.h>
18
a660d684
KB
19\wxheading{See also}
20
21\helpref{wxTreeCtrl}{wxtreectrl}, \helpref{wxListCtrl}{wxlistctrl}
22
23\latexignore{\rtfignore{\wxheading{Members}}}
24
25\membersection{wxImageList::wxImageList}\label{wximagelistconstr}
26
27\func{}{wxImageList}{\void}
28
29Default constructor.
30
eaaa6a06
JS
31\func{}{wxImageList}{\param{int }{width}, \param{int }{height}, \param{const bool }{mask = TRUE},\rtfsp
32\param{int }{initialCount = 1}}
a660d684
KB
33
34Constructor specifying the image size, whether image masks should be created, and the initial size of the list.
35
36\wxheading{Parameters}
37
38\docparam{width}{Width of the images in the list.}
39
40\docparam{height}{Height of the images in the list.}
41
42\docparam{mask}{TRUE if masks should be created for all images.}
43
44\docparam{initialCount}{The initial size of the list.}
45
46\wxheading{See also}
47
48\helpref{wxImageList::Create}{wximagelistcreate}
49
50\membersection{wxImageList::Add}\label{wximagelistadd}
51
52\func{int}{Add}{\param{const wxBitmap\&}{ bitmap}, \param{const wxBitmap\&}{ mask = wxNullBitmap}}
53
54Adds a new image using a bitmap and optional mask bitmap.
55
56\func{int}{Add}{\param{const wxBitmap\&}{ bitmap}, \param{const wxColour\&}{ maskColour}}
57
58Adds a new image using a bitmap and mask colour.
59
884360bc 60\func{int}{Add}{\param{const wxIcon\&}{ icon}}
a660d684
KB
61
62Adds a new image using an icon.
63
64\wxheading{Parameters}
65
66\docparam{bitmap}{Bitmap representing the opaque areas of the image.}
67
68\docparam{mask}{Monochrome mask bitmap, representing the transparent areas of the image.}
69
70\docparam{maskColour}{Colour indicating which parts of the image are transparent.}
71
72\docparam{icon}{Icon to use as the image.}
73
74\wxheading{Return value}
75
76The new zero-based image index.
77
78\wxheading{Remarks}
79
80The original bitmap or icon is not affected by the {\bf Add} operation, and can be deleted afterwards.
81
82\membersection{wxImageList::Create}\label{wximagelistcreate}
83
eaaa6a06
JS
84\func{bool}{Create}{\param{int }{width}, \param{int }{height}, \param{const bool }{mask = TRUE},\rtfsp
85\param{int }{initialCount = 1}}
a660d684
KB
86
87Initializes the list. See \helpref{wxImageList::wxImageList}{wximagelistconstr} for details.
88
89\membersection{wxImageList::Draw}\label{wximagelistdraw}
90
eaaa6a06
JS
91\func{bool}{Draw}{\param{int}{ index}, \param{wxDC\&}{ dc}, \param{int }{x},\rtfsp
92\param{int }{x}, \param{int }{flags = wxIMAGELIST\_DRAW\_NORMAL},\rtfsp
a660d684
KB
93\param{const bool }{solidBackground = FALSE}}
94
95Draws a specified image onto a device context.
96
97\wxheading{Parameters}
98
99\docparam{index}{Image index, starting from zero.}
100
101\docparam{dc}{Device context to draw on.}
102
103\docparam{x}{X position on the device context.}
104
105\docparam{y}{Y position on the device context.}
106
107\docparam{flags}{How to draw the image. A bitlist of a selection of the following:
108
109\begin{twocollist}\itemsep=0pt
110\twocolitem{{\bf wxIMAGELIST\_DRAW\_NORMAL}}{Draw the image normally.}
111\twocolitem{{\bf wxIMAGELIST\_DRAW\_TRANSPARENT}}{Draw the image with transparency.}
112\twocolitem{{\bf wxIMAGELIST\_DRAW\_SELECTED}}{Draw the image in selected state.}
113\twocolitem{{\bf wxIMAGELIST\_DRAW\_FOCUSED}}{Draw the image in a focussed state.}
114\end{twocollist}
115}
116
117\docparam{solidBackground}{For optimisation - drawing can be faster if the function is told
118that the background is solid.}
119
120\membersection{wxImageList::GetImageCount}\label{wximagelistgetimagecount}
121
122\constfunc{int}{GetImageCount}{\void}
123
124Returns the number of images in the list.
125
126\membersection{wxImageList::Remove}\label{wximagelistremove}
127
eaaa6a06 128\func{bool}{Remove}{\param{int}{ index}}
a660d684
KB
129
130Removes the image at the given position.
131
132\membersection{wxImageList::RemoveAll}\label{wximagelistremoveall}
133
134\func{bool}{RemoveAll}{\void}
135
136Removes all the images in the list.
137
138\membersection{wxImageList::Replace}\label{wximagelistreplace}
139
eaaa6a06 140\func{bool}{Replace}{\param{int}{ index}, \param{const wxBitmap\&}{ bitmap}, \param{const wxBitmap\&}{ mask = wxNullBitmap}}
a660d684
KB
141
142Replaces the existing image with the new image.
143
eaaa6a06 144\func{bool}{Replace}{\param{int}{ index}, \param{const wxIcon\&}{ icon}}
a660d684
KB
145
146Replaces the existing image with the new image.
147
148\wxheading{Parameters}
149
150\docparam{bitmap}{Bitmap representing the opaque areas of the image.}
151
152\docparam{mask}{Monochrome mask bitmap, representing the transparent areas of the image.}
153
154\docparam{icon}{Icon to use as the image.}
155
156\wxheading{Return value}
157
158TRUE if the replacement was successful, FALSE otherwise.
159
160\wxheading{Remarks}
161
162The original bitmap or icon is not affected by the {\bf Replace} operation, and can be deleted afterwards.
163
164