]>
Commit | Line | Data |
---|---|---|
23324ae1 FM |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: ctrlsub.h | |
e54c96f1 | 3 | // Purpose: interface of wxControlWithItems |
23324ae1 FM |
4 | // Author: wxWidgets team |
5 | // RCS-ID: $Id$ | |
526954c5 | 6 | // Licence: wxWindows licence |
23324ae1 FM |
7 | ///////////////////////////////////////////////////////////////////////////// |
8 | ||
bf84f3e2 | 9 | |
23324ae1 | 10 | /** |
dc215c81 | 11 | @class wxItemContainerImmutable |
7c913512 | 12 | |
bf84f3e2 VS |
13 | wxItemContainer defines an interface which is implemented by all controls |
14 | which have string subitems each of which may be selected. | |
7c913512 | 15 | |
bf84f3e2 VS |
16 | It is decomposed in wxItemContainerImmutable which omits all methods |
17 | adding/removing items and is used by wxRadioBox and wxItemContainer itself. | |
7c913512 | 18 | |
bf84f3e2 VS |
19 | Note that this is not a control, it's a mixin interface that classes |
20 | have to derive from in addition to wxControl or wxWindow. | |
21 | ||
22 | Examples: wxListBox, wxCheckListBox, wxChoice and wxComboBox (which | |
23 | implements an extended interface deriving from this one) | |
7c913512 | 24 | |
23324ae1 | 25 | @library{wxcore} |
bf84f3e2 | 26 | @category{ctrl} |
7c913512 | 27 | |
bf84f3e2 | 28 | @see wxControlWithItems, wxItemContainer |
23324ae1 | 29 | */ |
bf84f3e2 | 30 | class wxItemContainerImmutable |
23324ae1 FM |
31 | { |
32 | public: | |
bf84f3e2 VS |
33 | /// Constructor |
34 | wxItemContainerImmutable(); | |
35 | ||
23324ae1 | 36 | //@{ |
bf84f3e2 | 37 | |
23324ae1 | 38 | /** |
bf84f3e2 VS |
39 | Returns the number of items in the control. |
40 | ||
41 | @see IsEmpty() | |
42 | */ | |
382f12e4 | 43 | virtual unsigned int GetCount() const = 0; |
bf84f3e2 VS |
44 | |
45 | /** | |
46 | Returns @true if the control is empty or @false if it has some items. | |
47 | ||
48 | @see GetCount() | |
49 | */ | |
50 | bool IsEmpty() const; | |
51 | ||
bf84f3e2 VS |
52 | /** |
53 | Returns the label of the item with the given index. | |
3c4f71cc | 54 | |
7c913512 | 55 | @param n |
bf84f3e2 | 56 | The zero-based index. |
3c4f71cc | 57 | |
d29a9a8a BP |
58 | @return The label of the item or an empty string if the position was |
59 | invalid. | |
23324ae1 | 60 | */ |
382f12e4 | 61 | virtual wxString GetString(unsigned int n) const = 0; |
23324ae1 FM |
62 | |
63 | /** | |
bf84f3e2 | 64 | Returns the array of the labels of all items in the control. |
23324ae1 | 65 | */ |
bf84f3e2 | 66 | wxArrayString GetStrings() const; |
23324ae1 FM |
67 | |
68 | /** | |
bf84f3e2 | 69 | Sets the label for the given item. |
3c4f71cc | 70 | |
7c913512 | 71 | @param n |
4cc4bfaf | 72 | The zero-based item index. |
bf84f3e2 VS |
73 | @param string |
74 | The label to set. | |
23324ae1 | 75 | */ |
382f12e4 | 76 | virtual void SetString(unsigned int n, const wxString& string) = 0; |
23324ae1 FM |
77 | |
78 | /** | |
79 | Finds an item whose label matches the given string. | |
3c4f71cc | 80 | |
7c913512 | 81 | @param string |
4cc4bfaf | 82 | String to find. |
7c913512 | 83 | @param caseSensitive |
4cc4bfaf | 84 | Whether search is case sensitive (default is not). |
3c4f71cc | 85 | |
d29a9a8a BP |
86 | @return The zero-based position of the item, or wxNOT_FOUND if the |
87 | string was not found. | |
23324ae1 | 88 | */ |
76e9224e | 89 | virtual int FindString(const wxString& string, bool caseSensitive = false) const; |
3c4f71cc | 90 | |
bf84f3e2 | 91 | //@} |
3c4f71cc | 92 | |
dc215c81 | 93 | /// @name Selection |
bf84f3e2 | 94 | //@{ |
23324ae1 FM |
95 | |
96 | /** | |
bf84f3e2 VS |
97 | Sets the selection to the given item @a n or removes the selection |
98 | entirely if @a n == @c wxNOT_FOUND. | |
3c4f71cc | 99 | |
bf84f3e2 VS |
100 | Note that this does not cause any command events to be emitted nor does |
101 | it deselect any other items in the controls which support multiple | |
102 | selections. | |
23324ae1 | 103 | |
bf84f3e2 VS |
104 | @param n |
105 | The string position to select, starting from zero. | |
3c4f71cc | 106 | |
bf84f3e2 | 107 | @see SetString(), SetStringSelection() |
23324ae1 | 108 | */ |
382f12e4 | 109 | virtual void SetSelection(int n) = 0; |
23324ae1 FM |
110 | |
111 | /** | |
112 | Returns the index of the selected item or @c wxNOT_FOUND if no item is | |
113 | selected. | |
3c4f71cc | 114 | |
d29a9a8a | 115 | @return The position of the current selection. |
3c4f71cc | 116 | |
23324ae1 | 117 | @remarks This method can be used with single selection list boxes only, |
bf84f3e2 | 118 | you should use wxListBox::GetSelections() for the list |
4cc4bfaf | 119 | boxes with wxLB_MULTIPLE style. |
3c4f71cc | 120 | |
4cc4bfaf | 121 | @see SetSelection(), GetStringSelection() |
23324ae1 | 122 | */ |
382f12e4 | 123 | virtual int GetSelection() const = 0; |
23324ae1 FM |
124 | |
125 | /** | |
32564189 VZ |
126 | Selects the item with the specified string in the control. |
127 | ||
128 | This method doesn't cause any command events to be emitted. | |
129 | ||
130 | Notice that this method is case-insensitive, i.e. the string is | |
131 | compared with all the elements of the control case-insensitively and | |
132 | the first matching entry is selected, even if it doesn't have exactly | |
133 | the same case as this string and there is an exact match afterwards. | |
3c4f71cc | 134 | |
bf84f3e2 VS |
135 | @param string |
136 | The string to select. | |
d29a9a8a BP |
137 | @return @true if the specified string has been selected, @false if it |
138 | wasn't found in the control. | |
23324ae1 | 139 | */ |
bf84f3e2 | 140 | bool SetStringSelection(const wxString& string); |
23324ae1 FM |
141 | |
142 | /** | |
143 | Returns the label of the selected item or an empty string if no item is | |
144 | selected. | |
3c4f71cc | 145 | |
4cc4bfaf | 146 | @see GetSelection() |
23324ae1 | 147 | */ |
bf84f3e2 | 148 | virtual wxString GetStringSelection() const; |
23324ae1 FM |
149 | |
150 | /** | |
bf84f3e2 VS |
151 | This is the same as SetSelection() and exists only because it is |
152 | slightly more natural for controls which support multiple selection. | |
23324ae1 | 153 | */ |
bf84f3e2 VS |
154 | void Select(int n); |
155 | ||
156 | //@} | |
157 | }; | |
158 | ||
159 | ||
160 | /** | |
dc215c81 | 161 | @class wxItemContainer |
bf84f3e2 VS |
162 | |
163 | This class is an abstract base class for some wxWidgets controls which | |
164 | contain several items such as wxListBox, wxCheckListBox, wxComboBox or | |
165 | wxChoice. It defines an interface which is implemented by all controls | |
166 | which have string subitems each of which may be selected. | |
23324ae1 | 167 | |
bf84f3e2 VS |
168 | wxItemContainer extends wxItemContainerImmutable interface with methods |
169 | for adding/removing items. | |
170 | ||
171 | It defines the methods for accessing the controls items and although each | |
172 | of the derived classes implements them differently, they still all conform | |
173 | to the same interface. | |
174 | ||
175 | The items in a wxItemContainer have (non-empty) string labels and, | |
176 | optionally, client data associated with them. Client data may be of two | |
177 | different kinds: either simple untyped (@c void *) pointers which are | |
178 | simply stored by the control but not used in any way by it, or typed | |
179 | pointers (wxClientData*) which are owned by the control meaning that the | |
180 | typed client data (and only it) will be deleted when an item is deleted | |
dc215c81 BP |
181 | using Delete() or the entire control is cleared using Clear(), which also |
182 | happens when it is destroyed. | |
bf84f3e2 VS |
183 | |
184 | Finally note that in the same control all items must have client data of | |
185 | the same type (typed or untyped), if any. This type is determined by the | |
dc215c81 BP |
186 | first call to Append() (the version with client data pointer) or |
187 | SetClientData(). | |
bf84f3e2 VS |
188 | |
189 | Note that this is not a control, it's a mixin interface that classes | |
190 | have to derive from in addition to wxControl or wxWindow. Convenience | |
191 | class wxControlWithItems is provided for this purpose. | |
192 | ||
193 | @library{wxcore} | |
194 | @category{ctrl} | |
195 | ||
196 | @see wxControlWithItems, wxItemContainerImmutable | |
197 | */ | |
198 | class wxItemContainer : public wxItemContainerImmutable | |
199 | { | |
200 | public: | |
23324ae1 | 201 | //@{ |
bf84f3e2 | 202 | |
23324ae1 | 203 | /** |
bf84f3e2 VS |
204 | Appends item into the control. |
205 | ||
206 | @param item | |
207 | String to add. | |
208 | ||
d29a9a8a BP |
209 | @return The return value is the index of the newly inserted item. |
210 | Note that this may be different from the last one if the | |
211 | control is sorted (e.g. has @c wxLB_SORT or @c wxCB_SORT | |
212 | style). | |
bf84f3e2 VS |
213 | */ |
214 | int Append(const wxString& item); | |
215 | ||
216 | /** | |
217 | Appends item into the control. | |
3c4f71cc | 218 | |
7c913512 | 219 | @param item |
4cc4bfaf | 220 | String to add. |
7c913512 | 221 | @param clientData |
bf84f3e2 | 222 | Pointer to client data to associate with the new item. |
3c4f71cc | 223 | |
d29a9a8a BP |
224 | @return The return value is the index of the newly inserted item. |
225 | Note that this may be different from the last one if the | |
226 | control is sorted (e.g. has @c wxLB_SORT or @c wxCB_SORT | |
227 | style). | |
23324ae1 | 228 | */ |
bf84f3e2 VS |
229 | int Append(const wxString& item, void* clientData); |
230 | ||
231 | /** | |
232 | Appends item into the control. | |
233 | ||
234 | @param item | |
235 | String to add. | |
236 | @param clientData | |
237 | Pointer to client data to associate with the new item. | |
238 | ||
d29a9a8a BP |
239 | @return The return value is the index of the newly inserted item. |
240 | Note that this may be different from the last one if the | |
241 | control is sorted (e.g. has @c wxLB_SORT or @c wxCB_SORT | |
242 | style). | |
bf84f3e2 VS |
243 | */ |
244 | int Append(const wxString& item, wxClientData* clientData); | |
245 | ||
246 | /** | |
247 | Appends several items at once into the control. | |
248 | ||
249 | Notice that calling this method is usually much faster than appending | |
250 | them one by one if you need to add a lot of items. | |
251 | ||
252 | @param items | |
253 | Array of strings to insert. | |
254 | */ | |
882678eb | 255 | int Append(const wxArrayString& items); |
bf84f3e2 VS |
256 | |
257 | /** | |
258 | Appends several items at once into the control. | |
259 | ||
260 | Notice that calling this method is usually much faster than appending | |
261 | them one by one if you need to add a lot of items. | |
262 | ||
263 | @param items | |
264 | Array of strings to insert. | |
265 | @param clientData | |
266 | Array of client data pointers of the same size as @a items to | |
267 | associate with the new items. | |
268 | */ | |
882678eb | 269 | int Append(const wxArrayString& items, void **clientData); |
bf84f3e2 VS |
270 | |
271 | /** | |
272 | Appends several items at once into the control. | |
273 | ||
274 | Notice that calling this method is usually much faster than appending | |
275 | them one by one if you need to add a lot of items. | |
276 | ||
277 | @param items | |
278 | Array of strings to insert. | |
279 | @param clientData | |
280 | Array of client data pointers of the same size as @a items to | |
281 | associate with the new items. | |
282 | */ | |
882678eb | 283 | int Append(const wxArrayString& items, wxClientData **clientData); |
bf84f3e2 VS |
284 | |
285 | /** | |
286 | Appends several items at once into the control. | |
287 | ||
288 | Notice that calling this method is usually much faster than appending | |
289 | them one by one if you need to add a lot of items. | |
290 | ||
291 | @param n | |
292 | Number of items in the @a items array. | |
293 | @param items | |
294 | Array of strings of size @a n. | |
295 | */ | |
882678eb | 296 | int Append(unsigned int n, const wxString* items); |
bf84f3e2 VS |
297 | |
298 | /** | |
299 | Appends several items at once into the control. | |
300 | ||
301 | Notice that calling this method is usually much faster than appending | |
302 | them one by one if you need to add a lot of items. | |
303 | ||
304 | @param n | |
305 | Number of items in the @a items array. | |
306 | @param items | |
307 | Array of strings of size @a n. | |
308 | @param clientData | |
309 | Array of client data pointers of size @a n to associate with the | |
310 | new items. | |
311 | */ | |
882678eb FM |
312 | int Append(unsigned int n, const wxString* items, |
313 | void** clientData); | |
bf84f3e2 VS |
314 | |
315 | /** | |
316 | Appends several items at once into the control. | |
317 | ||
318 | Notice that calling this method is usually much faster than appending | |
319 | them one by one if you need to add a lot of items. | |
320 | ||
321 | @param n | |
322 | Number of items in the @a items array. | |
323 | @param items | |
324 | Array of strings of size @a n. | |
325 | @param clientData | |
326 | Array of client data pointers of size @a n to associate with the | |
327 | new items. | |
328 | */ | |
882678eb | 329 | int Append(unsigned int n, const wxString* items, |
4cc4bfaf | 330 | wxClientData** clientData); |
23324ae1 FM |
331 | //@} |
332 | ||
333 | /** | |
bf84f3e2 VS |
334 | Removes all items from the control. |
335 | Clear() also deletes the client data of the existing items if it is | |
336 | owned by the control. | |
23324ae1 | 337 | */ |
bf84f3e2 | 338 | void Clear(); |
23324ae1 FM |
339 | |
340 | /** | |
bf84f3e2 VS |
341 | Deletes an item from the control. |
342 | ||
343 | The client data associated with the item will be also deleted if it is | |
344 | owned by the control. Note that it is an error (signalled by an assert | |
345 | failure in debug builds) to remove an item with the index negative or | |
346 | greater or equal than the number of items in the control. | |
347 | ||
348 | @param n | |
349 | The zero-based item index. | |
350 | ||
351 | @see Clear() | |
23324ae1 | 352 | */ |
bf84f3e2 | 353 | void Delete(unsigned int n); |
23324ae1 | 354 | |
9c99919a | 355 | |
ab989357 VZ |
356 | /** |
357 | Returns the client object associated with the given item and transfers | |
358 | its ownership to the caller. | |
359 | ||
360 | This method, unlike GetClientObject(), expects the caller to delete the | |
361 | returned pointer. It also replaces the internally stored pointer with | |
362 | @NULL, i.e. completely detaches the client object pointer from the | |
363 | control. | |
364 | ||
365 | It's an error to call this method unless HasClientObjectData() returns | |
366 | @true. | |
367 | ||
368 | @param n | |
369 | The zero-based item index. | |
370 | @return The associated client object pointer to be deleted by caller or | |
371 | @NULL. | |
372 | ||
373 | @since 2.9.2 | |
374 | */ | |
375 | wxClientData *DetachClientObject(unsigned int n); | |
376 | ||
9c99919a RR |
377 | /** |
378 | Returns true, if either untyped data (@c void*) or object data (wxClientData*) | |
379 | is associated with the items of the control. | |
380 | */ | |
381 | bool HasClientData() const; | |
ab989357 | 382 | |
9c99919a | 383 | /** |
ab989357 VZ |
384 | Returns true, if object data is associated with the items of the |
385 | control. | |
386 | ||
387 | Object data pointers have the type @c wxClientData* instead of @c void* | |
388 | and, importantly, are owned by the control, i.e. will be deleted by it, | |
389 | unlike their untyped counterparts. | |
9c99919a RR |
390 | */ |
391 | bool HasClientObjectData() const; | |
392 | ||
393 | /** | |
ab989357 | 394 | Returns true, if untyped data (@c void*) |
9c99919a RR |
395 | is associated with the items of the control. |
396 | */ | |
397 | bool HasClientUntypedData() const; | |
398 | ||
399 | ||
23324ae1 | 400 | //@{ |
bf84f3e2 | 401 | |
23324ae1 | 402 | /** |
bf84f3e2 VS |
403 | Returns a pointer to the client data associated with the given item (if |
404 | any). It is an error to call this function for a control which doesn't | |
405 | have untyped client data at all although it is OK to call it even if | |
406 | the given item doesn't have any client data associated with it (but | |
407 | other items do). | |
3c4f71cc | 408 | |
7c913512 | 409 | @param n |
bf84f3e2 VS |
410 | The zero-based position of the item. |
411 | ||
d29a9a8a | 412 | @return A pointer to the client data, or @NULL if not present. |
23324ae1 | 413 | */ |
bf84f3e2 VS |
414 | void* GetClientData(unsigned int n) const; |
415 | ||
416 | /** | |
417 | Returns a pointer to the client data associated with the given item (if | |
418 | any). It is an error to call this function for a control which doesn't | |
419 | have typed client data at all although it is OK to call it even if the | |
420 | given item doesn't have any client data associated with it (but other | |
421 | items do). | |
422 | ||
ab989357 VZ |
423 | Notice that the returned pointer is still owned by the control and will |
424 | be deleted by it, use DetachClientObject() if you want to remove the | |
425 | pointer from the control. | |
426 | ||
bf84f3e2 VS |
427 | @param n |
428 | The zero-based position of the item. | |
429 | ||
d29a9a8a | 430 | @return A pointer to the client data, or @NULL if not present. |
bf84f3e2 VS |
431 | */ |
432 | wxClientData* GetClientObject(unsigned int n) const; | |
23324ae1 FM |
433 | |
434 | /** | |
bf84f3e2 VS |
435 | Associates the given untyped client data pointer with the given item. |
436 | Note that it is an error to call this function if any typed client data | |
437 | pointers had been associated with the control items before. | |
3c4f71cc | 438 | |
7c913512 | 439 | @param n |
4cc4bfaf | 440 | The zero-based item index. |
7c913512 | 441 | @param data |
4cc4bfaf | 442 | The client data to associate with the item. |
23324ae1 | 443 | */ |
4cc4bfaf | 444 | void SetClientData(unsigned int n, void* data); |
23324ae1 FM |
445 | |
446 | /** | |
447 | Associates the given typed client data pointer with the given item: the | |
bf84f3e2 VS |
448 | @a data object will be deleted when the item is deleted (either |
449 | explicitly by using Delete() or implicitly when the control itself is | |
450 | destroyed). Note that it is an error to call this function if any | |
451 | untyped client data pointers had been associated with the control items | |
452 | before. | |
3c4f71cc | 453 | |
7c913512 | 454 | @param n |
4cc4bfaf | 455 | The zero-based item index. |
7c913512 | 456 | @param data |
4cc4bfaf | 457 | The client data to associate with the item. |
23324ae1 | 458 | */ |
4cc4bfaf | 459 | void SetClientObject(unsigned int n, wxClientData* data); |
23324ae1 | 460 | |
bf84f3e2 VS |
461 | //@} |
462 | ||
463 | //@{ | |
464 | ||
465 | /** | |
466 | Inserts item into the control. | |
467 | ||
468 | @param item | |
469 | String to add. | |
470 | @param pos | |
471 | Position to insert item before, zero based. | |
472 | ||
d29a9a8a BP |
473 | @return The return value is the index of the newly inserted item. |
474 | If the insertion failed for some reason, -1 is returned. | |
bf84f3e2 VS |
475 | */ |
476 | int Insert(const wxString& item, unsigned int pos); | |
477 | ||
478 | /** | |
479 | Inserts item into the control. | |
480 | ||
481 | @param item | |
482 | String to add. | |
483 | @param pos | |
484 | Position to insert item before, zero based. | |
485 | @param clientData | |
486 | Pointer to client data to associate with the new item. | |
487 | ||
d29a9a8a BP |
488 | @return The return value is the index of the newly inserted item. |
489 | If the insertion failed for some reason, -1 is returned. | |
bf84f3e2 VS |
490 | */ |
491 | int Insert(const wxString& item, unsigned int pos, void* clientData); | |
492 | ||
493 | /** | |
494 | Inserts item into the control. | |
495 | ||
496 | @param item | |
497 | String to add. | |
498 | @param pos | |
499 | Position to insert item before, zero based. | |
500 | @param clientData | |
501 | Pointer to client data to associate with the new item. | |
502 | ||
d29a9a8a BP |
503 | @return The return value is the index of the newly inserted item. |
504 | If the insertion failed for some reason, -1 is returned. | |
bf84f3e2 VS |
505 | */ |
506 | int Insert(const wxString& item, unsigned int pos, | |
507 | wxClientData* clientData); | |
508 | ||
509 | /** | |
510 | Inserts several items at once into the control. | |
511 | ||
512 | Notice that calling this method is usually much faster than inserting | |
513 | them one by one if you need to insert a lot of items. | |
514 | ||
515 | @param items | |
516 | Array of strings to insert. | |
517 | @param pos | |
518 | Position to insert the items before, zero based. | |
a6c4ae18 VZ |
519 | @return The return value is the index of the last inserted item. |
520 | If the insertion failed for some reason, -1 is returned. | |
bf84f3e2 | 521 | */ |
882678eb | 522 | int Insert(const wxArrayString& items, unsigned int pos); |
bf84f3e2 VS |
523 | |
524 | /** | |
525 | Inserts several items at once into the control. | |
526 | ||
527 | Notice that calling this method is usually much faster than inserting | |
528 | them one by one if you need to insert a lot of items. | |
529 | ||
530 | @param items | |
531 | Array of strings to insert. | |
532 | @param pos | |
533 | Position to insert the items before, zero based. | |
534 | @param clientData | |
535 | Array of client data pointers of the same size as @a items to | |
536 | associate with the new items. | |
a6c4ae18 VZ |
537 | @return The return value is the index of the last inserted item. |
538 | If the insertion failed for some reason, -1 is returned. | |
bf84f3e2 | 539 | */ |
882678eb | 540 | int Insert(const wxArrayString& items, unsigned int pos, |
bf84f3e2 VS |
541 | void **clientData); |
542 | ||
23324ae1 | 543 | /** |
bf84f3e2 VS |
544 | Inserts several items at once into the control. |
545 | ||
546 | Notice that calling this method is usually much faster than inserting | |
547 | them one by one if you need to insert a lot of items. | |
548 | ||
549 | @param items | |
550 | Array of strings to insert. | |
551 | @param pos | |
552 | Position to insert the items before, zero based. | |
553 | @param clientData | |
554 | Array of client data pointers of the same size as @a items to | |
555 | associate with the new items. | |
a6c4ae18 VZ |
556 | @return The return value is the index of the last inserted item. |
557 | If the insertion failed for some reason, -1 is returned. | |
bf84f3e2 | 558 | */ |
882678eb | 559 | int Insert(const wxArrayString& items, unsigned int pos, |
bf84f3e2 VS |
560 | wxClientData **clientData); |
561 | ||
562 | /** | |
563 | Inserts several items at once into the control. | |
564 | ||
565 | Notice that calling this method is usually much faster than inserting | |
566 | them one by one if you need to insert a lot of items. | |
3c4f71cc | 567 | |
7c913512 | 568 | @param n |
bf84f3e2 VS |
569 | Number of items in the @a items array. |
570 | @param items | |
571 | Array of strings of size @a n. | |
572 | @param pos | |
573 | Position to insert the items before, zero based. | |
a6c4ae18 VZ |
574 | @return The return value is the index of the last inserted item. |
575 | If the insertion failed for some reason, -1 is returned. | |
bf84f3e2 | 576 | */ |
882678eb | 577 | int Insert(unsigned int n, const wxString* items, |
bf84f3e2 | 578 | unsigned int pos); |
3c4f71cc | 579 | |
bf84f3e2 VS |
580 | /** |
581 | Inserts several items at once into the control. | |
582 | ||
583 | Notice that calling this method is usually much faster than inserting | |
584 | them one by one if you need to insert a lot of items. | |
585 | ||
586 | @param n | |
587 | Number of items in the @a items array. | |
588 | @param items | |
589 | Array of strings of size @a n. | |
590 | @param pos | |
591 | Position to insert the new items before, zero based. | |
592 | @param clientData | |
593 | Array of client data pointers of size @a n to associate with the | |
594 | new items. | |
a6c4ae18 VZ |
595 | @return The return value is the index of the last inserted item. |
596 | If the insertion failed for some reason, -1 is returned. | |
23324ae1 | 597 | */ |
882678eb | 598 | int Insert(unsigned int n, const wxString* items, |
bf84f3e2 VS |
599 | unsigned int pos, |
600 | void** clientData); | |
23324ae1 FM |
601 | |
602 | /** | |
bf84f3e2 VS |
603 | Inserts several items at once into the control. |
604 | ||
605 | Notice that calling this method is usually much faster than inserting | |
606 | them one by one if you need to insert a lot of items. | |
3c4f71cc | 607 | |
7c913512 | 608 | @param n |
bf84f3e2 VS |
609 | Number of items in the @a items array. |
610 | @param items | |
611 | Array of strings of size @a n. | |
612 | @param pos | |
613 | Position to insert the new items before, zero based. | |
614 | @param clientData | |
615 | Array of client data pointers of size @a n to associate with the | |
616 | new items. | |
a6c4ae18 VZ |
617 | @return The return value is the index of the last inserted item. |
618 | If the insertion failed for some reason, -1 is returned. | |
23324ae1 | 619 | */ |
882678eb | 620 | int Insert(unsigned int n, const wxString* items, |
bf84f3e2 VS |
621 | unsigned int pos, |
622 | wxClientData** clientData); | |
623 | //@} | |
23324ae1 | 624 | |
bf84f3e2 | 625 | //@{ |
23324ae1 | 626 | /** |
bf84f3e2 | 627 | Replaces the current control contents with the given items. |
3c4f71cc | 628 | |
bf84f3e2 VS |
629 | Notice that calling this method is usually much faster than appending |
630 | them one by one if you need to add a lot of items. | |
3c4f71cc | 631 | |
bf84f3e2 VS |
632 | @param items |
633 | Array of strings to insert. | |
23324ae1 | 634 | */ |
bf84f3e2 VS |
635 | void Set(const wxArrayString& items); |
636 | ||
637 | /** | |
638 | Replaces the current control contents with the given items. | |
639 | ||
640 | Notice that calling this method is usually much faster than appending | |
641 | them one by one if you need to add a lot of items. | |
642 | ||
643 | @param items | |
644 | Array of strings to insert. | |
645 | @param clientData | |
646 | Array of client data pointers of the same size as @a items to | |
647 | associate with the new items. | |
648 | */ | |
649 | void Set(const wxArrayString& items, void **clientData); | |
650 | ||
651 | /** | |
652 | Replaces the current control contents with the given items. | |
653 | ||
654 | Notice that calling this method is usually much faster than appending | |
655 | them one by one if you need to add a lot of items. | |
656 | ||
657 | @param items | |
658 | Array of strings to insert. | |
659 | @param clientData | |
660 | Array of client data pointers of the same size as @a items to | |
661 | associate with the new items. | |
662 | */ | |
663 | void Set(const wxArrayString& items, wxClientData **clientData); | |
664 | ||
665 | /** | |
666 | Replaces the current control contents with the given items. | |
667 | ||
668 | Notice that calling this method is usually much faster than appending | |
669 | them one by one if you need to add a lot of items. | |
670 | ||
671 | @param n | |
672 | Number of items in the @a items array. | |
673 | @param items | |
674 | Array of strings of size @a n. | |
675 | */ | |
676 | void Set(unsigned int n, const wxString* items); | |
677 | ||
678 | /** | |
679 | Replaces the current control contents with the given items. | |
680 | ||
681 | Notice that calling this method is usually much faster than appending | |
682 | them one by one if you need to add a lot of items. | |
683 | ||
684 | @param n | |
685 | Number of items in the @a items array. | |
686 | @param items | |
687 | Array of strings of size @a n. | |
688 | @param clientData | |
689 | Array of client data pointers of size @a n to associate with the | |
690 | new items. | |
691 | */ | |
692 | void Set(unsigned int n, const wxString* items, void** clientData); | |
693 | ||
694 | /** | |
695 | Replaces the current control contents with the given items. | |
696 | ||
697 | Notice that calling this method is usually much faster than appending | |
698 | them one by one if you need to add a lot of items. | |
699 | ||
700 | @param n | |
701 | Number of items in the @a items array. | |
702 | @param items | |
703 | Array of strings of size @a n. | |
704 | @param clientData | |
705 | Array of client data pointers of size @a n to associate with the | |
706 | new items. | |
707 | */ | |
708 | void Set(unsigned int n, const wxString* items, wxClientData** clientData); | |
709 | //@} | |
710 | }; | |
711 | ||
712 | ||
713 | /** | |
714 | @class wxControlWithItems | |
bf84f3e2 VS |
715 | |
716 | This is convenience class that derives from both wxControl and | |
717 | wxItemContainer. It is used as basis for some wxWidgets controls | |
718 | (wxChoice and wxListBox). | |
719 | ||
720 | @library{wxcore} | |
721 | @category{ctrl} | |
722 | ||
723 | @see wxItemContainer, wxItemContainerImmutable | |
724 | */ | |
725 | class wxControlWithItems : public wxControl, public wxItemContainer | |
726 | { | |
23324ae1 | 727 | }; |
e54c96f1 | 728 |