]> git.saurik.com Git - wxWidgets.git/blame - src/gtk/listbox.cpp
fixed background rendering if GetThemeEnabled()=true with GTK2
[wxWidgets.git] / src / gtk / listbox.cpp
CommitLineData
c801d85f
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: listbox.cpp
3// Purpose:
4// Author: Robert Roebling
f96aa4d9
RR
5// Id: $Id$
6// Copyright: (c) 1998 Robert Roebling
65571936 7// Licence: wxWindows licence
c801d85f
KB
8/////////////////////////////////////////////////////////////////////////////
9
10
14f355c2 11#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
c801d85f
KB
12#pragma implementation "listbox.h"
13#endif
14
14f355c2
VS
15// For compilers that support precompilation, includes "wx.h".
16#include "wx/wxprec.h"
17
2da2f941 18#include "wx/defs.h"
dcf924a3
RR
19
20#if wxUSE_LISTBOX
21
2da2f941 22#include "wx/listbox.h"
dcf924a3 23#include "wx/dynarray.h"
2da2f941 24#include "wx/arrstr.h"
09cf7c58 25#include "wx/utils.h"
caaa4cfd
RR
26#include "wx/intl.h"
27#include "wx/checklst.h"
72a16063 28#include "wx/settings.h"
fab591c5 29#include "wx/gtk/private.h"
291a8f20
RR
30
31#if wxUSE_TOOLTIPS
b1170810 32#include "wx/tooltip.h"
291a8f20 33#endif
c801d85f 34
4a82abc8 35#include <gdk/gdk.h>
16c1f79c
RR
36#include <gtk/gtk.h>
37#include <gdk/gdkkeysyms.h>
83624f79 38
acfd422a
RR
39//-----------------------------------------------------------------------------
40// idle system
41//-----------------------------------------------------------------------------
42
43extern void wxapp_install_idle_handler();
44extern bool g_isIdle;
45
66bd6b93
RR
46//-----------------------------------------------------------------------------
47// data
48//-----------------------------------------------------------------------------
49
d7fa7eaa
RR
50extern bool g_blockEventsOnDrag;
51extern bool g_blockEventsOnScroll;
52extern wxCursor g_globalCursor;
53extern wxWindowGTK *g_delayedFocus;
caaa4cfd 54
5e014a0c 55static bool g_hasDoubleClicked = FALSE;
7a30ee8f 56
4a82abc8
RR
57//-----------------------------------------------------------------------------
58// idle callback for SetFirstItem
59//-----------------------------------------------------------------------------
60
61struct wxlistbox_idle_struct
62{
63 wxListBox *m_listbox;
64 int m_item;
65 gint m_tag;
66};
67
295272bd 68extern "C" gint wxlistbox_idle_callback( gpointer gdata )
4a82abc8
RR
69{
70 wxlistbox_idle_struct* data = (wxlistbox_idle_struct*) gdata;
71 gdk_threads_enter();
72
73 gtk_idle_remove( data->m_tag );
f96b15a3 74
992295c4
VZ
75 // check that the items haven't been deleted from the listbox since we had
76 // installed this callback
77 wxListBox *lbox = data->m_listbox;
78 if ( data->m_item < lbox->GetCount() )
79 {
80 lbox->SetFirstItem( data->m_item );
81 }
f96b15a3 82
4a82abc8 83 delete data;
f96b15a3 84
4a82abc8
RR
85 gdk_threads_leave();
86
87 return TRUE;
88}
89
caaa4cfd 90//-----------------------------------------------------------------------------
7a30ee8f 91// "button_release_event"
caaa4cfd
RR
92//-----------------------------------------------------------------------------
93
7a30ee8f
RR
94/* we would normally emit a wxEVT_COMMAND_LISTBOX_DOUBLECLICKED event once
95 a GDK_2BUTTON_PRESS occurs, but this has the particular problem of the
96 listbox keeping the focus until it receives a GDK_BUTTON_RELEASE event.
97 this can lead to race conditions so that we emit the dclick event
98 after the GDK_BUTTON_RELEASE event after the GDK_2BUTTON_PRESS event */
99
ff8bfdbb 100static gint
014b0d06
VZ
101gtk_listbox_button_release_callback( GtkWidget * WXUNUSED(widget),
102 GdkEventButton * WXUNUSED(gdk_event),
103 wxListBox *listbox )
caaa4cfd 104{
acfd422a
RR
105 if (g_isIdle) wxapp_install_idle_handler();
106
caaa4cfd
RR
107 if (g_blockEventsOnDrag) return FALSE;
108 if (g_blockEventsOnScroll) return FALSE;
109
a2053b27 110 if (!listbox->m_hasVMT) return FALSE;
caaa4cfd 111
7a30ee8f 112 if (!g_hasDoubleClicked) return FALSE;
ff8bfdbb 113
6c8a980f
VZ
114 wxCommandEvent event( wxEVT_COMMAND_LISTBOX_DOUBLECLICKED, listbox->GetId() );
115 event.SetEventObject( listbox );
ff8bfdbb 116
6c8a980f
VZ
117 wxArrayInt aSelections;
118 int n, count = listbox->GetSelections(aSelections);
119 if ( count > 0 )
120 {
121 n = aSelections[0];
122 if ( listbox->HasClientObjectData() )
123 event.SetClientObject( listbox->GetClientObject(n) );
124 else if ( listbox->HasClientUntypedData() )
125 event.SetClientData( listbox->GetClientData(n) );
126 event.SetString( listbox->GetString(n) );
127 }
128 else
129 {
130 n = -1;
131 }
5b077d48 132
6c8a980f
VZ
133 event.m_commandInt = n;
134
135 listbox->GetEventHandler()->ProcessEvent( event );
ff8bfdbb 136
7a30ee8f
RR
137 return FALSE;
138}
139
140//-----------------------------------------------------------------------------
141// "button_press_event"
142//-----------------------------------------------------------------------------
143
144static gint
014b0d06
VZ
145gtk_listbox_button_press_callback( GtkWidget *widget,
146 GdkEventButton *gdk_event,
147 wxListBox *listbox )
7a30ee8f
RR
148{
149 if (g_isIdle) wxapp_install_idle_handler();
150
151 if (g_blockEventsOnDrag) return FALSE;
152 if (g_blockEventsOnScroll) return FALSE;
153
154 if (!listbox->m_hasVMT) return FALSE;
155
11e1c70d 156 int sel = listbox->GtkGetIndex( widget );
7a30ee8f 157
88ac883a 158#if wxUSE_CHECKLISTBOX
7a30ee8f
RR
159 if ((listbox->m_hasCheckBoxes) && (gdk_event->x < 15) && (gdk_event->type != GDK_2BUTTON_PRESS))
160 {
161 wxCheckListBox *clb = (wxCheckListBox *)listbox;
162
163 clb->Check( sel, !clb->IsChecked(sel) );
164
165 wxCommandEvent event( wxEVT_COMMAND_CHECKLISTBOX_TOGGLED, listbox->GetId() );
166 event.SetEventObject( listbox );
167 event.SetInt( sel );
168 listbox->GetEventHandler()->ProcessEvent( event );
4f22cf8d 169 }
88ac883a 170#endif // wxUSE_CHECKLISTBOX
014b0d06 171
7a30ee8f
RR
172 /* emit wxEVT_COMMAND_LISTBOX_DOUBLECLICKED later */
173 g_hasDoubleClicked = (gdk_event->type == GDK_2BUTTON_PRESS);
4f22cf8d 174
caaa4cfd
RR
175 return FALSE;
176}
66bd6b93 177
1144d24d
RR
178//-----------------------------------------------------------------------------
179// "key_press_event"
180//-----------------------------------------------------------------------------
181
ff8bfdbb 182static gint
1144d24d
RR
183gtk_listbox_key_press_callback( GtkWidget *widget, GdkEventKey *gdk_event, wxListBox *listbox )
184{
9ef6ff8c 185 if (g_isIdle)
354aa1e3 186 wxapp_install_idle_handler();
acfd422a 187
9ef6ff8c 188 if (g_blockEventsOnDrag)
354aa1e3 189 return FALSE;
1144d24d 190
354aa1e3 191 bool ret = FALSE;
1144d24d 192
354aa1e3
RR
193 if ((gdk_event->keyval == GDK_Tab) || (gdk_event->keyval == GDK_ISO_Left_Tab))
194 {
195 wxNavigationKeyEvent new_event;
196 /* GDK reports GDK_ISO_Left_Tab for SHIFT-TAB */
197 new_event.SetDirection( (gdk_event->keyval == GDK_Tab) );
198 /* CTRL-TAB changes the (parent) window, i.e. switch notebook page */
199 new_event.SetWindowChange( (gdk_event->state & GDK_CONTROL_MASK) );
200 new_event.SetCurrentFocus( listbox );
201 ret = listbox->GetEventHandler()->ProcessEvent( new_event );
202 }
9ef6ff8c 203
4a82abc8
RR
204 if ((gdk_event->keyval == GDK_Return) && (!ret))
205 {
206 // eat return in all modes
207 ret = TRUE;
208 }
f96b15a3 209
354aa1e3 210#if wxUSE_CHECKLISTBOX
1e8d2f69 211 if ((gdk_event->keyval == ' ') && (listbox->m_hasCheckBoxes) && (!ret))
354aa1e3
RR
212 {
213 int sel = listbox->GtkGetIndex( widget );
ff8bfdbb 214
354aa1e3 215 wxCheckListBox *clb = (wxCheckListBox *)listbox;
ff8bfdbb 216
354aa1e3 217 clb->Check( sel, !clb->IsChecked(sel) );
ff8bfdbb 218
354aa1e3
RR
219 wxCommandEvent new_event( wxEVT_COMMAND_CHECKLISTBOX_TOGGLED, listbox->GetId() );
220 new_event.SetEventObject( listbox );
221 new_event.SetInt( sel );
222 ret = listbox->GetEventHandler()->ProcessEvent( new_event );
223 }
224#endif // wxUSE_CHECKLISTBOX
ff8bfdbb 225
354aa1e3
RR
226 if (ret)
227 {
228 gtk_signal_emit_stop_by_name( GTK_OBJECT(widget), "key_press_event" );
229 return TRUE;
230 }
ff8bfdbb 231
1144d24d
RR
232 return FALSE;
233}
234
c801d85f 235//-----------------------------------------------------------------------------
a60c99e6 236// "select" and "deselect"
c801d85f
KB
237//-----------------------------------------------------------------------------
238
0a07a7d8
RR
239static void gtk_listitem_select_cb( GtkWidget *widget, wxListBox *listbox, bool is_selection );
240
241static void gtk_listitem_select_callback( GtkWidget *widget, wxListBox *listbox )
242{
243 gtk_listitem_select_cb( widget, listbox, TRUE );
244}
65045edd
RR
245
246static void gtk_listitem_deselect_callback( GtkWidget *widget, wxListBox *listbox )
247{
0a07a7d8 248 gtk_listitem_select_cb( widget, listbox, FALSE );
65045edd
RR
249}
250
9c9c3d7a
VZ
251static void gtk_listitem_select_cb( GtkWidget *widget,
252 wxListBox *listbox,
253 bool is_selection )
c801d85f 254{
acfd422a
RR
255 if (g_isIdle) wxapp_install_idle_handler();
256
a2053b27 257 if (!listbox->m_hasVMT) return;
fd0eed64 258 if (g_blockEventsOnDrag) return;
8161b5b9 259
bac95742 260 if (listbox->m_blockEvent) return;
9ef6ff8c 261
fd0eed64 262 wxCommandEvent event(wxEVT_COMMAND_LISTBOX_SELECTED, listbox->GetId() );
6c8a980f 263 event.SetEventObject( listbox );
8161b5b9 264
9c9c3d7a
VZ
265 // indicate whether this is a selection or a deselection
266 event.SetExtraLong( is_selection );
159b66c0
RR
267
268 if ((listbox->GetWindowStyleFlag() & wxLB_SINGLE) != 0)
269 {
270 int sel = listbox->GtkGetIndex( widget );
271
272 if (listbox->m_prevSelection != sel)
273 gtk_list_unselect_item( listbox->m_list, listbox->m_prevSelection );
274
275 listbox->m_prevSelection = sel;
276 }
dcf40a56 277
09cf7c58 278 wxArrayInt aSelections;
2ee3ee1b 279 int n, count = listbox->GetSelections(aSelections);
09cf7c58
RR
280 if ( count > 0 )
281 {
2ee3ee1b 282 n = aSelections[0];
6c8a980f
VZ
283 if ( listbox->HasClientObjectData() )
284 event.SetClientObject( listbox->GetClientObject(n) );
285 else if ( listbox->HasClientUntypedData() )
286 event.SetClientData( listbox->GetClientData(n) );
287 event.SetString( listbox->GetString(n) );
09cf7c58
RR
288 }
289 else
290 {
2ee3ee1b 291 n = -1;
09cf7c58
RR
292 }
293
2ee3ee1b
VZ
294 event.m_commandInt = n;
295
159b66c0
RR
296// No longer required with new code in wxLB_SINGLE
297// listbox->GetEventHandler()->AddPendingEvent( event );
298 listbox->GetEventHandler()->ProcessEvent( event );
6de97a3b 299}
c801d85f 300
a60c99e6
RR
301//-----------------------------------------------------------------------------
302// wxListBox
c801d85f
KB
303//-----------------------------------------------------------------------------
304
305IMPLEMENT_DYNAMIC_CLASS(wxListBox,wxControl)
306
2ee3ee1b
VZ
307// ----------------------------------------------------------------------------
308// construction
309// ----------------------------------------------------------------------------
310
fd0eed64 311wxListBox::wxListBox()
c801d85f 312{
fd0eed64 313 m_list = (GtkList *) NULL;
88ac883a 314#if wxUSE_CHECKLISTBOX
caaa4cfd 315 m_hasCheckBoxes = FALSE;
88ac883a 316#endif // wxUSE_CHECKLISTBOX
6de97a3b 317}
c801d85f 318
584ad2a3
MB
319bool wxListBox::Create( wxWindow *parent, wxWindowID id,
320 const wxPoint &pos, const wxSize &size,
321 const wxArrayString& choices,
322 long style, const wxValidator& validator,
323 const wxString &name )
324{
325 wxCArrayString chs(choices);
326
327 return Create( parent, id, pos, size, chs.GetCount(), chs.GetStrings(),
328 style, validator, name );
329}
330
dcf40a56 331bool wxListBox::Create( wxWindow *parent, wxWindowID id,
fd0eed64
RR
332 const wxPoint &pos, const wxSize &size,
333 int n, const wxString choices[],
2ee3ee1b
VZ
334 long style, const wxValidator& validator,
335 const wxString &name )
c801d85f 336{
fd0eed64 337 m_needParent = TRUE;
b292e2f5 338 m_acceptsFocus = TRUE;
159b66c0 339 m_prevSelection = 0; // or -1 ??
bac95742 340 m_blockEvent = FALSE;
dcf40a56 341
4dcaf11a
RR
342 if (!PreCreation( parent, pos, size ) ||
343 !CreateBase( parent, id, pos, size, style, validator, name ))
344 {
223d09f6 345 wxFAIL_MSG( wxT("wxListBox creation failed") );
2ee3ee1b 346 return FALSE;
4dcaf11a 347 }
6de97a3b 348
fd0eed64 349 m_widget = gtk_scrolled_window_new( (GtkAdjustment*) NULL, (GtkAdjustment*) NULL );
034be888
RR
350 if (style & wxLB_ALWAYS_SB)
351 {
352 gtk_scrolled_window_set_policy( GTK_SCROLLED_WINDOW(m_widget),
353 GTK_POLICY_AUTOMATIC, GTK_POLICY_ALWAYS );
354 }
355 else
356 {
357 gtk_scrolled_window_set_policy( GTK_SCROLLED_WINDOW(m_widget),
358 GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC );
359 }
ff8bfdbb 360
fd0eed64 361 m_list = GTK_LIST( gtk_list_new() );
dcf40a56 362
4a82abc8 363 GtkSelectionMode mode;
fd0eed64 364 if (style & wxLB_MULTIPLE)
4a82abc8 365 {
fd0eed64 366 mode = GTK_SELECTION_MULTIPLE;
4a82abc8 367 }
fd0eed64 368 else if (style & wxLB_EXTENDED)
4a82abc8 369 {
fd0eed64 370 mode = GTK_SELECTION_EXTENDED;
4a82abc8
RR
371 }
372 else
373 {
374 // if style was 0 set single mode
375 m_windowStyle |= wxLB_SINGLE;
159b66c0 376 mode = GTK_SELECTION_MULTIPLE;
4a82abc8 377 }
6a6d4eed 378
fd0eed64 379 gtk_list_set_selection_mode( GTK_LIST(m_list), mode );
dcf40a56 380
38c7b3d3 381 gtk_scrolled_window_add_with_viewport( GTK_SCROLLED_WINDOW(m_widget), GTK_WIDGET(m_list) );
38c7b3d3 382
e115e771
RR
383 /* make list scroll when moving the focus down using cursor keys */
384 gtk_container_set_focus_vadjustment(
385 GTK_CONTAINER(m_list),
386 gtk_scrolled_window_get_vadjustment(
2ee3ee1b 387 GTK_SCROLLED_WINDOW(m_widget)));
e115e771 388
fd0eed64 389 gtk_widget_show( GTK_WIDGET(m_list) );
dcf40a56 390
2ee3ee1b
VZ
391 if ( style & wxLB_SORT )
392 {
393 // this will change DoAppend() behaviour
394 m_strings = new wxSortedArrayString;
395 }
eb553cb2
VZ
396 else
397 {
398 m_strings = (wxSortedArrayString *)NULL;
399 }
2ee3ee1b 400
fd0eed64
RR
401 for (int i = 0; i < n; i++)
402 {
11e1c70d 403 // add one by one
2ee3ee1b 404 DoAppend(choices[i]);
fd0eed64 405 }
dcf40a56 406
f03fc89f 407 m_parent->DoAddChild( this );
ff8bfdbb 408
abdeb9e7
RD
409 PostCreation(size);
410 SetBestSize(size); // need this too because this is a wxControlWithItems
dcf40a56 411
fd0eed64 412 return TRUE;
6de97a3b 413}
c801d85f 414
fd0eed64 415wxListBox::~wxListBox()
c801d85f 416{
4a82abc8
RR
417 m_hasVMT = FALSE;
418
caaa4cfd 419 Clear();
f96b15a3 420
6981d3ec
JS
421 if (m_strings)
422 delete m_strings;
6de97a3b 423}
c801d85f 424
8161b5b9
VZ
425// ----------------------------------------------------------------------------
426// adding items
427// ----------------------------------------------------------------------------
428
2ee3ee1b 429void wxListBox::DoInsertItems(const wxArrayString& items, int pos)
bb0ca8df 430{
223d09f6 431 wxCHECK_RET( m_list != NULL, wxT("invalid listbox") );
bb0ca8df 432
11e1c70d
RR
433 // VZ: notice that InsertItems knows nothing about sorting, so calling it
434 // from outside (and not from our own Append) is likely to break
435 // everything
436
437 // code elsewhere supposes we have as many items in m_clientList as items
2ee3ee1b 438 // in the listbox
11e1c70d 439 wxASSERT_MSG( m_clientList.GetCount() == (size_t)GetCount(),
2ee3ee1b
VZ
440 wxT("bug in client data management") );
441
bb0ca8df
VZ
442 GList *children = m_list->children;
443 int length = g_list_length(children);
9ef6ff8c 444
223d09f6 445 wxCHECK_RET( pos <= length, wxT("invalid index in wxListBox::InsertItems") );
bb0ca8df 446
2ee3ee1b 447 size_t nItems = items.GetCount();
0a07a7d8 448 int index;
2ee3ee1b 449
0a07a7d8 450 if (m_strings)
bb0ca8df 451 {
0a07a7d8 452 for (size_t n = 0; n < nItems; n++)
bb0ca8df 453 {
0a07a7d8 454 index = m_strings->Add( items[n] );
f96b15a3 455
0a07a7d8
RR
456 if (index != GetCount())
457 {
458 GtkAddItem( items[n], index );
222ed1d6 459 wxList::compatibility_iterator node = m_clientList.Item( index );
0a07a7d8
RR
460 m_clientList.Insert( node, (wxObject*) NULL );
461 }
462 else
463 {
464 GtkAddItem( items[n] );
465 m_clientList.Append( (wxObject*) NULL );
466 }
bb0ca8df 467 }
bb0ca8df 468 }
11e1c70d 469 else
bb0ca8df 470 {
0a07a7d8
RR
471 if (pos == length)
472 {
473 for ( size_t n = 0; n < nItems; n++ )
474 {
475 GtkAddItem( items[n] );
476
477 m_clientList.Append((wxObject *)NULL);
478 }
479 }
480 else
bb0ca8df 481 {
222ed1d6 482 wxList::compatibility_iterator node = m_clientList.Item( pos );
0a07a7d8
RR
483 for ( size_t n = 0; n < nItems; n++ )
484 {
485 GtkAddItem( items[n], pos+n );
bb0ca8df 486
0a07a7d8
RR
487 m_clientList.Insert( node, (wxObject *)NULL );
488 }
bb0ca8df
VZ
489 }
490 }
2ee3ee1b 491
11e1c70d
RR
492 wxASSERT_MSG( m_clientList.GetCount() == (size_t)GetCount(),
493 wxT("bug in client data management") );
2ee3ee1b
VZ
494}
495
496int wxListBox::DoAppend( const wxString& item )
497{
11e1c70d 498 if (m_strings)
2ee3ee1b
VZ
499 {
500 // need to determine the index
11e1c70d 501 int index = m_strings->Add( item );
9ef6ff8c
VZ
502
503 // only if not at the end anyway
504 if (index != GetCount())
505 {
506 GtkAddItem( item, index );
507
222ed1d6 508 wxList::compatibility_iterator node = m_clientList.Item( index );
11e1c70d 509 m_clientList.Insert( node, (wxObject *)NULL );
9ef6ff8c
VZ
510
511 return index;
512 }
2ee3ee1b 513 }
9ef6ff8c 514
11e1c70d 515 GtkAddItem(item);
2ee3ee1b 516
11e1c70d 517 m_clientList.Append((wxObject *)NULL);
2ee3ee1b 518
11e1c70d 519 return GetCount() - 1;
bb0ca8df
VZ
520}
521
11e1c70d 522void wxListBox::GtkAddItem( const wxString &item, int pos )
c801d85f 523{
223d09f6 524 wxCHECK_RET( m_list != NULL, wxT("invalid listbox") );
ff8bfdbb 525
caaa4cfd 526 GtkWidget *list_item;
ff8bfdbb 527
bb0ca8df 528 wxString label(item);
88ac883a 529#if wxUSE_CHECKLISTBOX
caaa4cfd
RR
530 if (m_hasCheckBoxes)
531 {
d752a3c3 532 label.Prepend(wxCHECKLBOX_STRING);
caaa4cfd 533 }
88ac883a 534#endif // wxUSE_CHECKLISTBOX
fc54776e 535
fab591c5 536 list_item = gtk_list_item_new_with_label( wxGTK_CONV( label ) );
bb0ca8df 537
11e1c70d
RR
538 GList *gitem_list = g_list_alloc ();
539 gitem_list->data = list_item;
9ef6ff8c 540
11e1c70d
RR
541 if (pos == -1)
542 gtk_list_append_items( GTK_LIST (m_list), gitem_list );
543 else
544 gtk_list_insert_items( GTK_LIST (m_list), gitem_list, pos );
3502e687 545
fd0eed64
RR
546 gtk_signal_connect( GTK_OBJECT(list_item), "select",
547 GTK_SIGNAL_FUNC(gtk_listitem_select_callback), (gpointer)this );
dcf40a56 548
159b66c0 549 if (HasFlag(wxLB_MULTIPLE) || HasFlag(wxLB_EXTENDED))
fd0eed64 550 gtk_signal_connect( GTK_OBJECT(list_item), "deselect",
65045edd 551 GTK_SIGNAL_FUNC(gtk_listitem_deselect_callback), (gpointer)this );
dcf40a56 552
ff8bfdbb
VZ
553 gtk_signal_connect( GTK_OBJECT(list_item),
554 "button_press_event",
555 (GtkSignalFunc)gtk_listbox_button_press_callback,
556 (gpointer) this );
557
74505862
RR
558 gtk_signal_connect_after( GTK_OBJECT(list_item),
559 "button_release_event",
560 (GtkSignalFunc)gtk_listbox_button_release_callback,
561 (gpointer) this );
562
354aa1e3 563 gtk_signal_connect( GTK_OBJECT(list_item),
bb0ca8df
VZ
564 "key_press_event",
565 (GtkSignalFunc)gtk_listbox_key_press_callback,
566 (gpointer)this );
ff8bfdbb 567
fd0eed64
RR
568 ConnectWidget( list_item );
569
4349acd4
RR
570 gtk_widget_show( list_item );
571
2b07d713
RR
572 if (GTK_WIDGET_REALIZED(m_widget))
573 {
574 gtk_widget_realize( list_item );
575 gtk_widget_realize( GTK_BIN(list_item)->child );
014b0d06 576
11e1c70d 577 // Apply current widget style to the new list_item
9ef6ff8c
VZ
578 if (m_widgetStyle)
579 {
91f49163
HH
580 gtk_widget_set_style( GTK_WIDGET( list_item ), m_widgetStyle );
581 GtkBin *bin = GTK_BIN( list_item );
582 GtkWidget *label = GTK_WIDGET( bin->child );
583 gtk_widget_set_style( label, m_widgetStyle );
584 }
2b07d713 585
291a8f20 586#if wxUSE_TOOLTIPS
f03fc89f 587 if (m_tooltip) m_tooltip->Apply( this );
291a8f20 588#endif
2b07d713 589 }
fd0eed64
RR
590}
591
2ee3ee1b
VZ
592void wxListBox::DoSetItems( const wxArrayString& items,
593 void **clientData)
fd0eed64 594{
2ee3ee1b 595 Clear();
fd0eed64 596
2ee3ee1b 597 DoInsertItems(items, 0);
ff8bfdbb 598
2ee3ee1b
VZ
599 if ( clientData )
600 {
601 size_t count = items.GetCount();
602 for ( size_t n = 0; n < count; n++ )
603 {
604 SetClientData(n, clientData[n]);
605 }
606 }
fd0eed64 607}
dcf40a56 608
2ee3ee1b 609// ----------------------------------------------------------------------------
8161b5b9 610// deleting items
2ee3ee1b 611// ----------------------------------------------------------------------------
ff8bfdbb 612
fd0eed64
RR
613void wxListBox::Clear()
614{
223d09f6 615 wxCHECK_RET( m_list != NULL, wxT("invalid listbox") );
fc54776e 616
c4c92801 617 gtk_list_clear_items( m_list, 0, GetCount() );
8161b5b9 618
780bb874
RR
619 if ( GTK_LIST(m_list)->last_focus_child != NULL )
620 {
621 // This should be NULL, I think.
622 GTK_LIST(m_list)->last_focus_child = NULL;
623 }
dcf40a56 624
6c8a980f
VZ
625 if ( HasClientObjectData() )
626 {
627 // destroy the data (due to Robert's idea of using wxList<wxObject>
628 // and not wxList<wxClientData> we can't just say
629 // m_clientList.DeleteContents(TRUE) - this would crash!
222ed1d6 630 wxList::compatibility_iterator node = m_clientList.GetFirst();
6c8a980f
VZ
631 while ( node )
632 {
b1d4dd7a
RL
633 delete (wxClientData *)node->GetData();
634 node = node->GetNext();
6c8a980f
VZ
635 }
636 }
11e1c70d 637 m_clientList.Clear();
ff8bfdbb 638
2ee3ee1b
VZ
639 if ( m_strings )
640 m_strings->Clear();
6de97a3b 641}
c801d85f
KB
642
643void wxListBox::Delete( int n )
644{
223d09f6 645 wxCHECK_RET( m_list != NULL, wxT("invalid listbox") );
fc54776e 646
fd0eed64 647 GList *child = g_list_nth( m_list->children, n );
dcf40a56 648
223d09f6 649 wxCHECK_RET( child, wxT("wrong listbox index") );
dcf40a56 650
bbe0af5b 651 GList *list = g_list_append( (GList*) NULL, child->data );
fd0eed64
RR
652 gtk_list_remove_items( m_list, list );
653 g_list_free( list );
dcf40a56 654
222ed1d6 655 wxList::compatibility_iterator node = m_clientList.Item( n );
2ee3ee1b 656 if ( node )
fd0eed64 657 {
1e6feb95 658 if ( m_clientDataItemsType == wxClientData_Object )
2ee3ee1b 659 {
b1d4dd7a 660 wxClientData *cd = (wxClientData*)node->GetData();
2ee3ee1b
VZ
661 delete cd;
662 }
663
222ed1d6 664 m_clientList.Erase( node );
f5e27805 665 }
ff8bfdbb 666
2ee3ee1b 667 if ( m_strings )
ba8c1601 668 m_strings->RemoveAt(n);
2ee3ee1b
VZ
669}
670
8161b5b9
VZ
671// ----------------------------------------------------------------------------
672// client data
673// ----------------------------------------------------------------------------
674
675void wxListBox::DoSetItemClientData( int n, void* clientData )
676{
677 wxCHECK_RET( m_widget != NULL, wxT("invalid listbox control") );
678
222ed1d6 679 wxList::compatibility_iterator node = m_clientList.Item( n );
8161b5b9
VZ
680 wxCHECK_RET( node, wxT("invalid index in wxListBox::DoSetItemClientData") );
681
682 node->SetData( (wxObject*) clientData );
683}
684
685void* wxListBox::DoGetItemClientData( int n ) const
686{
687 wxCHECK_MSG( m_widget != NULL, NULL, wxT("invalid listbox control") );
688
222ed1d6 689 wxList::compatibility_iterator node = m_clientList.Item( n );
8161b5b9
VZ
690 wxCHECK_MSG( node, NULL, wxT("invalid index in wxListBox::DoGetItemClientData") );
691
b1d4dd7a 692 return node->GetData();
8161b5b9
VZ
693}
694
695void wxListBox::DoSetItemClientObject( int n, wxClientData* clientData )
696{
697 wxCHECK_RET( m_widget != NULL, wxT("invalid listbox control") );
698
222ed1d6 699 wxList::compatibility_iterator node = m_clientList.Item( n );
8161b5b9
VZ
700 wxCHECK_RET( node, wxT("invalid index in wxListBox::DoSetItemClientObject") );
701
702 // wxItemContainer already deletes data for us
703
704 node->SetData( (wxObject*) clientData );
705}
706
707wxClientData* wxListBox::DoGetItemClientObject( int n ) const
708{
709 wxCHECK_MSG( m_widget != NULL, (wxClientData*) NULL, wxT("invalid listbox control") );
710
222ed1d6 711 wxList::compatibility_iterator node = m_clientList.Item( n );
8161b5b9
VZ
712 wxCHECK_MSG( node, (wxClientData *)NULL,
713 wxT("invalid index in wxListBox::DoGetItemClientObject") );
714
b1d4dd7a 715 return (wxClientData*) node->GetData();
8161b5b9
VZ
716}
717
2ee3ee1b
VZ
718// ----------------------------------------------------------------------------
719// string list access
720// ----------------------------------------------------------------------------
721
8161b5b9
VZ
722wxString wxListBox::GetRealLabel(GList *item) const
723{
724 GtkBin *bin = GTK_BIN( item->data );
725 GtkLabel *label = GTK_LABEL( bin->child );
726
727 wxString str;
728
729#ifdef __WXGTK20__
730 str = wxGTK_CONV_BACK( gtk_label_get_text( label ) );
731#else
732 str = wxString( label->label );
733#endif
734
735#if wxUSE_CHECKLISTBOX
736