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
;
55 static bool g_hasDoubleClicked
= FALSE
;
57 //-----------------------------------------------------------------------------
58 // idle callback for SetFirstItem
59 //-----------------------------------------------------------------------------
61 struct wxlistbox_idle_struct
68 extern "C" gint
wxlistbox_idle_callback( gpointer gdata
)
70 wxlistbox_idle_struct
* data
= (wxlistbox_idle_struct
*) gdata
;
73 gtk_idle_remove( data
->m_tag
);
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() )
80 lbox
->SetFirstItem( data
->m_item
);
90 //-----------------------------------------------------------------------------
91 // "button_release_event"
92 //-----------------------------------------------------------------------------
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 */
101 gtk_listbox_button_release_callback( GtkWidget
* WXUNUSED(widget
),
102 GdkEventButton
* WXUNUSED(gdk_event
),
105 if (g_isIdle
) wxapp_install_idle_handler();
107 if (g_blockEventsOnDrag
) return FALSE
;
108 if (g_blockEventsOnScroll
) return FALSE
;
110 if (!listbox
->m_hasVMT
) return FALSE
;
112 if (!g_hasDoubleClicked
) return FALSE
;
114 wxCommandEvent
event( wxEVT_COMMAND_LISTBOX_DOUBLECLICKED
, listbox
->GetId() );
115 event
.SetEventObject( listbox
);
117 wxArrayInt aSelections
;
118 int n
, count
= listbox
->GetSelections(aSelections
);
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
) );
133 event
.m_commandInt
= n
;
135 listbox
->GetEventHandler()->ProcessEvent( event
);
140 //-----------------------------------------------------------------------------
141 // "button_press_event"
142 //-----------------------------------------------------------------------------
145 gtk_listbox_button_press_callback( GtkWidget
*widget
,
146 GdkEventButton
*gdk_event
,
149 if (g_isIdle
) wxapp_install_idle_handler();
151 if (g_blockEventsOnDrag
) return FALSE
;
152 if (g_blockEventsOnScroll
) return FALSE
;
154 if (!listbox
->m_hasVMT
) return FALSE
;
156 int sel
= listbox
->GtkGetIndex( widget
);
158 #if wxUSE_CHECKLISTBOX
159 if ((listbox
->m_hasCheckBoxes
) && (gdk_event
->x
< 15) && (gdk_event
->type
!= GDK_2BUTTON_PRESS
))
161 wxCheckListBox
*clb
= (wxCheckListBox
*)listbox
;
163 clb
->Check( sel
, !clb
->IsChecked(sel
) );
165 wxCommandEvent
event( wxEVT_COMMAND_CHECKLISTBOX_TOGGLED
, listbox
->GetId() );
166 event
.SetEventObject( listbox
);
168 listbox
->GetEventHandler()->ProcessEvent( event
);
170 #endif // wxUSE_CHECKLISTBOX
172 /* emit wxEVT_COMMAND_LISTBOX_DOUBLECLICKED later */
173 g_hasDoubleClicked
= (gdk_event
->type
== GDK_2BUTTON_PRESS
);
178 //-----------------------------------------------------------------------------
180 //-----------------------------------------------------------------------------
183 gtk_listbox_key_press_callback( GtkWidget
*widget
, GdkEventKey
*gdk_event
, wxListBox
*listbox
)
186 wxapp_install_idle_handler();
188 if (g_blockEventsOnDrag
)
193 if ((gdk_event
->keyval
== GDK_Tab
) || (gdk_event
->keyval
== GDK_ISO_Left_Tab
))
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
);
204 if ((gdk_event
->keyval
== GDK_Return
) && (!ret
))
206 // eat return in all modes
210 #if wxUSE_CHECKLISTBOX
211 if ((gdk_event
->keyval
== ' ') && (listbox
->m_hasCheckBoxes
) && (!ret
))
213 int sel
= listbox
->GtkGetIndex( widget
);
215 wxCheckListBox
*clb
= (wxCheckListBox
*)listbox
;
217 clb
->Check( sel
, !clb
->IsChecked(sel
) );
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
);
224 #endif // wxUSE_CHECKLISTBOX
226 // Check or uncheck item with SPACE
227 if ((gdk_event
->keyval
== ' ') && (!ret
) &&
228 (((listbox
->GetWindowStyleFlag() & wxLB_MULTIPLE
) != 0) ||
229 ((listbox
->GetWindowStyleFlag() & wxLB_EXTENDED
) != 0)) )
231 int sel
= listbox
->GtkGetIndex( widget
);
237 if (listbox
->IsSelected( sel
))
238 gtk_list_unselect_item( listbox
->m_list
, sel
);
240 gtk_list_select_item( listbox
->m_list
, sel
);
242 wxCommandEvent
new_event(wxEVT_COMMAND_LISTBOX_SELECTED
, listbox
->GetId() );
243 new_event
.SetEventObject( listbox
);
244 wxArrayInt aSelections
;
245 int n
, count
= listbox
->GetSelections(aSelections
);
249 if ( listbox
->HasClientObjectData() )
250 new_event
.SetClientObject( listbox
->GetClientObject(n
) );
251 else if ( listbox
->HasClientUntypedData() )
252 new_event
.SetClientData( listbox
->GetClientData(n
) );
253 new_event
.SetString( listbox
->GetString(n
) );
259 new_event
.m_commandInt
= n
;
260 listbox
->GetEventHandler()->ProcessEvent( new_event
);
266 gtk_signal_emit_stop_by_name( GTK_OBJECT(widget
), "key_press_event" );
273 //-----------------------------------------------------------------------------
274 // "select" and "deselect"
275 //-----------------------------------------------------------------------------
277 static void gtk_listitem_select_cb( GtkWidget
*widget
, wxListBox
*listbox
, bool is_selection
);
279 static void gtk_listitem_select_callback( GtkWidget
*widget
, wxListBox
*listbox
)
281 gtk_listitem_select_cb( widget
, listbox
, TRUE
);
284 static void gtk_listitem_deselect_callback( GtkWidget
*widget
, wxListBox
*listbox
)
286 gtk_listitem_select_cb( widget
, listbox
, FALSE
);
289 static void gtk_listitem_select_cb( GtkWidget
*widget
,
293 if (g_isIdle
) wxapp_install_idle_handler();
295 if (!listbox
->m_hasVMT
) return;
296 if (g_blockEventsOnDrag
) return;
298 if (listbox
->m_blockEvent
) return;
300 wxCommandEvent
event(wxEVT_COMMAND_LISTBOX_SELECTED
, listbox
->GetId() );
301 event
.SetEventObject( listbox
);
303 // indicate whether this is a selection or a deselection
304 event
.SetExtraLong( is_selection
);
306 if ((listbox
->GetWindowStyleFlag() & wxLB_SINGLE
) != 0)
308 int sel
= listbox
->GtkGetIndex( widget
);
310 if (listbox
->m_prevSelection
!= sel
)
311 gtk_list_unselect_item( listbox
->m_list
, listbox
->m_prevSelection
);
313 listbox
->m_prevSelection
= sel
;
316 wxArrayInt aSelections
;
317 int n
, count
= listbox
->GetSelections(aSelections
);
321 if ( listbox
->HasClientObjectData() )
322 event
.SetClientObject( listbox
->GetClientObject(n
) );
323 else if ( listbox
->HasClientUntypedData() )
324 event
.SetClientData( listbox
->GetClientData(n
) );
325 event
.SetString( listbox
->GetString(n
) );
332 event
.m_commandInt
= n
;
334 // No longer required with new code in wxLB_SINGLE
335 // listbox->GetEventHandler()->AddPendingEvent( event );
336 listbox
->GetEventHandler()->ProcessEvent( event
);
339 //-----------------------------------------------------------------------------
341 //-----------------------------------------------------------------------------
343 IMPLEMENT_DYNAMIC_CLASS(wxListBox
,wxControl
)
345 // ----------------------------------------------------------------------------
347 // ----------------------------------------------------------------------------
349 wxListBox::wxListBox()
351 m_list
= (GtkList
*) NULL
;
352 #if wxUSE_CHECKLISTBOX
353 m_hasCheckBoxes
= FALSE
;
354 #endif // wxUSE_CHECKLISTBOX
357 bool wxListBox::Create( wxWindow
*parent
, wxWindowID id
,
358 const wxPoint
&pos
, const wxSize
&size
,
359 const wxArrayString
& choices
,
360 long style
, const wxValidator
& validator
,
361 const wxString
&name
)
363 wxCArrayString
chs(choices
);
365 return Create( parent
, id
, pos
, size
, chs
.GetCount(), chs
.GetStrings(),
366 style
, validator
, name
);
369 bool wxListBox::Create( wxWindow
*parent
, wxWindowID id
,
370 const wxPoint
&pos
, const wxSize
&size
,
371 int n
, const wxString choices
[],
372 long style
, const wxValidator
& validator
,
373 const wxString
&name
)
376 m_acceptsFocus
= TRUE
;
377 m_prevSelection
= 0; // or -1 ??
378 m_blockEvent
= FALSE
;
380 if (!PreCreation( parent
, pos
, size
) ||
381 !CreateBase( parent
, id
, pos
, size
, style
, validator
, name
))
383 wxFAIL_MSG( wxT("wxListBox creation failed") );
387 m_widget
= gtk_scrolled_window_new( (GtkAdjustment
*) NULL
, (GtkAdjustment
*) NULL
);
388 if (style
& wxLB_ALWAYS_SB
)
390 gtk_scrolled_window_set_policy( GTK_SCROLLED_WINDOW(m_widget
),
391 GTK_POLICY_AUTOMATIC
, GTK_POLICY_ALWAYS
);
395 gtk_scrolled_window_set_policy( GTK_SCROLLED_WINDOW(m_widget
),
396 GTK_POLICY_AUTOMATIC
, GTK_POLICY_AUTOMATIC
);
399 m_list
= GTK_LIST( gtk_list_new() );
401 GtkSelectionMode mode
;
402 if (style
& wxLB_MULTIPLE
)
404 mode
= GTK_SELECTION_MULTIPLE
;
406 else if (style
& wxLB_EXTENDED
)
408 mode
= GTK_SELECTION_EXTENDED
;
412 // if style was 0 set single mode
413 m_windowStyle
|= wxLB_SINGLE
;
414 mode
= GTK_SELECTION_MULTIPLE
;
417 gtk_list_set_selection_mode( GTK_LIST(m_list
), mode
);
419 gtk_scrolled_window_add_with_viewport( GTK_SCROLLED_WINDOW(m_widget
), GTK_WIDGET(m_list
) );
421 /* make list scroll when moving the focus down using cursor keys */
422 gtk_container_set_focus_vadjustment(
423 GTK_CONTAINER(m_list
),
424 gtk_scrolled_window_get_vadjustment(
425 GTK_SCROLLED_WINDOW(m_widget
)));
427 gtk_widget_show( GTK_WIDGET(m_list
) );
429 if ( style
& wxLB_SORT
)
431 // this will change DoAppend() behaviour
432 m_strings
= new wxSortedArrayString
;
436 m_strings
= (wxSortedArrayString
*)NULL
;
439 for (int i
= 0; i
< n
; i
++)
442 DoAppend(choices
[i
]);
445 m_parent
->DoAddChild( this );
448 SetBestSize(size
); // need this too because this is a wxControlWithItems
453 wxListBox::~wxListBox()
463 // ----------------------------------------------------------------------------
465 // ----------------------------------------------------------------------------
467 void wxListBox::DoInsertItems(const wxArrayString
& items
, int pos
)
469 wxCHECK_RET( m_list
!= NULL
, wxT("invalid listbox") );
471 // VZ: notice that InsertItems knows nothing about sorting, so calling it
472 // from outside (and not from our own Append) is likely to break
475 // code elsewhere supposes we have as many items in m_clientList as items
477 wxASSERT_MSG( m_clientList
.GetCount() == (size_t)GetCount(),
478 wxT("bug in client data management") );
480 InvalidateBestSize();
482 GList
*children
= m_list
->children
;
483 int length
= g_list_length(children
);
485 wxCHECK_RET( pos
<= length
, wxT("invalid index in wxListBox::InsertItems") );
487 size_t nItems
= items
.GetCount();
492 for (size_t n
= 0; n
< nItems
; n
++)
494 index
= m_strings
->Add( items
[n
] );
496 if (index
!= GetCount())
498 GtkAddItem( items
[n
], index
);
499 wxList::compatibility_iterator node
= m_clientList
.Item( index
);
500 m_clientList
.Insert( node
, (wxObject
*) NULL
);
504 GtkAddItem( items
[n
] );
505 m_clientList
.Append( (wxObject
*) NULL
);
513 for ( size_t n
= 0; n
< nItems
; n
++ )
515 GtkAddItem( items
[n
] );
517 m_clientList
.Append((wxObject
*)NULL
);
522 wxList::compatibility_iterator node
= m_clientList
.Item( pos
);
523 for ( size_t n
= 0; n
< nItems
; n
++ )
525 GtkAddItem( items
[n
], pos
+n
);
527 m_clientList
.Insert( node
, (wxObject
*)NULL
);
532 wxASSERT_MSG( m_clientList
.GetCount() == (size_t)GetCount(),
533 wxT("bug in client data management") );
536 int wxListBox::DoAppend( const wxString
& item
)
538 InvalidateBestSize();
542 // need to determine the index
543 int index
= m_strings
->Add( item
);
545 // only if not at the end anyway
546 if (index
!= GetCount())
548 GtkAddItem( item
, index
);
550 wxList::compatibility_iterator node
= m_clientList
.Item( index
);
551 m_clientList
.Insert( node
, (wxObject
*)NULL
);
559 m_clientList
.Append((wxObject
*)NULL
);
561 return GetCount() - 1;
564 void wxListBox::GtkAddItem( const wxString
&item
, int pos
)
566 wxCHECK_RET( m_list
!= NULL
, wxT("invalid listbox") );
568 GtkWidget
*list_item
;
570 wxString
label(item
);
571 #if wxUSE_CHECKLISTBOX
574 label
.Prepend(wxCHECKLBOX_STRING
);
576 #endif // wxUSE_CHECKLISTBOX
578 list_item
= gtk_list_item_new_with_label( wxGTK_CONV( label
) );
580 GList
*gitem_list
= g_list_alloc ();
581 gitem_list
->data
= list_item
;
584 gtk_list_append_items( GTK_LIST (m_list
), gitem_list
);
586 gtk_list_insert_items( GTK_LIST (m_list
), gitem_list
, pos
);
588 gtk_signal_connect( GTK_OBJECT(list_item
), "select",
589 GTK_SIGNAL_FUNC(gtk_listitem_select_callback
), (gpointer
)this );
591 if (HasFlag(wxLB_MULTIPLE
) || HasFlag(wxLB_EXTENDED
))
592 gtk_signal_connect( GTK_OBJECT(list_item
), "deselect",
593 GTK_SIGNAL_FUNC(gtk_listitem_deselect_callback
), (gpointer
)this );
595 gtk_signal_connect( GTK_OBJECT(list_item
),
596 "button_press_event",
597 (GtkSignalFunc
)gtk_listbox_button_press_callback
,
600 gtk_signal_connect_after( GTK_OBJECT(list_item
),
601 "button_release_event",
602 (GtkSignalFunc
)gtk_listbox_button_release_callback
,
605 gtk_signal_connect( GTK_OBJECT(list_item
),
607 (GtkSignalFunc
)gtk_listbox_key_press_callback
,
610 ConnectWidget( list_item
);
612 gtk_widget_show( list_item
);
614 if (GTK_WIDGET_REALIZED(m_widget
))
616 gtk_widget_realize( list_item
);
617 gtk_widget_realize( GTK_BIN(list_item
)->child
);
620 if (m_tooltip
) m_tooltip
->Apply( this );
624 // Apply current widget style to the new list_item
625 GtkRcStyle
*style
= CreateWidgetStyle();
628 gtk_widget_modify_style( GTK_WIDGET( list_item
), style
);
629 GtkBin
*bin
= GTK_BIN( list_item
);
630 GtkWidget
*label
= GTK_WIDGET( bin
->child
);
631 gtk_widget_modify_style( label
, style
);
632 gtk_rc_style_unref( style
);
636 void wxListBox::DoSetItems( const wxArrayString
& items
,
641 DoInsertItems(items
, 0);
645 size_t count
= items
.GetCount();
646 for ( size_t n
= 0; n
< count
; n
++ )
648 SetClientData(n
, clientData
[n
]);
653 // ----------------------------------------------------------------------------
655 // ----------------------------------------------------------------------------
657 void wxListBox::Clear()
659 wxCHECK_RET( m_list
!= NULL
, wxT("invalid listbox") );
661 gtk_list_clear_items( m_list
, 0, GetCount() );
663 if ( GTK_LIST(m_list
)->last_focus_child
!= NULL
)
665 // This should be NULL, I think.
666 GTK_LIST(m_list
)->last_focus_child
= NULL
;
669 if ( HasClientObjectData() )
671 // destroy the data (due to Robert's idea of using wxList<wxObject>
672 // and not wxList<wxClientData> we can't just say
673 // m_clientList.DeleteContents(TRUE) - this would crash!
674 wxList::compatibility_iterator node
= m_clientList
.GetFirst();
677 delete (wxClientData
*)node
->GetData();
678 node
= node
->GetNext();
681 m_clientList
.Clear();
687 void wxListBox::Delete( int n
)
689 wxCHECK_RET( m_list
!= NULL
, wxT("invalid listbox") );
691 GList
*child
= g_list_nth( m_list
->children
, n
);
693 wxCHECK_RET( child
, wxT("wrong listbox index") );
695 GList
*list
= g_list_append( (GList
*) NULL
, child
->data
);
696 gtk_list_remove_items( m_list
, list
);
699 wxList::compatibility_iterator node
= m_clientList
.Item( n
);
702 if ( m_clientDataItemsType
== wxClientData_Object
)
704 wxClientData
*cd
= (wxClientData
*)node
->GetData();
708 m_clientList
.Erase( node
);
712 m_strings
->RemoveAt(n
);
715 // ----------------------------------------------------------------------------
717 // ----------------------------------------------------------------------------
719 void wxListBox::DoSetItemClientData( int n
, void* clientData
)
721 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid listbox control") );
723 wxList::compatibility_iterator node
= m_clientList
.Item( n
);
724 wxCHECK_RET( node
, wxT("invalid index in wxListBox::DoSetItemClientData") );
726 node
->SetData( (wxObject
*) clientData
);
729 void* wxListBox::DoGetItemClientData( int n
) const
731 wxCHECK_MSG( m_widget
!= NULL
, NULL
, wxT("invalid listbox control") );
733 wxList::compatibility_iterator node
= m_clientList
.Item( n
);
734 wxCHECK_MSG( node
, NULL
, wxT("invalid index in wxListBox::DoGetItemClientData") );
736 return node
->GetData();
739 void wxListBox::DoSetItemClientObject( int n
, wxClientData
* clientData
)
741 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid listbox control") );
743 wxList::compatibility_iterator node
= m_clientList
.Item( n
);
744 wxCHECK_RET( node
, wxT("invalid index in wxListBox::DoSetItemClientObject") );
746 // wxItemContainer already deletes data for us
748 node
->SetData( (wxObject
*) clientData
);
751 wxClientData
* wxListBox::DoGetItemClientObject( int n
) const
753 wxCHECK_MSG( m_widget
!= NULL
, (wxClientData
*) NULL
, wxT("invalid listbox control") );
755 wxList::compatibility_iterator node
= m_clientList
.Item( n
);
756 wxCHECK_MSG( node
, (wxClientData
*)NULL
,
757 wxT("invalid index in wxListBox::DoGetItemClientObject") );
759 return (wxClientData
*) node
->GetData();
762 // ----------------------------------------------------------------------------
763 // string list access
764 // ----------------------------------------------------------------------------
766 wxString
wxListBox::GetRealLabel(GList
*item
) const
768 GtkBin
*bin
= GTK_BIN( item
->data
);
769 GtkLabel
*label
= GTK_LABEL( bin
->child
);
774 str
= wxGTK_CONV_BACK( gtk_label_get_text( label
) );
776 str
= wxString( label
->label
);
779 #if wxUSE_CHECKLISTBOX
780 // checklistboxes have "[±] " prepended to their lables, remove it
782 // NB: 4 below is the length of wxCHECKLBOX_STRING from wx/gtk/checklst.h
783 if ( m_hasCheckBoxes
)
785 #endif // wxUSE_CHECKLISTBOX
790 void wxListBox::SetString( int n
, const wxString
&string
)
792 wxCHECK_RET( m_list
!= NULL
, wxT("invalid listbox") );
794 GList
*child
= g_list_nth( m_list
->children
, n
);
797 GtkBin
*bin
= GTK_BIN( child
->data
);
798 GtkLabel
*label
= GTK_LABEL( bin
->child
);
801 #if wxUSE_CHECKLISTBOX
803 str
+= wxCHECKLBOX_STRING
;
804 #endif // wxUSE_CHECKLISTBOX
807 gtk_label_set( label
, wxGTK_CONV( str
) );
811 wxFAIL_MSG(wxT("wrong listbox index"));
815 wxString
wxListBox::GetString( int n
) const
817 wxCHECK_MSG( m_list
!= NULL
, wxT(""), wxT("invalid listbox") );
819 GList
*child
= g_list_nth( m_list
->children
, n
);
822 return GetRealLabel(child
);
825 wxFAIL_MSG(wxT("wrong listbox index"));
830 int wxListBox::GetCount() const
832 wxCHECK_MSG( m_list
!= NULL
, -1, wxT("invalid listbox") );
834 GList
*children
= m_list
->children
;
835 return g_list_length(children
);
838 int wxListBox::FindString( const wxString
&item
) const
840 wxCHECK_MSG( m_list
!= NULL
, -1, wxT("invalid listbox") );
842 GList
*child
= m_list
->children
;
846 if ( GetRealLabel(child
) == item
)
853 // it's not an error if the string is not found -> no wxCHECK
858 // ----------------------------------------------------------------------------
860 // ----------------------------------------------------------------------------
862 int wxListBox::GetSelection() const
864 wxCHECK_MSG( m_list
!= NULL
, -1, wxT("invalid listbox") );
866 GList
*child
= m_list
->children
;
870 if (GTK_WIDGET(child
->data
)->state
== GTK_STATE_SELECTED
) return count
;
877 int wxListBox::GetSelections( wxArrayInt
& aSelections
) const
879 wxCHECK_MSG( m_list
!= NULL
, -1, wxT("invalid listbox") );
881 // get the number of selected items first
882 GList
*child
= m_list
->children
;
884 for (child
= m_list
->children
; child
!= NULL
; child
= child
->next
)
886 if (GTK_WIDGET(child
->data
)->state
== GTK_STATE_SELECTED
)
895 aSelections
.Alloc(count
); // optimization attempt
897 for (child
= m_list
->children
; child
!= NULL
; child
= child
->next
, i
++)
899 if (GTK_WIDGET(child
->data
)->state
== GTK_STATE_SELECTED
)
907 bool wxListBox::IsSelected( int n
) const
909 wxCHECK_MSG( m_list
!= NULL
, FALSE
, wxT("invalid listbox") );
911 GList
*target
= g_list_nth( m_list
->children
, n
);
913 wxCHECK_MSG( target
, FALSE
, wxT("invalid listbox index") );
915 return (GTK_WIDGET(target
->data
)->state
== GTK_STATE_SELECTED
) ;
918 void wxListBox::SetSelection( int n
, bool select
)
920 wxCHECK_RET( m_list
!= NULL
, wxT("invalid listbox") );
926 if ((m_windowStyle
& wxLB_SINGLE
) != 0)
927 gtk_list_unselect_item( m_list
, m_prevSelection
);
928 gtk_list_select_item( m_list
, n
);
932 gtk_list_unselect_item( m_list
, n
);
934 m_blockEvent
= FALSE
;
937 void wxListBox::DoSetFirstItem( int n
)
939 wxCHECK_RET( m_list
, wxT("invalid listbox") );
941 if (gdk_pointer_is_grabbed () && GTK_WIDGET_HAS_GRAB (m_list
))
944 // terribly efficient
945 const gchar
*vadjustment_key
= "gtk-vadjustment";
946 guint vadjustment_key_id
= g_quark_from_static_string (vadjustment_key
);
948 GtkAdjustment
*adjustment
=
949 (GtkAdjustment
*) gtk_object_get_data_by_id (GTK_OBJECT (m_list
), vadjustment_key_id
);
950 wxCHECK_RET( adjustment
, wxT("invalid listbox code") );
952 GList
*target
= g_list_nth( m_list
->children
, n
);
953 wxCHECK_RET( target
, wxT("invalid listbox index") );
955 GtkWidget
*item
= GTK_WIDGET(target
->data
);
956 wxCHECK_RET( item
, wxT("invalid listbox code") );
958 if (item
->allocation
.y
== -1)
960 wxlistbox_idle_struct
* data
= new wxlistbox_idle_struct
;
961 data
->m_listbox
= this;
963 data
->m_tag
= gtk_idle_add_priority( 800, wxlistbox_idle_callback
, (gpointer
) data
);
968 float y
= item
->allocation
.y
;
969 if (y
> adjustment
->upper
- adjustment
->page_size
)
970 y
= adjustment
->upper
- adjustment
->page_size
;
971 gtk_adjustment_set_value( adjustment
, y
);
974 // ----------------------------------------------------------------------------
976 // ----------------------------------------------------------------------------
978 int wxListBox::GtkGetIndex( GtkWidget
*item
) const
982 GList
*child
= m_list
->children
;
986 if (GTK_WIDGET(child
->data
) == item
) return count
;
995 void wxListBox::ApplyToolTip( GtkTooltips
*tips
, const wxChar
*tip
)
997 GList
*child
= m_list
->children
;
1000 gtk_tooltips_set_tip( tips
, GTK_WIDGET( child
->data
), wxConvCurrent
->cWX2MB(tip
), (gchar
*) NULL
);
1001 child
= child
->next
;
1004 #endif // wxUSE_TOOLTIPS
1006 GtkWidget
*wxListBox::GetConnectWidget()
1008 // return GTK_WIDGET(m_list);
1012 bool wxListBox::IsOwnGtkWindow( GdkWindow
*window
)
1017 if (m_widget
->window
== window
) return TRUE
;
1019 if (GTK_WIDGET(m_list
)->window
== window
) return TRUE
;
1021 GList
*child
= m_list
->children
;
1024 GtkWidget
*bin
= GTK_WIDGET( child
->data
);
1025 if (bin
->window
== window
) return TRUE
;
1026 child
= child
->next
;
1033 void wxListBox::DoApplyWidgetStyle(GtkRcStyle
*style
)
1035 if (m_hasBgCol
&& m_backgroundColour
.Ok())
1037 GdkWindow
*window
= GTK_WIDGET(m_list
)->window
;
1040 m_backgroundColour
.CalcPixel( gdk_window_get_colormap( window
) );
1041 gdk_window_set_background( window
, m_backgroundColour
.GetColor() );
1042 gdk_window_clear( window
);
1046 GList
*child
= m_list
->children
;
1049 gtk_widget_modify_style( GTK_WIDGET(child
->data
), style
);
1051 GtkBin
*bin
= GTK_BIN( child
->data
);
1052 GtkWidget
*label
= GTK_WIDGET( bin
->child
);
1053 gtk_widget_modify_style( label
, style
);
1055 child
= child
->next
;
1059 void wxListBox::OnInternalIdle()
1061 wxCursor cursor
= m_cursor
;
1062 if (g_globalCursor
.Ok()) cursor
= g_globalCursor
;
1064 if (GTK_WIDGET(m_list
)->window
&& cursor
.Ok())
1066 /* I now set the cursor the anew in every OnInternalIdle call
1067 as setting the cursor in a parent window also effects the
1068 windows above so that checking for the current cursor is
1071 gdk_window_set_cursor( GTK_WIDGET(m_list
)->window
, cursor
.GetCursor() );
1073 GList
*child
= m_list
->children
;
1076 GtkBin
*bin
= GTK_BIN( child
->data
);
1077 GtkWidget
*label
= GTK_WIDGET( bin
->child
);
1082 gdk_window_set_cursor( label
->window
, cursor
.GetCursor() );
1084 child
= child
->next
;
1088 if (g_delayedFocus
== this)
1090 if (GTK_WIDGET_REALIZED(m_widget
))
1092 gtk_widget_grab_focus( m_widget
);
1093 g_delayedFocus
= NULL
;
1097 if (wxUpdateUIEvent::CanUpdate(this))
1098 UpdateWindowUI(wxUPDATE_UI_FROMIDLE
);
1101 wxSize
wxListBox::DoGetBestSize() const
1103 int lbWidth
= 100; // some defaults
1107 // Find the widest line
1108 for(int i
= 0; i
< GetCount(); i
++) {
1109 wxString
str(GetString(i
));
1110 GetTextExtent(str
, &wLine
, NULL
);
1111 lbWidth
= wxMax(lbWidth
, wLine
);
1114 // Add room for the scrollbar
1115 lbWidth
+= wxSystemSettings::GetMetric(wxSYS_VSCROLL_X
);
1117 // And just a bit more
1119 GetTextExtent( wxT("X"), &cx
, &cy
);
1122 // don't make the listbox too tall (limit height to around 10 items) but don't
1123 // make it too small neither
1124 lbHeight
= (cy
+4) * wxMin(wxMax(GetCount(), 3), 10);
1126 wxSize
best(lbWidth
, lbHeight
);
1127 CacheBestSize(best
);
1131 void wxListBox::FixUpMouseEvent(GtkWidget
*widget
, wxCoord
& x
, wxCoord
& y
)
1133 // the mouse event coords are relative to the listbox items, we need to
1134 // translate them to the normal client coords
1135 x
+= widget
->allocation
.x
;
1136 y
+= widget
->allocation
.y
;
1142 wxListBox::GetClassDefaultAttributes(wxWindowVariant
WXUNUSED(variant
))
1144 return GetDefaultAttributesFromGTKWidget(gtk_list_new
, true);
1147 #endif // wxUSE_LISTBOX