]> git.saurik.com Git - wxWidgets.git/blame_incremental - src/gtk/listbox.cpp
there is no need to convert wxArrayString to wxString[] explicitly any more, wx contr...
[wxWidgets.git] / src / gtk / listbox.cpp
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: src/gtk/listbox.cpp
3// Purpose:
4// Author: Robert Roebling
5// Modified By: Ryan Norton (GtkTreeView implementation)
6// Id: $Id$
7// Copyright: (c) 1998 Robert Roebling
8// Licence: wxWindows licence
9/////////////////////////////////////////////////////////////////////////////
10
11// For compilers that support precompilation, includes "wx.h".
12#include "wx/wxprec.h"
13
14#if wxUSE_LISTBOX
15
16#include "wx/listbox.h"
17
18#ifndef WX_PRECOMP
19 #include "wx/dynarray.h"
20 #include "wx/intl.h"
21 #include "wx/log.h"
22 #include "wx/utils.h"
23 #include "wx/settings.h"
24 #include "wx/checklst.h"
25 #include "wx/arrstr.h"
26#endif
27
28#include "wx/gtk/private.h"
29#include "wx/gtk/treeentry_gtk.h"
30
31#if wxUSE_TOOLTIPS
32 #include "wx/tooltip.h"
33#endif
34
35#include <gdk/gdk.h>
36#include <gtk/gtk.h>
37#include <gdk/gdkkeysyms.h>
38
39//-----------------------------------------------------------------------------
40// data
41//-----------------------------------------------------------------------------
42
43extern bool g_blockEventsOnDrag;
44extern bool g_blockEventsOnScroll;
45
46
47
48//-----------------------------------------------------------------------------
49// Macro to tell which row the strings are in (1 if native checklist, 0 if not)
50//-----------------------------------------------------------------------------
51
52#if wxUSE_CHECKLISTBOX && wxUSE_NATIVEGTKCHECKLIST
53# define WXLISTBOX_DATACOLUMN_ARG(x) (x->m_hasCheckBoxes ? 1 : 0)
54#else
55# define WXLISTBOX_DATACOLUMN_ARG(x) (0)
56#endif // wxUSE_CHECKLISTBOX && wxUSE_NATIVEGTKCHECKLIST
57
58#define WXLISTBOX_DATACOLUMN WXLISTBOX_DATACOLUMN_ARG(this)
59
60//-----------------------------------------------------------------------------
61// "row-activated"
62//-----------------------------------------------------------------------------
63
64extern "C" {
65static void
66gtk_listbox_row_activated_callback(GtkTreeView *treeview,
67 GtkTreePath *path,
68 GtkTreeViewColumn *col,
69 wxListBox *listbox)
70{
71 if (g_isIdle) wxapp_install_idle_handler();
72
73 if (g_blockEventsOnDrag) return;
74 if (g_blockEventsOnScroll) return;
75
76 if (!listbox->m_hasVMT) return;
77
78 //Notes:
79 //1) This is triggered by either a double-click or a space press
80 //2) We handle both here because
81 //2a) in the case of a space/keypress we can't really know
82 // which item was pressed on because we can't get coords
83 // from a keyevent
84 //2b) It seems more correct
85
86 int sel = gtk_tree_path_get_indices(path)[0];
87
88 if(!listbox->m_spacePressed)
89 {
90 //Assume it was double-click
91 wxCommandEvent event(wxEVT_COMMAND_LISTBOX_DOUBLECLICKED, listbox->GetId() );
92 event.SetEventObject( listbox );
93
94 if(listbox->IsSelected(sel))
95 {
96 GtkTreeEntry* entry = listbox->GtkGetEntry(sel);
97
98 if(entry)
99 {
100 event.SetInt(sel);
101 event.SetString(wxConvUTF8.cMB2WX(gtk_tree_entry_get_label(entry)));
102
103 if ( listbox->HasClientObjectData() )
104 event.SetClientObject(
105 (wxClientData*) gtk_tree_entry_get_userdata(entry) );
106 else if ( listbox->HasClientUntypedData() )
107 event.SetClientData( gtk_tree_entry_get_userdata(entry) );
108 g_object_unref (entry);
109 }
110 else
111 {
112 wxLogSysError(wxT("Internal error - could not get entry for double-click"));
113 event.SetInt(-1);
114 }
115 }
116 else
117 event.SetInt(-1);
118
119 listbox->GetEventHandler()->ProcessEvent( event );
120 }
121 else
122 {
123 listbox->m_spacePressed = false; //don't block selection behaviour anymore
124
125 //Space was pressed - toggle the appropriate checkbox and the selection
126#if wxUSE_CHECKLISTBOX //Do it for both native and non-native
127 if (listbox->m_hasCheckBoxes)
128 {
129 wxCheckListBox *clb = (wxCheckListBox *)listbox;
130
131 clb->Check( sel, !clb->IsChecked(sel) );
132
133 wxCommandEvent new_event( wxEVT_COMMAND_CHECKLISTBOX_TOGGLED, listbox->GetId() );
134 new_event.SetEventObject( listbox );
135 new_event.SetInt( sel );
136 listbox->GetEventHandler()->ProcessEvent( new_event );
137 }
138#endif // wxUSE_CHECKLISTBOX
139
140 if( (((listbox->GetWindowStyleFlag() & wxLB_MULTIPLE) != 0) ||
141 ((listbox->GetWindowStyleFlag() & wxLB_EXTENDED) != 0)) )
142 {
143 //toggle the selection + send event
144 listbox->GtkSetSelection(sel, !listbox->IsSelected( sel ), false);
145 }
146 }
147}
148}
149
150//-----------------------------------------------------------------------------
151// "button_press_event"
152//-----------------------------------------------------------------------------
153
154extern "C" {
155static gint
156gtk_listbox_button_press_callback( GtkWidget *widget,
157 GdkEventButton *gdk_event,
158 wxListBox *listbox )
159{
160 // don't need to install idle handler, its done from "event" signal
161
162 if (g_blockEventsOnDrag) return FALSE;
163 if (g_blockEventsOnScroll) return FALSE;
164
165 if (!listbox->m_hasVMT) return FALSE;
166
167 //Just to be on the safe side - it should be unset in the activate callback
168 //but we don't want any obscure bugs if it doesn't get called somehow...
169 listbox->m_spacePressed = false;
170
171#if wxUSE_CHECKLISTBOX && !wxUSE_NATIVEGTKCHECKLIST
172 if ((listbox->m_hasCheckBoxes) && (gdk_event->x < 15) && (gdk_event->type != GDK_2BUTTON_PRESS))
173 {
174 GtkTreePath* path;
175 gtk_tree_view_get_path_at_pos(GTK_TREE_VIEW(widget),
176 (gint)gdk_event->x, (gint)gdk_event->y,
177 &path, NULL, NULL, NULL);
178 int sel = gtk_tree_path_get_indices(path)[0];
179 gtk_tree_path_free(path);
180
181 wxCheckListBox *clb = (wxCheckListBox *)listbox;
182
183 clb->Check( sel, !clb->IsChecked(sel) );
184
185 wxCommandEvent event( wxEVT_COMMAND_CHECKLISTBOX_TOGGLED, listbox->GetId() );
186 event.SetEventObject( listbox );
187 event.SetInt( sel );
188 listbox->GetEventHandler()->ProcessEvent( event );
189 }
190#endif // wxUSE_CHECKLISTBOX && !wxUSE_NATIVEGTKCHECKLIST
191
192 return FALSE;
193}
194}
195
196//-----------------------------------------------------------------------------
197// "key_press_event"
198//-----------------------------------------------------------------------------
199
200extern "C" {
201static gint
202gtk_listbox_key_press_callback( GtkWidget *widget,
203 GdkEventKey *gdk_event,
204 wxListBox *listbox )
205{
206 // don't need to install idle handler, its done from "event" signal
207
208 if (g_blockEventsOnDrag) return FALSE;
209
210
211 bool ret = false;
212
213 if ((gdk_event->keyval == GDK_Tab) || (gdk_event->keyval == GDK_ISO_Left_Tab))
214 {
215 wxNavigationKeyEvent new_event;
216 /* GDK reports GDK_ISO_Left_Tab for SHIFT-TAB */
217 new_event.SetDirection( (gdk_event->keyval == GDK_Tab) );
218 /* CTRL-TAB changes the (parent) window, i.e. switch notebook page */
219 new_event.SetWindowChange( (gdk_event->state & GDK_CONTROL_MASK) );
220 new_event.SetCurrentFocus( listbox );
221 ret = listbox->GetEventHandler()->ProcessEvent( new_event );
222 }
223
224 if ((gdk_event->keyval == GDK_Return) && (!ret))
225 {
226 // eat return in all modes (RN:WHY?)
227 ret = true;
228 }
229
230 // Check or uncheck item with SPACE
231 if (gdk_event->keyval == ' ')
232 {
233 //In the keyevent we don't know the index of the item
234 //and the activated event gets called anyway...
235 //
236 //Also, activating with the space causes the treeview to
237 //unselect all the items and then select the item in question
238 //wx's behaviour is to just toggle the item's selection state
239 //and leave the others alone
240 listbox->m_spacePressed = true;
241 }
242
243 return ret;
244}
245}
246
247//-----------------------------------------------------------------------------
248// "select" and "deselect"
249//-----------------------------------------------------------------------------
250
251extern "C" {
252static gboolean gtk_listitem_select_cb( GtkTreeSelection* selection,
253 GtkTreeModel* model,
254 GtkTreePath* path,
255 gboolean is_selected,
256 wxListBox *listbox )
257{
258 if (g_isIdle) wxapp_install_idle_handler();
259
260 if (!listbox->m_hasVMT) return TRUE;
261 if (g_blockEventsOnDrag) return TRUE;
262
263 if (listbox->m_spacePressed) return FALSE; //see keyevent callback
264 if (listbox->m_blockEvent) return TRUE;
265
266 // NB: wxdocs explicitly say that this event only gets sent when
267 // something is actually selected, plus the controls example
268 // assumes so and passes -1 to the dogetclientdata funcs if not
269
270 // OK, so basically we need to do a bit of a run-around here as
271 // 1) is_selected says whether the item(s?) are CURRENTLY selected -
272 // i.e. if is_selected is FALSE then the item is going to be
273 // selected right now!
274 // 2) However, since it is not already selected and the user
275 // will expect it to be we need to manually select it and
276 // return FALSE telling GTK we handled the selection
277 if (is_selected) return TRUE;
278
279 int nIndex = gtk_tree_path_get_indices(path)[0];
280 GtkTreeEntry* entry = listbox->GtkGetEntry(nIndex);
281
282 if(entry)
283 {
284 //Now, as mentioned above, we manually select the row that is/was going
285 //to be selected anyway by GTK
286 listbox->m_blockEvent = true; //if we don't block events we will lock the
287 //app due to recursion!!
288
289 GtkTreeSelection* selection =
290 gtk_tree_view_get_selection(listbox->m_treeview);
291 GtkTreeIter iter;
292 gtk_tree_model_get_iter(GTK_TREE_MODEL(listbox->m_liststore), &iter, path);
293 gtk_tree_selection_select_iter(selection, &iter);
294
295 listbox->m_blockEvent = false;
296
297 //Finally, send the wx event
298 wxCommandEvent event(wxEVT_COMMAND_LISTBOX_SELECTED, listbox->GetId() );
299 event.SetEventObject( listbox );
300
301 // indicate whether this is a selection or a deselection
302 event.SetExtraLong( 1 );
303
304 event.SetInt(nIndex);
305 event.SetString(wxConvUTF8.cMB2WX(gtk_tree_entry_get_label(entry)));
306
307 if ( listbox->HasClientObjectData() )
308 event.SetClientObject(
309 (wxClientData*) gtk_tree_entry_get_userdata(entry)
310 );
311 else if ( listbox->HasClientUntypedData() )
312 event.SetClientData( gtk_tree_entry_get_userdata(entry) );
313
314 listbox->GetEventHandler()->ProcessEvent( event );
315
316 g_object_unref (entry);
317 return FALSE; //We handled it/did it manually
318 }
319
320 return TRUE; //allow selection to change
321}
322}
323
324//-----------------------------------------------------------------------------
325// GtkTreeEntry destruction (to destroy client data)
326//-----------------------------------------------------------------------------
327
328extern "C" {
329static void gtk_tree_entry_destroy_cb(GtkTreeEntry* entry,
330 wxListBox* listbox)
331{
332 if(listbox->HasClientObjectData())
333 {
334 gpointer userdata = gtk_tree_entry_get_userdata(entry);
335 if(userdata)
336 delete (wxClientData *)userdata;
337 }
338}
339}
340
341//-----------------------------------------------------------------------------
342// Sorting callback (standard CmpNoCase return value)
343//-----------------------------------------------------------------------------
344
345extern "C" {
346static gint gtk_listbox_sort_callback(GtkTreeModel *model,
347 GtkTreeIter *a,
348 GtkTreeIter *b,
349 wxListBox *listbox)
350{
351 GtkTreeEntry* entry;
352 GtkTreeEntry* entry2;
353
354 gtk_tree_model_get(GTK_TREE_MODEL(listbox->m_liststore),
355 a,
356 WXLISTBOX_DATACOLUMN_ARG(listbox),
357 &entry, -1);
358 gtk_tree_model_get(GTK_TREE_MODEL(listbox->m_liststore),
359 b,
360 WXLISTBOX_DATACOLUMN_ARG(listbox),
361 &entry2, -1);
362 wxCHECK_MSG(entry, 0, wxT("Could not get entry"));
363 wxCHECK_MSG(entry2, 0, wxT("Could not get entry2"));
364
365 //We compare collate keys here instead of calling g_utf8_collate
366 //as it is rather slow (and even the docs reccommend this)
367 int ret = strcasecmp(gtk_tree_entry_get_collate_key(entry),
368 gtk_tree_entry_get_collate_key(entry2));
369
370 g_object_unref (entry);
371 g_object_unref (entry2);
372
373 return ret;
374}
375}
376
377//-----------------------------------------------------------------------------
378// Searching callback (TRUE == not equal, FALSE == equal)
379//-----------------------------------------------------------------------------
380
381extern "C" {
382static gboolean gtk_listbox_searchequal_callback(GtkTreeModel* model,
383 gint column,
384 const gchar* key,
385 GtkTreeIter* iter,
386 wxListBox* listbox)
387{
388 GtkTreeEntry* entry;
389
390 gtk_tree_model_get(GTK_TREE_MODEL(listbox->m_liststore),
391 iter,
392 WXLISTBOX_DATACOLUMN_ARG(listbox),
393 &entry, -1);
394 wxCHECK_MSG(entry, 0, wxT("Could not get entry"));
395 wxGtkString keycollatekey(g_utf8_collate_key(key, -1));
396
397 int ret = strcasecmp(keycollatekey,
398 gtk_tree_entry_get_collate_key(entry));
399
400 g_object_unref (entry);
401
402 return ret != 0;
403}
404}
405
406//-----------------------------------------------------------------------------
407// wxListBox
408//-----------------------------------------------------------------------------
409
410IMPLEMENT_DYNAMIC_CLASS(wxListBox, wxControl)
411
412// ----------------------------------------------------------------------------
413// construction
414// ----------------------------------------------------------------------------
415
416void wxListBox::Init()
417{
418 m_treeview = (GtkTreeView*) NULL;
419#if wxUSE_CHECKLISTBOX
420 m_hasCheckBoxes = false;
421#endif // wxUSE_CHECKLISTBOX
422 m_spacePressed = false;
423}
424
425bool wxListBox::Create( wxWindow *parent, wxWindowID id,
426 const wxPoint &pos, const wxSize &size,
427 const wxArrayString& choices,
428 long style, const wxValidator& validator,
429 const wxString &name )
430{
431 wxCArrayString chs(choices);
432
433 return Create( parent, id, pos, size, chs.GetCount(), chs.GetStrings(),
434 style, validator, name );
435}
436
437bool wxListBox::Create( wxWindow *parent, wxWindowID id,
438 const wxPoint &pos, const wxSize &size,
439 int n, const wxString choices[],
440 long style, const wxValidator& validator,
441 const wxString &name )
442{
443 m_needParent = true;
444 m_acceptsFocus = true;
445 m_blockEvent = false;
446
447 if (!PreCreation( parent, pos, size ) ||
448 !CreateBase( parent, id, pos, size, style, validator, name ))
449 {
450 wxFAIL_MSG( wxT("wxListBox creation failed") );
451 return false;
452 }
453
454 m_widget = gtk_scrolled_window_new( (GtkAdjustment*) NULL, (GtkAdjustment*) NULL );
455 if (style & wxLB_ALWAYS_SB)
456 {
457 gtk_scrolled_window_set_policy( GTK_SCROLLED_WINDOW(m_widget),
458 GTK_POLICY_AUTOMATIC, GTK_POLICY_ALWAYS );
459 }
460 else
461 {
462 gtk_scrolled_window_set_policy( GTK_SCROLLED_WINDOW(m_widget),
463 GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC );
464 }
465
466
467 GtkScrolledWindowSetBorder(m_widget, style);
468
469 m_treeview = GTK_TREE_VIEW( gtk_tree_view_new( ) );
470
471 //wxListBox doesn't have a header :)
472 //NB: If enabled SetFirstItem doesn't work correctly
473 gtk_tree_view_set_headers_visible(m_treeview, FALSE);
474
475#if wxUSE_CHECKLISTBOX && wxUSE_NATIVEGTKCHECKLIST
476 if(m_hasCheckBoxes)
477 ((wxCheckListBox*)this)->DoCreateCheckList();
478#endif // wxUSE_CHECKLISTBOX && wxUSE_NATIVEGTKCHECKLIST
479
480 // Create the data column
481 gtk_tree_view_insert_column_with_attributes(m_treeview, -1, "",
482 gtk_cell_renderer_text_new(),
483 "text",
484 WXLISTBOX_DATACOLUMN, NULL);
485
486 // Now create+set the model (GtkListStore) - first argument # of columns
487#if wxUSE_CHECKLISTBOX && wxUSE_NATIVEGTKCHECKLIST
488 if(m_hasCheckBoxes)
489 m_liststore = gtk_list_store_new(2, G_TYPE_BOOLEAN,
490 GTK_TYPE_TREE_ENTRY);
491 else
492#endif
493 m_liststore = gtk_list_store_new(1, GTK_TYPE_TREE_ENTRY);
494
495 gtk_tree_view_set_model(m_treeview, GTK_TREE_MODEL(m_liststore));
496
497 g_object_unref (m_liststore); //free on treeview destruction
498
499 // Disable the pop-up textctrl that enables searching - note that
500 // the docs specify that even if this disabled (which we are doing)
501 // the user can still have it through the start-interactive-search
502 // key binding...either way we want to provide a searchequal callback
503 // NB: If this is enabled a doubleclick event (activate) gets sent
504 // on a successful search
505 gtk_tree_view_set_search_column(m_treeview, WXLISTBOX_DATACOLUMN);
506 gtk_tree_view_set_search_equal_func(m_treeview,
507 (GtkTreeViewSearchEqualFunc) gtk_listbox_searchequal_callback,
508 this,
509 NULL);
510
511 gtk_tree_view_set_enable_search(m_treeview, FALSE);
512
513
514 GtkTreeSelection* selection = gtk_tree_view_get_selection( m_treeview );
515 gtk_tree_selection_set_select_function(selection,
516 (GtkTreeSelectionFunc)gtk_listitem_select_cb,
517 this, NULL); //NULL == destroycb
518
519 GtkSelectionMode mode;
520 if (style & wxLB_MULTIPLE)
521 {
522 mode = GTK_SELECTION_MULTIPLE;
523 }
524 else if (style & wxLB_EXTENDED)
525 {
526 mode = GTK_SELECTION_EXTENDED;
527 }
528 else
529 {
530 // if style was 0 set single mode
531 m_windowStyle |= wxLB_SINGLE;
532 mode = GTK_SELECTION_SINGLE;
533 }
534
535 gtk_tree_selection_set_mode( selection, mode );
536
537 //Handle sortable stuff
538 if(style & wxLB_SORT)
539 {
540 //Setup sorting in ascending (wx) order
541 gtk_tree_sortable_set_sort_column_id(GTK_TREE_SORTABLE(m_liststore),
542 WXLISTBOX_DATACOLUMN,
543 GTK_SORT_ASCENDING);
544
545 //Set the sort callback
546 gtk_tree_sortable_set_sort_func(GTK_TREE_SORTABLE(m_liststore),
547 WXLISTBOX_DATACOLUMN,
548 (GtkTreeIterCompareFunc) gtk_listbox_sort_callback,
549 this, //userdata
550 NULL //"destroy notifier"
551 );
552 }
553
554
555 gtk_container_add (GTK_CONTAINER (m_widget), GTK_WIDGET(m_treeview) );
556
557 gtk_widget_show( GTK_WIDGET(m_treeview) );
558 m_focusWidget = GTK_WIDGET(m_treeview);
559
560 wxListBox::DoInsertItems(wxArrayString(n, choices), 0); // insert initial items
561
562 //treeview-specific events
563 g_signal_connect(m_treeview, "row-activated",
564 G_CALLBACK(gtk_listbox_row_activated_callback), this);
565
566 // other events
567 g_signal_connect (m_treeview, "button_press_event",
568 G_CALLBACK (gtk_listbox_button_press_callback),
569 this);
570 g_signal_connect (m_treeview, "key_press_event",
571 G_CALLBACK (gtk_listbox_key_press_callback),
572 this);
573
574 m_parent->DoAddChild( this );
575
576 PostCreation(size);
577 SetBestSize(size); // need this too because this is a wxControlWithItems
578
579 return true;
580}
581
582wxListBox::~wxListBox()
583{
584 m_hasVMT = false;
585
586 Clear();
587}
588
589// ----------------------------------------------------------------------------
590// adding items
591// ----------------------------------------------------------------------------
592
593void wxListBox::GtkInsertItems(const wxArrayString& items,
594 void** clientData, unsigned int pos)
595{
596 wxCHECK_RET( m_treeview != NULL, wxT("invalid listbox") );
597
598 InvalidateBestSize();
599
600 // Create and set column ids and GValues
601
602 unsigned int nNum = items.GetCount();
603 unsigned int nCurCount = wxListBox::GetCount();
604 wxASSERT_MSG(pos <= nCurCount, wxT("Invalid index passed to wxListBox"));
605
606 GtkTreeIter* pIter = NULL; // append by default
607 GtkTreeIter iter;
608 if (pos != nCurCount)
609 {
610 gboolean res = gtk_tree_model_iter_nth_child(
611 GTK_TREE_MODEL(m_liststore),
612 &iter, NULL, //NULL = parent = get first
613 (int)pos );
614 if(!res)
615 {
616 wxLogSysError(wxT("internal wxListBox error in insertion"));
617 return;
618 }
619
620 pIter = &iter;
621 }
622
623 for (unsigned int i = 0; i < nNum; ++i)
624 {
625 wxString label = items[i];
626
627#if wxUSE_CHECKLISTBOX && !wxUSE_NATIVEGTKCHECKLIST
628 if (m_hasCheckBoxes)
629 {
630 label.Prepend(wxCHECKLBOX_STRING);
631 }
632#endif // wxUSE_CHECKLISTBOX
633
634
635 GtkTreeEntry* entry = gtk_tree_entry_new();
636 gtk_tree_entry_set_label(entry, wxConvUTF8.cWX2MB(label));
637 gtk_tree_entry_set_destroy_func(entry,
638 (GtkTreeEntryDestroy)gtk_tree_entry_destroy_cb,
639 this);
640
641 if (clientData)
642 gtk_tree_entry_set_userdata(entry, clientData[i]);
643
644 GtkTreeIter itercur;
645 gtk_list_store_insert_before(m_liststore, &itercur, pIter);
646
647#if wxUSE_CHECKLISTBOX && wxUSE_NATIVEGTKCHECKLIST
648 if (m_hasCheckBoxes)
649 {
650 gtk_list_store_set(m_liststore, &itercur,
651 0, FALSE, //FALSE == not toggled
652 1, entry, -1);
653 }
654 else
655#endif
656 gtk_list_store_set(m_liststore, &itercur,
657 0, entry, -1);
658
659 g_object_unref (entry); //liststore always refs :)
660 }
661}
662
663void wxListBox::DoInsertItems(const wxArrayString& items, unsigned int pos)
664{
665 wxCHECK_RET( IsValidInsert(pos), wxT("invalid index in wxListBox::InsertItems") );
666
667 GtkInsertItems(items, NULL, pos);
668}
669
670int wxListBox::DoAppend( const wxString& item )
671{
672 // Call DoInsertItems
673 unsigned int nWhere = wxListBox::GetCount();
674 wxArrayString aItems;
675 aItems.Add(item);
676 wxListBox::DoInsertItems(aItems, nWhere);
677 return nWhere;
678}
679
680void wxListBox::DoSetItems( const wxArrayString& items,
681 void **clientData)
682{
683 Clear();
684 GtkInsertItems(items, clientData, 0);
685}
686
687// ----------------------------------------------------------------------------
688// deleting items
689// ----------------------------------------------------------------------------
690
691void wxListBox::Clear()
692{
693 wxCHECK_RET( m_treeview != NULL, wxT("invalid listbox") );
694
695 InvalidateBestSize();
696
697 gtk_list_store_clear( m_liststore ); /* well, THAT was easy :) */
698}
699
700void wxListBox::Delete(unsigned int n)
701{
702 wxCHECK_RET( m_treeview != NULL, wxT("invalid listbox") );
703
704 InvalidateBestSize();
705
706 GtkTreeIter iter;
707 gboolean res = gtk_tree_model_iter_nth_child(
708 GTK_TREE_MODEL(m_liststore),
709 &iter, NULL, //NULL = parent = get first
710 n
711 );
712
713 wxCHECK_RET( res, wxT("wrong listbox index") );
714
715 //this returns false if iter is invalid (i.e. deleting item
716 //at end) but since we don't use iter, well... :)
717 gtk_list_store_remove(m_liststore, &iter);
718}
719
720// ----------------------------------------------------------------------------
721// get GtkTreeEntry from position (note: you need to g_unref it if valid)
722// ----------------------------------------------------------------------------
723
724struct _GtkTreeEntry* wxListBox::GtkGetEntry(int n) const
725{
726 GtkTreeIter iter;
727 gboolean res = gtk_tree_model_iter_nth_child(
728 GTK_TREE_MODEL(m_liststore),
729 &iter, NULL, //NULL = parent = get first
730 n );
731
732 if (!res)
733 {
734 wxLogDebug(wxT("gtk_tree_model_iter_nth_child failed\n")
735 wxT("Passed in value was:[%i] List size:[%u]"),
736 n, wxListBox::GetCount() );
737 return NULL;
738 }
739
740
741 GtkTreeEntry* entry = NULL;
742 gtk_tree_model_get(GTK_TREE_MODEL(m_liststore), &iter,
743 WXLISTBOX_DATACOLUMN, &entry, -1);
744
745 return entry;
746}
747
748// ----------------------------------------------------------------------------
749// client data
750// ----------------------------------------------------------------------------
751
752void* wxListBox::DoGetItemClientData(unsigned int n) const
753{
754 wxCHECK_MSG( IsValid(n), NULL,
755 wxT("Invalid index passed to GetItemClientData") );
756
757 GtkTreeEntry* entry = GtkGetEntry(n);
758 wxCHECK_MSG(entry, NULL, wxT("could not get entry"));
759
760 void* userdata = gtk_tree_entry_get_userdata( entry );
761 g_object_unref (entry);
762 return userdata;
763}
764
765wxClientData* wxListBox::DoGetItemClientObject(unsigned int n) const
766{
767 return (wxClientData*) wxListBox::DoGetItemClientData(n);
768}
769
770void wxListBox::DoSetItemClientData(unsigned int n, void* clientData)
771{
772 wxCHECK_RET( IsValid(n),
773 wxT("Invalid index passed to SetItemClientData") );
774
775 GtkTreeEntry* entry = GtkGetEntry(n);
776 wxCHECK_RET(entry, wxT("could not get entry"));
777
778 gtk_tree_entry_set_userdata( entry, clientData );
779 g_object_unref (entry);
780}
781
782void wxListBox::DoSetItemClientObject(unsigned int n, wxClientData* clientData)
783{
784 // wxItemContainer already deletes data for us
785 wxListBox::DoSetItemClientData(n, (void*) clientData);
786}
787
788// ----------------------------------------------------------------------------
789// string list access
790// ----------------------------------------------------------------------------
791
792void wxListBox::SetString(unsigned int n, const wxString &string)
793{
794 wxCHECK_RET( IsValid(n), wxT("invalid index in wxListBox::SetString") );
795 wxCHECK_RET( m_treeview != NULL, wxT("invalid listbox") );
796
797 GtkTreeEntry* entry = GtkGetEntry(n);
798 wxCHECK_RET( entry, wxT("wrong listbox index") );
799
800 wxString label = string;
801
802#if wxUSE_CHECKLISTBOX && !wxUSE_NATIVEGTKCHECKLIST
803 if (m_hasCheckBoxes)
804 label.Prepend(wxCHECKLBOX_STRING);
805#endif // wxUSE_CHECKLISTBOX
806
807 // RN: This may look wierd but the problem is that the TreeView
808 // doesn't resort or update when changed above and there is no real
809 // notification function...
810 void* userdata = gtk_tree_entry_get_userdata(entry);
811 gtk_tree_entry_set_userdata(entry, NULL); //don't delete on destroy
812 g_object_unref (entry);
813
814 bool bWasSelected = wxListBox::IsSelected(n);
815 wxListBox::Delete(n);
816
817 wxArrayString aItems;
818 aItems.Add(label);
819 GtkInsertItems(aItems, &userdata, n);
820 if (bWasSelected)
821 wxListBox::GtkSetSelection(n, true, true);
822}
823
824wxString wxListBox::GetString(unsigned int n) const
825{
826 wxCHECK_MSG( m_treeview != NULL, wxEmptyString, wxT("invalid listbox") );
827
828 GtkTreeEntry* entry = GtkGetEntry(n);
829 wxCHECK_MSG( entry, wxEmptyString, wxT("wrong listbox index") );
830
831 wxString label = wxGTK_CONV_BACK( gtk_tree_entry_get_label(entry) );
832
833#if wxUSE_CHECKLISTBOX && !wxUSE_NATIVEGTKCHECKLIST
834