1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
11 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
12 #pragma implementation "listbox.h"
15 // For compilers that support precompilation, includes "wx.h".
16 #include "wx/wxprec.h"
22 #include "wx/listbox.h"
23 #include "wx/dynarray.h"
24 #include "wx/arrstr.h"
27 #include "wx/checklst.h"
28 #include "wx/settings.h"
29 #include "wx/gtk/private.h"
32 #include "wx/tooltip.h"
37 #include <gdk/gdkkeysyms.h>
39 //-----------------------------------------------------------------------------
41 //-----------------------------------------------------------------------------
43 extern void wxapp_install_idle_handler();
46 //-----------------------------------------------------------------------------
48 //-----------------------------------------------------------------------------
50 extern bool g_blockEventsOnDrag
;
51 extern bool g_blockEventsOnScroll
;
52 extern wxCursor g_globalCursor
;
53 extern wxWindowGTK
*g_delayedFocus
;
54 extern wxWindowGTK
*g_focusWindow
;
55 extern wxWindowGTK
*g_focusWindowLast
;
57 static bool g_hasDoubleClicked
= FALSE
;
59 //-----------------------------------------------------------------------------
60 // idle callback for SetFirstItem
61 //-----------------------------------------------------------------------------
63 struct wxlistbox_idle_struct
70 extern "C" gint
wxlistbox_idle_callback( gpointer gdata
)
72 wxlistbox_idle_struct
* data
= (wxlistbox_idle_struct
*) gdata
;
75 gtk_idle_remove( data
->m_tag
);
77 // check that the items haven't been deleted from the listbox since we had
78 // installed this callback
79 wxListBox
*lbox
= data
->m_listbox
;
80 if ( data
->m_item
< lbox
->GetCount() )
82 lbox
->SetFirstItem( data
->m_item
);
92 //-----------------------------------------------------------------------------
94 //-----------------------------------------------------------------------------
96 static gint
gtk_listitem_focus_in_callback( GtkWidget
*widget
,
97 GdkEvent
*WXUNUSED(event
),
101 wxapp_install_idle_handler();
106 // does the window itself think that it has the focus?
107 if ( !win
->m_hasFocus
)
109 // not yet, notify it
110 win
->m_hasFocus
= TRUE
;
112 wxChildFocusEvent
eventChildFocus(win
);
113 (void)win
->GetEventHandler()->ProcessEvent(eventChildFocus
);
115 wxFocusEvent
eventFocus(wxEVT_SET_FOCUS
, win
->GetId());
116 eventFocus
.SetEventObject(win
);
118 (void)win
->GetEventHandler()->ProcessEvent(eventFocus
);
124 //-----------------------------------------------------------------------------
126 //-----------------------------------------------------------------------------
128 static gint
gtk_listitem_focus_out_callback( GtkWidget
*widget
, GdkEventFocus
*gdk_event
, wxWindowGTK
*win
)
131 wxapp_install_idle_handler();
133 g_focusWindow
= (wxWindowGTK
*)NULL
;
135 // don't send the window a kill focus event if it thinks that it doesn't
136 // have focus already
137 if ( win
->m_hasFocus
)
139 win
->m_hasFocus
= FALSE
;
141 wxFocusEvent
event( wxEVT_KILL_FOCUS
, win
->GetId() );
142 event
.SetEventObject( win
);
144 // even if we did process the event in wx code, still let GTK itself
145 // process it too as otherwise bad things happen, especially in GTK2
146 // where the text control simply aborts the program if it doesn't get
147 // the matching focus out event
148 (void)win
->GetEventHandler()->ProcessEvent( event
);
154 //-----------------------------------------------------------------------------
155 // "button_release_event"
156 //-----------------------------------------------------------------------------
158 /* we would normally emit a wxEVT_COMMAND_LISTBOX_DOUBLECLICKED event once
159 a GDK_2BUTTON_PRESS occurs, but this has the particular problem of the
160 listbox keeping the focus until it receives a GDK_BUTTON_RELEASE event.
161 this can lead to race conditions so that we emit the dclick event
162 after the GDK_BUTTON_RELEASE event after the GDK_2BUTTON_PRESS event */
165 gtk_listbox_button_release_callback( GtkWidget
* WXUNUSED(widget
),
166 GdkEventButton
* WXUNUSED(gdk_event
),
169 if (g_isIdle
) wxapp_install_idle_handler();
171 if (g_blockEventsOnDrag
) return FALSE
;
172 if (g_blockEventsOnScroll
) return FALSE
;
174 if (!listbox
->m_hasVMT
) return FALSE
;
176 if (!g_hasDoubleClicked
) return FALSE
;
178 wxCommandEvent
event( wxEVT_COMMAND_LISTBOX_DOUBLECLICKED
, listbox
->GetId() );
179 event
.SetEventObject( listbox
);
181 wxArrayInt aSelections
;
182 int n
, count
= listbox
->GetSelections(aSelections
);
186 if ( listbox
->HasClientObjectData() )
187 event
.SetClientObject( listbox
->GetClientObject(n
) );
188 else if ( listbox
->HasClientUntypedData() )
189 event
.SetClientData( listbox
->GetClientData(n
) );
190 event
.SetString( listbox
->GetString(n
) );
199 listbox
->GetEventHandler()->ProcessEvent( event
);
204 //-----------------------------------------------------------------------------
205 // "button_press_event"
206 //-----------------------------------------------------------------------------
209 gtk_listbox_button_press_callback( GtkWidget
*widget
,
210 GdkEventButton
*gdk_event
,
213 if (g_isIdle
) wxapp_install_idle_handler();
215 if (g_blockEventsOnDrag
) return FALSE
;
216 if (g_blockEventsOnScroll
) return FALSE
;
218 if (!listbox
->m_hasVMT
) return FALSE
;
220 int sel
= listbox
->GtkGetIndex( widget
);
222 #if wxUSE_CHECKLISTBOX
223 if ((listbox
->m_hasCheckBoxes
) && (gdk_event
->x
< 15) && (gdk_event
->type
!= GDK_2BUTTON_PRESS
))
225 wxCheckListBox
*clb
= (wxCheckListBox
*)listbox
;
227 clb
->Check( sel
, !clb
->IsChecked(sel
) );
229 wxCommandEvent
event( wxEVT_COMMAND_CHECKLISTBOX_TOGGLED
, listbox
->GetId() );
230 event
.SetEventObject( listbox
);
232 listbox
->GetEventHandler()->ProcessEvent( event
);
234 #endif // wxUSE_CHECKLISTBOX
236 /* emit wxEVT_COMMAND_LISTBOX_DOUBLECLICKED later */
237 g_hasDoubleClicked
= (gdk_event
->type
== GDK_2BUTTON_PRESS
);
242 //-----------------------------------------------------------------------------
244 //-----------------------------------------------------------------------------
247 gtk_listbox_key_press_callback( GtkWidget
*widget
, GdkEventKey
*gdk_event
, wxListBox
*listbox
)
250 wxapp_install_idle_handler();
252 if (g_blockEventsOnDrag
)
257 if ((gdk_event
->keyval
== GDK_Tab
) || (gdk_event
->keyval
== GDK_ISO_Left_Tab
))
259 wxNavigationKeyEvent new_event
;
260 /* GDK reports GDK_ISO_Left_Tab for SHIFT-TAB */
261 new_event
.SetDirection( (gdk_event
->keyval
== GDK_Tab
) );
262 /* CTRL-TAB changes the (parent) window, i.e. switch notebook page */
263 new_event
.SetWindowChange( (gdk_event
->state
& GDK_CONTROL_MASK
) );
264 new_event
.SetCurrentFocus( listbox
);
265 ret
= listbox
->GetEventHandler()->ProcessEvent( new_event
);
268 if ((gdk_event
->keyval
== GDK_Return
) && (!ret
))
270 // eat return in all modes
274 #if wxUSE_CHECKLISTBOX
275 if ((gdk_event
->keyval
== ' ') && (listbox
->m_hasCheckBoxes
) && (!ret
))
277 int sel
= listbox
->GtkGetIndex( widget
);
279 wxCheckListBox
*clb
= (wxCheckListBox
*)listbox
;
281 clb
->Check( sel
, !clb
->IsChecked(sel
) );
283 wxCommandEvent
new_event( wxEVT_COMMAND_CHECKLISTBOX_TOGGLED
, listbox
->GetId() );
284 new_event
.SetEventObject( listbox
);
285 new_event
.SetInt( sel
);
286 ret
= listbox
->GetEventHandler()->ProcessEvent( new_event
);
288 #endif // wxUSE_CHECKLISTBOX
290 // Check or uncheck item with SPACE
291 if ((gdk_event
->keyval
== ' ') && (!ret
) &&
292 (((listbox
->GetWindowStyleFlag() & wxLB_MULTIPLE
) != 0) ||
293 ((listbox
->GetWindowStyleFlag() & wxLB_EXTENDED
) != 0)) )
295 int sel
= listbox
->GtkGetIndex( widget
);
301 if (listbox
->IsSelected( sel
))
302 gtk_list_unselect_item( listbox
->m_list
, sel
);
304 gtk_list_select_item( listbox
->m_list
, sel
);
306 wxCommandEvent
new_event(wxEVT_COMMAND_LISTBOX_SELECTED
, listbox
->GetId() );
307 new_event
.SetEventObject( listbox
);
308 wxArrayInt aSelections
;
309 int n
, count
= listbox
->GetSelections(aSelections
);
313 if ( listbox
->HasClientObjectData() )
314 new_event
.SetClientObject( listbox
->GetClientObject(n
) );
315 else if ( listbox
->HasClientUntypedData() )
316 new_event
.SetClientData( listbox
->GetClientData(n
) );
317 new_event
.SetString( listbox
->GetString(n
) );
324 listbox
->GetEventHandler()->ProcessEvent( new_event
);
330 gtk_signal_emit_stop_by_name( GTK_OBJECT(widget
), "key_press_event" );
337 //-----------------------------------------------------------------------------
338 // "select" and "deselect"
339 //-----------------------------------------------------------------------------
341 static void gtk_listitem_select_cb( GtkWidget
*widget
, wxListBox
*listbox
, bool is_selection
);
343 static void gtk_listitem_select_callback( GtkWidget
*widget
, wxListBox
*listbox
)
345 gtk_listitem_select_cb( widget
, listbox
, TRUE
);
348 static void gtk_listitem_deselect_callback( GtkWidget
*widget
, wxListBox
*listbox
)
350 gtk_listitem_select_cb( widget
, listbox
, FALSE
);
353 static void gtk_listitem_select_cb( GtkWidget
*widget
,
357 if (g_isIdle
) wxapp_install_idle_handler();
359 if (!listbox
->m_hasVMT
) return;
360 if (g_blockEventsOnDrag
) return;
362 if (listbox
->m_blockEvent
) return;
364 wxCommandEvent
event(wxEVT_COMMAND_LISTBOX_SELECTED
, listbox
->GetId() );
365 event
.SetEventObject( listbox
);
367 // indicate whether this is a selection or a deselection
368 event
.SetExtraLong( is_selection
);
370 if ((listbox
->GetWindowStyleFlag() & wxLB_SINGLE
) != 0)
372 int sel
= listbox
->GtkGetIndex( widget
);
374 if (listbox
->m_prevSelection
!= sel
)
375 gtk_list_unselect_item( listbox
->m_list
, listbox
->m_prevSelection
);
377 listbox
->m_prevSelection
= sel
;
380 wxArrayInt aSelections
;
381 int n
, count
= listbox
->GetSelections(aSelections
);
385 if ( listbox
->HasClientObjectData() )
386 event
.SetClientObject( listbox
->GetClientObject(n
) );
387 else if ( listbox
->HasClientUntypedData() )
388 event
.SetClientData( listbox
->GetClientData(n
) );
389 event
.SetString( listbox
->GetString(n
) );
398 // No longer required with new code in wxLB_SINGLE
399 // listbox->GetEventHandler()->AddPendingEvent( event );
400 listbox
->GetEventHandler()->ProcessEvent( event
);
403 //-----------------------------------------------------------------------------
405 //-----------------------------------------------------------------------------
408 gtk_listbox_realized_callback( GtkWidget
*m_widget
, wxListBox
*win
)
411 wxapp_install_idle_handler();
413 GList
*child
= win
->m_list
->children
;
414 for (child
= win
->m_list
->children
; child
!= NULL
; child
= child
->next
)
415 gtk_widget_show( GTK_WIDGET(child
->data
) );
420 //-----------------------------------------------------------------------------
422 //-----------------------------------------------------------------------------
424 IMPLEMENT_DYNAMIC_CLASS(wxListBox
,wxControl
)
426 // ----------------------------------------------------------------------------
428 // ----------------------------------------------------------------------------
430 wxListBox::wxListBox()
432 m_list
= (GtkList
*) NULL
;
433 #if wxUSE_CHECKLISTBOX
434 m_hasCheckBoxes
= FALSE
;
435 #endif // wxUSE_CHECKLISTBOX
438 bool wxListBox::Create( wxWindow
*parent
, wxWindowID id
,
439 const wxPoint
&pos
, const wxSize
&size
,
440 const wxArrayString
& choices
,
441 long style
, const wxValidator
& validator
,
442 const wxString
&name
)
444 wxCArrayString
chs(choices
);
446 return Create( parent
, id
, pos
, size
, chs
.GetCount(), chs
.GetStrings(),
447 style
, validator
, name
);
450 bool wxListBox::Create( wxWindow
*parent
, wxWindowID id
,
451 const wxPoint
&pos
, const wxSize
&size
,
452 int n
, const wxString choices
[],
453 long style
, const wxValidator
& validator
,
454 const wxString
&name
)
457 m_acceptsFocus
= TRUE
;
458 m_prevSelection
= 0; // or -1 ??
459 m_blockEvent
= FALSE
;
461 if (!PreCreation( parent
, pos
, size
) ||
462 !CreateBase( parent
, id
, pos
, size
, style
, validator
, name
))
464 wxFAIL_MSG( wxT("wxListBox creation failed") );
468 m_widget
= gtk_scrolled_window_new( (GtkAdjustment
*) NULL
, (GtkAdjustment
*) NULL
);
469 if (style
& wxLB_ALWAYS_SB
)
471 gtk_scrolled_window_set_policy( GTK_SCROLLED_WINDOW(m_widget
),
472 GTK_POLICY_AUTOMATIC
, GTK_POLICY_ALWAYS
);
476 gtk_scrolled_window_set_policy( GTK_SCROLLED_WINDOW(m_widget
),
477 GTK_POLICY_AUTOMATIC
, GTK_POLICY_AUTOMATIC
);
480 m_list
= GTK_LIST( gtk_list_new() );
482 GtkSelectionMode mode
;
483 if (style
& wxLB_MULTIPLE
)
485 mode
= GTK_SELECTION_MULTIPLE
;
487 else if (style
& wxLB_EXTENDED
)
489 mode
= GTK_SELECTION_EXTENDED
;
493 // if style was 0 set single mode
494 m_windowStyle
|= wxLB_SINGLE
;
495 mode
= GTK_SELECTION_MULTIPLE
;
498 gtk_list_set_selection_mode( GTK_LIST(m_list
), mode
);
500 gtk_scrolled_window_add_with_viewport( GTK_SCROLLED_WINDOW(m_widget
), GTK_WIDGET(m_list
) );
502 /* make list scroll when moving the focus down using cursor keys */
503 gtk_container_set_focus_vadjustment(
504 GTK_CONTAINER(m_list
),
505 gtk_scrolled_window_get_vadjustment(
506 GTK_SCROLLED_WINDOW(m_widget
)));
508 gtk_widget_show( GTK_WIDGET(m_list
) );
510 gtk_signal_connect( GTK_OBJECT(m_list
), "realize",
511 GTK_SIGNAL_FUNC(gtk_listbox_realized_callback
), (gpointer
) this );
513 if ( style
& wxLB_SORT
)
515 // this will change DoAppend() behaviour
516 m_strings
= new wxSortedArrayString
;
520 m_strings
= (wxSortedArrayString
*)NULL
;
523 for (int i
= 0; i
< n
; i
++)
526 DoAppend(choices
[i
]);
529 m_parent
->DoAddChild( this );
532 SetBestSize(size
); // need this too because this is a wxControlWithItems
537 wxListBox::~wxListBox()
547 // ----------------------------------------------------------------------------
549 // ----------------------------------------------------------------------------
551 void wxListBox::DoInsertItems(const wxArrayString
& items
, int pos
)
553 wxCHECK_RET( m_list
!= NULL
, wxT("invalid listbox") );
555 // VZ: notice that InsertItems knows nothing about sorting, so calling it
556 // from outside (and not from our own Append) is likely to break
559 // code elsewhere supposes we have as many items in m_clientList as items
561 wxASSERT_MSG( m_clientList
.GetCount() == (size_t)GetCount(),
562 wxT("bug in client data management") );
564 InvalidateBestSize();
566 GList
*children
= m_list
->children
;
567 int length
= g_list_length(children
);
569 wxCHECK_RET( pos
<= length
, wxT("invalid index in wxListBox::InsertItems") );
571 size_t nItems
= items
.GetCount();
576 for (size_t n
= 0; n
< nItems
; n
++)
578 index
= m_strings
->Add( items
[n
] );
580 if (index
!= GetCount())
582 GtkAddItem( items
[n
], index
);
583 wxList::compatibility_iterator node
= m_clientList
.Item( index
);
584 m_clientList
.Insert( node
, (wxObject
*) NULL
);
588 GtkAddItem( items
[n
] );
589 m_clientList
.Append( (wxObject
*) NULL
);
597 for ( size_t n
= 0; n
< nItems
; n
++ )
599 GtkAddItem( items
[n
] );
601 m_clientList
.Append((wxObject
*)NULL
);
606 wxList::compatibility_iterator node
= m_clientList
.Item( pos
);
607 for ( size_t n
= 0; n
< nItems
; n
++ )
609 GtkAddItem( items
[n
], pos
+n
);
611 m_clientList
.Insert( node
, (wxObject
*)NULL
);
616 wxASSERT_MSG( m_clientList
.GetCount() == (size_t)GetCount(),
617 wxT("bug in client data management") );
620 int wxListBox::DoAppend( const wxString
& item
)
622 InvalidateBestSize();
626 // need to determine the index
627 int index
= m_strings
->Add( item
);
629 // only if not at the end anyway
630 if (index
!= GetCount())
632 GtkAddItem( item
, index
);
634 wxList::compatibility_iterator node
= m_clientList
.Item( index
);
635 m_clientList
.Insert( node
, (wxObject
*)NULL
);
643 m_clientList
.Append((wxObject
*)NULL
);
645 return GetCount() - 1;
648 void wxListBox::GtkAddItem( const wxString
&item
, int pos
)
650 wxCHECK_RET( m_list
!= NULL
, wxT("invalid listbox") );
652 GtkWidget
*list_item
;
654 wxString
label(item
);
655 #if wxUSE_CHECKLISTBOX
658 label
.Prepend(wxCHECKLBOX_STRING
);
660 #endif // wxUSE_CHECKLISTBOX
662 list_item
= gtk_list_item_new_with_label( wxGTK_CONV( label
) );
664 GList
*gitem_list
= g_list_alloc ();
665 gitem_list
->data
= list_item
;
668 gtk_list_append_items( GTK_LIST (m_list
), gitem_list
);
670 gtk_list_insert_items( GTK_LIST (m_list
), gitem_list
, pos
);
672 gtk_signal_connect_after( GTK_OBJECT(list_item
), "select",
673 GTK_SIGNAL_FUNC(gtk_listitem_select_callback
), (gpointer
)this );
675 if (HasFlag(wxLB_MULTIPLE
) || HasFlag(wxLB_EXTENDED
))
676 gtk_signal_connect_after( GTK_OBJECT(list_item
), "deselect",
677 GTK_SIGNAL_FUNC(gtk_listitem_deselect_callback
), (gpointer
)this );
679 gtk_signal_connect( GTK_OBJECT(list_item
),
680 "button_press_event",
681 (GtkSignalFunc
)gtk_listbox_button_press_callback
,
684 gtk_signal_connect_after( GTK_OBJECT(list_item
),
685 "button_release_event",
686 (GtkSignalFunc
)gtk_listbox_button_release_callback
,
689 gtk_signal_connect( GTK_OBJECT(list_item
),
691 (GtkSignalFunc
)gtk_listbox_key_press_callback
,
695 gtk_signal_connect( GTK_OBJECT(list_item
), "focus_in_event",
696 GTK_SIGNAL_FUNC(gtk_listitem_focus_in_callback
), (gpointer
)this );
698 gtk_signal_connect( GTK_OBJECT(list_item
), "focus_out_event",
699 GTK_SIGNAL_FUNC(gtk_listitem_focus_out_callback
), (gpointer
)this );
701 ConnectWidget( list_item
);
703 if (GTK_WIDGET_REALIZED(m_widget
))
705 gtk_widget_show( list_item
);
707 gtk_widget_realize( list_item
);
708 gtk_widget_realize( GTK_BIN(list_item
)->child
);
711 if (m_tooltip
) m_tooltip
->Apply( this );
715 // Apply current widget style to the new list_item
716 GtkRcStyle
*style
= CreateWidgetStyle();
719 gtk_widget_modify_style( GTK_WIDGET( list_item
), style
);
720 GtkBin
*bin
= GTK_BIN( list_item
);
721 GtkWidget
*label
= GTK_WIDGET( bin
->child
);
722 gtk_widget_modify_style( label
, style
);
723 gtk_rc_style_unref( style
);
727 void wxListBox::DoSetItems( const wxArrayString
& items
,
732 DoInsertItems(items
, 0);
736 size_t count
= items
.GetCount();
737 for ( size_t n
= 0; n
< count
; n
++ )
739 SetClientData(n
, clientData
[n
]);
744 // ----------------------------------------------------------------------------
746 // ----------------------------------------------------------------------------
748 void wxListBox::Clear()
750 wxCHECK_RET( m_list
!= NULL
, wxT("invalid listbox") );
752 gtk_list_clear_items( m_list
, 0, GetCount() );
754 if ( GTK_LIST(m_list
)->last_focus_child
!= NULL
)
756 // This should be NULL, I think.
757 GTK_LIST(m_list
)->last_focus_child
= NULL
;
760 if ( HasClientObjectData() )
762 // destroy the data (due to Robert's idea of using wxList<wxObject>
763 // and not wxList<wxClientData> we can't just say
764 // m_clientList.DeleteContents(TRUE) - this would crash!
765 wxList::compatibility_iterator node
= m_clientList
.GetFirst();
768 delete (wxClientData
*)node
->GetData();
769 node
= node
->GetNext();
772 m_clientList
.Clear();
778 void wxListBox::Delete( int n
)
780 wxCHECK_RET( m_list
!= NULL
, wxT("invalid listbox") );
782 GList
*child
= g_list_nth( m_list
->children
, n
);
784 wxCHECK_RET( child
, wxT("wrong listbox index") );
786 GList
*list
= g_list_append( (GList
*) NULL
, child
->data
);
787 gtk_list_remove_items( m_list
, list
);
790 wxList::compatibility_iterator node
= m_clientList
.Item( n
);
793 if ( m_clientDataItemsType
== wxClientData_Object
)
795 wxClientData
*cd
= (wxClientData
*)node
->GetData();
799 m_clientList
.Erase( node
);
803 m_strings
->RemoveAt(n
);
806 // ----------------------------------------------------------------------------
808 // ----------------------------------------------------------------------------
810 void wxListBox::DoSetItemClientData( int n
, void* clientData
)
812 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid listbox control") );
814 wxList::compatibility_iterator node
= m_clientList
.Item( n
);
815 wxCHECK_RET( node
, wxT("invalid index in wxListBox::DoSetItemClientData") );
817 node
->SetData( (wxObject
*) clientData
);
820 void* wxListBox::DoGetItemClientData( int n
) const
822 wxCHECK_MSG( m_widget
!= NULL
, NULL
, wxT("invalid listbox control") );
824 wxList::compatibility_iterator node
= m_clientList
.Item( n
);
825 wxCHECK_MSG( node
, NULL
, wxT("invalid index in wxListBox::DoGetItemClientData") );
827 return node
->GetData();
830 void wxListBox::DoSetItemClientObject( int n
, wxClientData
* clientData
)
832 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid listbox control") );
834 wxList::compatibility_iterator node
= m_clientList
.Item( n
);
835 wxCHECK_RET( node
, wxT("invalid index in wxListBox::DoSetItemClientObject") );
837 // wxItemContainer already deletes data for us
839 node
->SetData( (wxObject
*) clientData
);
842 wxClientData
* wxListBox::DoGetItemClientObject( int n
) const
844 wxCHECK_MSG( m_widget
!= NULL
, (wxClientData
*) NULL
, wxT("invalid listbox control") );
846 wxList::compatibility_iterator node
= m_clientList
.Item( n
);
847 wxCHECK_MSG( node
, (wxClientData
*)NULL
,
848 wxT("invalid index in wxListBox::DoGetItemClientObject") );
850 return (wxClientData
*) node
->GetData();
853 // ----------------------------------------------------------------------------
854 // string list access
855 // ----------------------------------------------------------------------------
857 wxString
wxListBox::GetRealLabel(GList
*item
) const
859 GtkBin
*bin
= GTK_BIN( item
->data
);
860 GtkLabel
*label
= GTK_LABEL( bin
->child
);
865 str
= wxGTK_CONV_BACK( gtk_label_get_text( label
) );
867 str
= wxString( label
->label
);
870 #if wxUSE_CHECKLISTBOX
871 // checklistboxes have "[±] " prepended to their lables, remove it
873 // NB: 4 below is the length of wxCHECKLBOX_STRING from wx/gtk/checklst.h
874 if ( m_hasCheckBoxes
)
876 #endif // wxUSE_CHECKLISTBOX
881 void wxListBox::SetString( int n
, const wxString
&string
)
883 wxCHECK_RET( m_list
!= NULL
, wxT("invalid listbox") );
885 GList
*child
= g_list_nth( m_list
->children
, n
);
888 GtkBin
*bin
= GTK_BIN( child
->data
);
889 GtkLabel
*label
= GTK_LABEL( bin
->child
);
892 #if wxUSE_CHECKLISTBOX
894 str
+= wxCHECKLBOX_STRING
;
895 #endif // wxUSE_CHECKLISTBOX
898 gtk_label_set( label
, wxGTK_CONV( str
) );
902 wxFAIL_MSG(wxT("wrong listbox index"));
906 wxString
wxListBox::GetString( int n
) const
908 wxCHECK_MSG( m_list
!= NULL
, wxT(""), wxT("invalid listbox") );
910 GList
*child
= g_list_nth( m_list
->children
, n
);
913 return GetRealLabel(child
);
916 wxFAIL_MSG(wxT("wrong listbox index"));
921 int wxListBox::GetCount() const
923 wxCHECK_MSG( m_list
!= NULL
, -1, wxT("invalid listbox") );
925 GList
*children
= m_list
->children
;
926 return g_list_length(children
);
929 int wxListBox::FindString( const wxString
&item
) const
931 wxCHECK_MSG( m_list
!= NULL
, -1, wxT("invalid listbox") );
933 GList
*child
= m_list
->children
;
937 if ( GetRealLabel(child
) == item
)
944 // it's not an error if the string is not found -> no wxCHECK
949 // ----------------------------------------------------------------------------
951 // ----------------------------------------------------------------------------
953 int wxListBox::GetSelection() const
955 wxCHECK_MSG( m_list
!= NULL
, -1, wxT("invalid listbox") );
957 GList
*child
= m_list
->children
;
961 if (GTK_WIDGET(child
->data
)->state
== GTK_STATE_SELECTED
) return count
;
968 int wxListBox::GetSelections( wxArrayInt
& aSelections
) const
970 wxCHECK_MSG( m_list
!= NULL
, -1, wxT("invalid listbox") );
972 // get the number of selected items first
973 GList
*child
= m_list
->children
;
975 for (child
= m_list
->children
; child
!= NULL
; child
= child
->next
)
977 if (GTK_WIDGET(child
->data
)->state
== GTK_STATE_SELECTED
)
986 aSelections
.Alloc(count
); // optimization attempt
988 for (child
= m_list
->children
; child
!= NULL
; child
= child
->next
, i
++)
990 if (GTK_WIDGET(child
->data
)->state
== GTK_STATE_SELECTED
)
998 bool wxListBox::IsSelected( int n
) const
1000 wxCHECK_MSG( m_list
!= NULL
, FALSE
, wxT("invalid listbox") );
1002 GList
*target
= g_list_nth( m_list
->children
, n
);
1004 wxCHECK_MSG( target
, FALSE
, wxT("invalid listbox index") );
1006 return (GTK_WIDGET(target
->data
)->state
== GTK_STATE_SELECTED
) ;
1009 void wxListBox::DoSetSelection( int n
, bool select
)
1011 wxCHECK_RET( m_list
!= NULL
, wxT("invalid listbox") );
1013 m_blockEvent
= TRUE
;
1017 if ((m_windowStyle
& wxLB_SINGLE
) != 0)
1018 gtk_list_unselect_item( m_list
, m_prevSelection
);
1019 gtk_list_select_item( m_list
, n
);
1020 m_prevSelection
= n
;
1023 gtk_list_unselect_item( m_list
, n
);
1025 m_blockEvent
= FALSE
;
1028 void wxListBox::DoSetFirstItem( int n
)
1030 wxCHECK_RET( m_list
, wxT("invalid listbox") );
1032 if (gdk_pointer_is_grabbed () && GTK_WIDGET_HAS_GRAB (m_list
))
1035 // terribly efficient
1036 const gchar
*vadjustment_key
= "gtk-vadjustment";
1037 guint vadjustment_key_id
= g_quark_from_static_string (vadjustment_key
);
1039 GtkAdjustment
*adjustment
=
1040 (GtkAdjustment
*) gtk_object_get_data_by_id (GTK_OBJECT (m_list
), vadjustment_key_id
);
1041 wxCHECK_RET( adjustment
, wxT("invalid listbox code") );
1043 GList
*target
= g_list_nth( m_list
->children
, n
);
1044 wxCHECK_RET( target
, wxT("invalid listbox index") );
1046 GtkWidget
*item
= GTK_WIDGET(target
->data
);
1047 wxCHECK_RET( item
, wxT("invalid listbox code") );
1049 if (item
->allocation
.y
== -1)
1051 wxlistbox_idle_struct
* data
= new wxlistbox_idle_struct
;
1052 data
->m_listbox
= this;
1054 data
->m_tag
= gtk_idle_add_priority( 800, wxlistbox_idle_callback
, (gpointer
) data
);
1059 float y
= item
->allocation
.y
;
1060 if (y
> adjustment
->upper
- adjustment
->page_size
)
1061 y
= adjustment
->upper
- adjustment
->page_size
;
1062 gtk_adjustment_set_value( adjustment
, y
);
1065 // ----------------------------------------------------------------------------
1067 // ----------------------------------------------------------------------------
1069 int wxListBox::GtkGetIndex( GtkWidget
*item
) const
1073 GList
*child
= m_list
->children
;
1077 if (GTK_WIDGET(child
->data
) == item
) return count
;
1079 child
= child
->next
;
1086 void wxListBox::ApplyToolTip( GtkTooltips
*tips
, const wxChar
*tip
)
1088 GList
*child
= m_list
->children
;
1091 gtk_tooltips_set_tip( tips
, GTK_WIDGET( child
->data
), wxConvCurrent
->cWX2MB(tip
), (gchar
*) NULL
);
1092 child
= child
->next
;
1095 #endif // wxUSE_TOOLTIPS
1097 GtkWidget
*wxListBox::GetConnectWidget()
1099 // return GTK_WIDGET(m_list);
1103 bool wxListBox::IsOwnGtkWindow( GdkWindow
*window
)
1108 if (m_widget
->window
== window
) return TRUE
;
1110 if (GTK_WIDGET(m_list
)->window
== window
) return TRUE
;
1112 GList
*child
= m_list
->children
;
1115 GtkWidget
*bin
= GTK_WIDGET( child
->data
);
1116 if (bin
->window
== window
) return TRUE
;
1117 child
= child
->next
;
1124 void wxListBox::DoApplyWidgetStyle(GtkRcStyle
*style
)
1126 if (m_hasBgCol
&& m_backgroundColour
.Ok())
1128 GdkWindow
*window
= GTK_WIDGET(m_list
)->window
;
1131 m_backgroundColour
.CalcPixel( gdk_window_get_colormap( window
) );
1132 gdk_window_set_background( window
, m_backgroundColour
.GetColor() );
1133 gdk_window_clear( window
);
1137 GList
*child
= m_list
->children
;
1140 gtk_widget_modify_style( GTK_WIDGET(child
->data
), style
);
1142 GtkBin
*bin
= GTK_BIN( child
->data
);
1143 GtkWidget
*label
= GTK_WIDGET( bin
->child
);
1144 gtk_widget_modify_style( label
, style
);
1146 child
= child
->next
;
1150 void wxListBox::OnInternalIdle()
1152 wxCursor cursor
= m_cursor
;
1153 if (g_globalCursor
.Ok()) cursor
= g_globalCursor
;
1155 if (GTK_WIDGET(m_list
)->window
&& cursor
.Ok())
1157 /* I now set the cursor the anew in every OnInternalIdle call
1158 as setting the cursor in a parent window also effects the
1159 windows above so that checking for the current cursor is
1162 gdk_window_set_cursor( GTK_WIDGET(m_list
)->window
, cursor
.GetCursor() );
1164 GList
*child
= m_list
->children
;
1167 GtkBin
*bin
= GTK_BIN( child
->data
);
1168 GtkWidget
*label
= GTK_WIDGET( bin
->child
);
1173 gdk_window_set_cursor( label
->window
, cursor
.GetCursor() );
1175 child
= child
->next
;
1179 if (g_delayedFocus
== this)
1181 if (GTK_WIDGET_REALIZED(m_widget
))
1183 gtk_widget_grab_focus( m_widget
);
1184 g_delayedFocus
= NULL
;
1188 if (wxUpdateUIEvent::CanUpdate(this))
1189 UpdateWindowUI(wxUPDATE_UI_FROMIDLE
);
1192 wxSize
wxListBox::DoGetBestSize() const
1194 int lbWidth
= 100; // some defaults
1198 // Find the widest line
1199 for(int i
= 0; i
< GetCount(); i
++) {
1200 wxString
str(GetString(i
));
1201 GetTextExtent(str
, &wLine
, NULL
);
1202 lbWidth
= wxMax(lbWidth
, wLine
);
1205 // Add room for the scrollbar
1206 lbWidth
+= wxSystemSettings::GetMetric(wxSYS_VSCROLL_X
);
1208 // And just a bit more
1210 GetTextExtent( wxT("X"), &cx
, &cy
);
1213 // don't make the listbox too tall (limit height to around 10 items) but don't
1214 // make it too small neither
1215 lbHeight
= (cy
+4) * wxMin(wxMax(GetCount(), 3), 10);
1217 wxSize
best(lbWidth
, lbHeight
);
1218 CacheBestSize(best
);
1222 void wxListBox::FixUpMouseEvent(GtkWidget
*widget
, wxCoord
& x
, wxCoord
& y
)
1224 // the mouse event coords are relative to the listbox items, we need to
1225 // translate them to the normal client coords
1226 x
+= widget
->allocation
.x
;
1227 y
+= widget
->allocation
.y
;
1233 wxListBox::GetClassDefaultAttributes(wxWindowVariant
WXUNUSED(variant
))
1235 return GetDefaultAttributesFromGTKWidget(gtk_list_new
, true);
1238 #endif // wxUSE_LISTBOX