]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/ctrlsub.tex
don't use _T() inside wxGetTranslation() and related macros (wxTRANSLATE, _, ......
[wxWidgets.git] / docs / latex / wx / ctrlsub.tex
CommitLineData
243dbf1a 1%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
bed5584e
VZ
2%% Name: ctrlsub.tex
3%% Purpose: wxControlWithItems documentation
4%% Author: Vadim Zeitlin
5%% Modified by:
6%% Created: 01.01.03
7%% RCS-ID: $Id$
8%% Copyright: (c) 2003 Vadim Zeitlin
8795498c 9%% License: wxWindows license
243dbf1a 10%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
bed5584e
VZ
11
12\section{\class{wxControlWithItems}}\label{wxcontrolwithitems}
13
fc2171bd 14This class is an abstract base class for some wxWidgets controls which contain
afbe150a
WS
15several items, such as \helpref{wxListBox}{wxlistbox} and
16\helpref{wxCheckListBox}{wxchecklistbox} derived from it,
bed5584e
VZ
17\helpref{wxChoice}{wxchoice} and \helpref{wxComboBox}{wxcombobox}.
18
19It defines the methods for accessing the controls items and although each of
20the derived classes implements them differently, they still all conform to the
21same interface.
22
154b6b0f 23The items in a wxControlWithItems have (non-empty) string labels and,
bed5584e
VZ
24optionally, client data associated with them. Client data may be of two
25different kinds: either simple untyped ({\tt void *}) pointers which are simply
26stored by the control but not used in any way by it, or typed pointers
27({\tt wxClientData *}) which are owned by the control meaning that the typed
afbe150a
WS
28client data (and only it) will be deleted when an item is
29\helpref{deleted}{wxcontrolwithitemsdelete} or the entire control is
bed5584e
VZ
30\helpref{cleared}{wxcontrolwithitemsclear} (which also happens when it is
31destroyed). Finally note that in the same control all items must have client
32data of the same type (typed or untyped), if any. This type is determined by
33the first call to \helpref{Append}{wxcontrolwithitemsappend} (the version with
34client data pointer) or \helpref{SetClientData}{wxcontrolwithitemssetclientdata}.
35
36\wxheading{Derived from}
37
38\helpref{wxControl}{wxcontrol}\\
39\helpref{wxWindow}{wxwindow}\\
40\helpref{wxEvtHandler}{wxevthandler}\\
41\helpref{wxObject}{wxobject}
42
43\wxheading{Include files}
44
45<wx/ctrlsub.h> but usually never included directly
46
a7af285d
VZ
47\wxheading{Library}
48
49\helpref{wxCore}{librarieslist}
50
bed5584e
VZ
51\latexignore{\rtfignore{\wxheading{Members}}}
52
53\membersection{wxControlWithItems::Append}\label{wxcontrolwithitemsappend}
54
55\func{int}{Append}{\param{const wxString\& }{ item}}
56
57Adds the item to the end of the list box.
58
59\func{int}{Append}{\param{const wxString\& }{ item}, \param{void *}{clientData}}
60
61\func{int}{Append}{\param{const wxString\& }{ item}, \param{wxClientData *}{clientData}}
62
63Adds the item to the end of the list box, associating the given, typed or
64untyped, client data pointer with the item.
65
66\func{void}{Append}{\param{const wxArrayString\& }{strings}}
67
a236aa20
VZ
68\func{void}{Append}{\param{unsigned int }{n},\param{const wxString* }{strings}}
69
70\func{void}{Append}{\param{unsigned int }{n},\param{const wxString* }{strings}, \param{void **}{clientData}}
71
72\func{void}{Append}{\param{unsigned int }{n},\param{const wxString* }{strings}, \param{wxClientData **}{clientData}}
73
bed5584e 74Appends several items at once to the control. Notice that calling this method
a236aa20 75is usually much faster than appending them one by one if you need to add a lot
bed5584e
VZ
76of items.
77
78\wxheading{Parameters}
79
80\docparam{item}{String to add.}
81
a236aa20
VZ
82\docparam{stringsArray}{Contains items to append to the control.}
83
84\docparam{strings}{Array of strings of size \arg{n}.}
85
86\docparam{n}{Number of items in the \arg{strings} array.}
87
88\docparam{clientData}{Array of client data pointers of size \arg{n} to associate with the new items.}
bed5584e
VZ
89
90\wxheading{Return value}
91
92When appending a single item, the return value is the index of the newly added
93item which may be different from the last one if the control is sorted (e.g.
94has {\tt wxLB\_SORT} or {\tt wxCB\_SORT} style).
95
96\membersection{wxControlWithItems::Clear}\label{wxcontrolwithitemsclear}
97
98\func{void}{Clear}{\void}
99
100Removes all items from the control.
101
102{\it Clear()} also deletes the client data of the existing items if it is owned
103by the control.
104
105\membersection{wxControlWithItems::Delete}\label{wxcontrolwithitemsdelete}
106
aa61d352 107\func{void}{Delete}{\param{unsigned int}{ n}}
bed5584e
VZ
108
109Deletes an item from the control. The client data associated with the item
110will be also deleted if it is owned by the control.
111
112Note that it is an error (signalled by an assert failure in debug builds) to
113remove an item with the index negative or greater or equal than the number of
114items in the control.
115
116\wxheading{Parameters}
117
118\docparam{n}{The zero-based item index.}
119
120\wxheading{See also}
121
122\helpref{Clear}{wxcontrolwithitemsclear}
123
124\membersection{wxControlWithItems::FindString}\label{wxcontrolwithitemsfindstring}
125
f7c40316 126\func{int}{FindString}{\param{const wxString\& }{string}, \param{bool}{ caseSensitive = false}}
bed5584e
VZ
127
128Finds an item whose label matches the given string.
129
130\wxheading{Parameters}
131
132\docparam{string}{String to find.}
133
f7c40316
WS
134\docparam{caseSensitive}{Whether search is case sensitive (default is not).}
135
bed5584e
VZ
136\wxheading{Return value}
137
138The zero-based position of the item, or {\tt wxNOT\_FOUND} if the string was
139not found.
140
141
142\membersection{wxControlWithItems::GetClientData}\label{wxcontrolwithitemsgetclientdata}
143
aa61d352 144\constfunc{void *}{GetClientData}{\param{unsigned int}{ n}}
bed5584e
VZ
145
146Returns a pointer to the client data associated with the given item (if any).
147It is an error to call this function for a control which doesn't have untyped
148client data at all although it is ok to call it even if the given item doesn't
149have any client data associated with it (but other items do).
150
151\wxheading{Parameters}
152
153\docparam{n}{The zero-based position of the item.}
154
155\wxheading{Return value}
156
157A pointer to the client data, or {\tt NULL} if not present.
158
159
160\membersection{wxControlWithItems::GetClientObject}\label{wxcontrolwithitemsgetclientobject}
161
aa61d352 162\constfunc{wxClientData *}{GetClientObject}{\param{unsigned int}{ n}}
bed5584e
VZ
163
164Returns a pointer to the client data associated with the given item (if any).
165It is an error to call this function for a control which doesn't have typed
166client data at all although it is ok to call it even if the given item doesn't
167have any client data associated with it (but other items do).
168
169\wxheading{Parameters}
170
171\docparam{n}{The zero-based position of the item.}
172
173\wxheading{Return value}
174
175A pointer to the client data, or {\tt NULL} if not present.
176
177
178\membersection{wxControlWithItems::GetCount}\label{wxcontrolwithitemsgetcount}
179
aa61d352 180\constfunc{unsigned int}{GetCount}{\void}
bed5584e
VZ
181
182Returns the number of items in the control.
183
184\wxheading{See also}
185
186\helpref{IsEmpty}{wxcontrolwithitemsisempty}
187
188
189\membersection{wxControlWithItems::GetSelection}\label{wxcontrolwithitemsgetselection}
190
191\constfunc{int}{GetSelection}{\void}
192
193Returns the index of the selected item or {\tt wxNOT\_FOUND} if no item is
194selected.
195
196\wxheading{Return value}
197
198The position of the current selection.
199
200\wxheading{Remarks}
201
afbe150a 202This method can be used with single selection list boxes only, you should use
bed5584e
VZ
203\helpref{wxListBox::GetSelections}{wxlistboxgetselections} for the list boxes
204with {\tt wxLB\_MULTIPLE} style.
205
206\wxheading{See also}
207
208\helpref{SetSelection}{wxcontrolwithitemssetselection},\rtfsp
209\helpref{GetStringSelection}{wxcontrolwithitemsgetstringselection}
210
211
212\membersection{wxControlWithItems::GetString}\label{wxcontrolwithitemsgetstring}
213
aa61d352 214\constfunc{wxString}{GetString}{\param{unsigned int}{ n}}
bed5584e
VZ
215
216Returns the label of the item with the given index.
217
218\wxheading{Parameters}
219
220\docparam{n}{The zero-based index.}
221
222\wxheading{Return value}
223
224The label of the item or an empty string if the position was invalid.
225
226
003fa4a7
VZ
227\membersection{wxControlWithItems::GetStrings}\label{wxcontrolwithitemsgetstrings}
228
229\constfunc{wxArrayString}{GetStrings}{\void}
230
231Returns the array of the labels of all items in the control.
232
233
bed5584e
VZ
234\membersection{wxControlWithItems::GetStringSelection}\label{wxcontrolwithitemsgetstringselection}
235
236\constfunc{wxString}{GetStringSelection}{\void}
237
238Returns the label of the selected item or an empty string if no item is
239selected.
240
241\wxheading{See also}
242
243\helpref{GetSelection}{wxcontrolwithitemsgetselection}
244
245
243dbf1a
VZ
246\membersection{wxControlWithItems::Insert}\label{wxcontrolwithitemsinsert}
247
aa61d352 248\func{int}{Insert}{\param{const wxString\& }{ item}, \param{unsigned int }{pos}}
243dbf1a
VZ
249
250Inserts the item into the list before pos.
251Not valid for {\tt wxLB\_SORT} or {\tt wxCB\_SORT} styles, use Append instead.
252
aa61d352 253\func{int}{Insert}{\param{const wxString\& }{ item}, \param{unsigned int }{pos}, \param{void *}{clientData}}
243dbf1a 254
aa61d352 255\func{int}{Insert}{\param{const wxString\& }{ item}, \param{unsigned int }{pos}, \param{wxClientData *}{clientData}}
243dbf1a
VZ
256
257Inserts the item into the list before pos, associating the given, typed or
258untyped, client data pointer with the item.
259Not valid for {\tt wxLB\_SORT} or {\tt wxCB\_SORT} styles, use Append instead.
260
a236aa20
VZ
261\func{void}{Insert}{\param{const wxArrayString\& }{strings}, \param{unsigned int }{pos}}
262
263\func{void}{Insert}{\param{const wxArrayString\& }{strings}, \param{unsigned int }{pos}}
264
265\func{void}{Insert}{\param{unsigned int }{n},\param{const wxString* }{strings}, \param{unsigned int }{pos}}
266
267\func{void}{Insert}{\param{unsigned int }{n},\param{const wxString* }{strings}, \param{unsigned int }{pos}, \param{void **}{clientData}}
268
269\func{void}{Insert}{\param{unsigned int }{n},\param{const wxString* }{strings}, \param{unsigned int }{pos}, \param{wxClientData **}{clientData}}
270
271Inserts several items at once into the control. Notice that calling this method
272is usually much faster than inserting them one by one if you need to insert a lot
273of items.
274
275
243dbf1a
VZ
276\wxheading{Parameters}
277
278\docparam{item}{String to add.}
279
280\docparam{pos}{Position to insert item before, zero based.}
281
a236aa20
VZ
282\docparam{stringsArray}{Contains items to insert into the control content}
283
284\docparam{strings}{Array of strings of size \arg{n}.}
285
286\docparam{n}{Number of items in the \arg{strings} array.}
287
288\docparam{clientData}{Array of client data pointers of size \arg{n} to associate with the new items.}
243dbf1a
VZ
289
290\wxheading{Return value}
291
292The return value is the index of the newly inserted item. If the insertion failed
293for some reason, -1 is returned.
294
295
bed5584e
VZ
296\membersection{wxControlWithItems::IsEmpty}\label{wxcontrolwithitemsisempty}
297
298\constfunc{bool}{IsEmpty}{\void}
299
cc81d32f 300Returns {\tt true} if the control is empty or {\tt false} if it has some items.
bed5584e
VZ
301
302\wxheading{See also}
303
304\helpref{GetCount}{wxcontrolwithitemsgetcount}
305
306
c6179a84
VZ
307\membersection{wxControlWithItems::Select}\label{wxcontrolwithitemsselect}
308
309\func{void}{Select}{\param{int}{ n}}
310
311This is the same as \helpref{SetSelection}{wxcontrolwithitemssetselection} and
312exists only because it is slightly more natural for controls which support
313multiple selection.
314
315
a236aa20
VZ
316\membersection{wxControlWithItems::Set}\label{wxcontrolwithitemsset}
317
318\func{int}{Set}{\param{const wxString\& }{ item}}
319
320\func{int}{Set}{\param{const wxString\& }{ item}, \param{void *}{clientData}}
321
322\func{int}{Set}{\param{const wxString\& }{ item}, \param{wxClientData *}{clientData}}
323
324Replace control items with the (only) item specified, associating the typed or
325untyped client data pointer with it if given.
326
327\func{void}{Set}{\param{const wxArrayString\& }{stringsArray}}
328
329\func{void}{Set}{\param{unsigned int }{n},\param{const wxString* }{strings}}
330
331\func{void}{Set}{\param{unsigned int }{n},\param{const wxString* }{strings}, \param{void **}{clientData}}
332
333\func{void}{Set}{\param{unsigned int }{n},\param{const wxString* }{strings}, \param{wxClientData **}{clientData}}
334
335Replaces the current control contents with the given items. Notice that calling
336this method is much faster than appending the items one by one if you need to
337append a lot of them.
338
339\wxheading{Parameters}
340
341\docparam{item}{The single item to insert into the control.}
342
343\docparam{stringsArray}{Contains items to set as control content.}
344
345\docparam{strings}{Raw C++ array of strings. Only used in conjunction with 'n'.}
346
347\docparam{n}{Number of items passed in 'strings'. Only used in conjunction with 'strings'.}
348
349\docparam{clientData}{Client data to associate with the item(s).}
350
351\wxheading{Return value}
352
353When the control is sorted (e.g. has {\tt wxLB\_SORT} or {\tt wxCB\_SORT} style)
354the return value could be different from (GetCount() - 1).
355When setting a single item to the container, the return value is the index of the
356newly added item which may be different from the last one if the control is sorted
357(e.g. has {\tt wxLB\_SORT} or {\tt wxCB\_SORT} style).
358
359By default this method subsequently calls \helpref{Clear}{wxcontrolwithitemsclear}
360and \helpref{Append}{wxcontrolwithitemsappend}.
361
362
bed5584e
VZ
363\membersection{wxControlWithItems::SetClientData}\label{wxcontrolwithitemssetclientdata}
364
aa61d352 365\func{void}{SetClientData}{\param{unsigned int}{ n}, \param{void *}{data}}
bed5584e
VZ
366
367Associates the given untyped client data pointer with the given item. Note that
368it is an error to call this function if any typed client data pointers had been
369associated with the control items before.
370
371\wxheading{Parameters}
372
373\docparam{n}{The zero-based item index.}
374
375\docparam{data}{The client data to associate with the item.}
376
377
378\membersection{wxControlWithItems::SetClientObject}\label{wxcontrolwithitemssetclientobject}
379
aa61d352 380\func{void}{SetClientObject}{\param{unsigned int}{ n}, \param{wxClientData *}{data}}
bed5584e 381
afbe150a 382Associates the given typed client data pointer with the given item: the
bed5584e
VZ
383{\it data} object will be deleted when the item is deleted (either explicitly
384by using \helpref{Deletes}{wxcontrolwithitemsdelete} or implicitly when the
385control itself is destroyed).
386
387Note that it is an error to call this function if any untyped client data
388pointers had been associated with the control items before.
389
390\wxheading{Parameters}
391
392\docparam{n}{The zero-based item index.}
393
394\docparam{data}{The client data to associate with the item.}
395
396
397\membersection{wxControlWithItems::SetSelection}\label{wxcontrolwithitemssetselection}
398
399\func{void}{SetSelection}{\param{int}{ n}}
400
26f2b058 401Sets the selection to the given item \arg{n} or removes the selection entirely
a8d08dbd 402if \arg{n} $==$ {\tt wxNOT\_FOUND}.
26f2b058 403
c6179a84
VZ
404Note that this does not cause any command events to be emitted nor does it
405deselect any other items in the controls which support multiple selections.
bed5584e
VZ
406
407\wxheading{Parameters}
408
409\docparam{n}{The string position to select, starting from zero.}
410
411\wxheading{See also}
412
413\helpref{SetString}{wxcontrolwithitemssetstring},\rtfsp
414\helpref{SetStringSelection}{wxcontrolwithitemssetstringselection}
415
416
417\membersection{wxControlWithItems::SetString}\label{wxcontrolwithitemssetstring}
418
aa61d352 419\func{void}{SetString}{\param{unsigned int}{ n}, \param{const wxString\& }{ string}}
bed5584e
VZ
420
421Sets the label for the given item.
422
423\wxheading{Parameters}
424
425\docparam{n}{The zero-based item index.}
426
427\docparam{string}{The label to set.}
428
429
430\membersection{wxControlWithItems::SetStringSelection}\label{wxcontrolwithitemssetstringselection}
431
64fa6f16 432\func{bool}{SetStringSelection}{\param{const wxString\& }{ string}}
bed5584e
VZ
433
434Selects the item with the specified string in the control. This doesn't cause
fab86f26 435any command events to be emitted.
bed5584e
VZ
436
437\wxheading{Parameters}
438
439\docparam{string}{The string to select.}
440
64fa6f16
VZ
441\wxheading{Return value}
442
443\true if the specified string has been selected, \false if it wasn't found in
444the control.
445
bed5584e
VZ
446\wxheading{See also}
447
448\helpref{SetSelection}{wxcontrolwithitemssetselection}
b67a86d5 449