1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/gtk1/listbox.cpp
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 // For compilers that support precompilation, includes "wx.h".
11 #include "wx/wxprec.h"
15 #include "wx/listbox.h"
18 #include "wx/dynarray.h"
21 #include "wx/settings.h"
22 #include "wx/checklst.h"
23 #include "wx/arrstr.h"
26 #include "wx/gtk1/private.h"
29 #include "wx/tooltip.h"
34 #include <gdk/gdkkeysyms.h>
36 //-----------------------------------------------------------------------------
38 //-----------------------------------------------------------------------------
40 extern void wxapp_install_idle_handler();
43 //-----------------------------------------------------------------------------
45 //-----------------------------------------------------------------------------
47 extern bool g_blockEventsOnDrag
;
48 extern bool g_blockEventsOnScroll
;
49 extern wxCursor g_globalCursor
;
50 extern wxWindowGTK
*g_delayedFocus
;
51 extern wxWindowGTK
*g_focusWindow
;
52 extern wxWindowGTK
*g_focusWindowLast
;
54 static bool g_hasDoubleClicked
= false;
56 //-----------------------------------------------------------------------------
57 // idle callback for SetFirstItem
58 //-----------------------------------------------------------------------------
60 struct wxlistbox_idle_struct
68 static 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
< (int)lbox
->GetCount() )
80 lbox
->SetFirstItem( data
->m_item
);
91 //-----------------------------------------------------------------------------
93 //-----------------------------------------------------------------------------
96 static gint
gtk_listitem_focus_in_callback( GtkWidget
*WXUNUSED(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
->HandleWindowEvent(eventChildFocus
);
115 wxFocusEvent
eventFocus(wxEVT_SET_FOCUS
, win
->GetId());
116 eventFocus
.SetEventObject(win
);
118 (void)win
->HandleWindowEvent(eventFocus
);
125 //-----------------------------------------------------------------------------
127 //-----------------------------------------------------------------------------
130 static gint
gtk_listitem_focus_out_callback( GtkWidget
*WXUNUSED(widget
),
131 GdkEventFocus
*WXUNUSED(gdk_event
),
135 wxapp_install_idle_handler();
137 g_focusWindow
= (wxWindowGTK
*)NULL
;
139 // don't send the window a kill focus event if it thinks that it doesn't
140 // have focus already
141 if ( win
->m_hasFocus
)
143 win
->m_hasFocus
= false;
145 wxFocusEvent
event( wxEVT_KILL_FOCUS
, win
->GetId() );
146 event
.SetEventObject( win
);
148 // even if we did process the event in wx code, still let GTK itself
149 // process it too as otherwise bad things happen, especially in GTK2
150 // where the text control simply aborts the program if it doesn't get
151 // the matching focus out event
152 (void)win
->HandleWindowEvent( event
);
159 //-----------------------------------------------------------------------------
160 // "button_release_event"
161 //-----------------------------------------------------------------------------
163 /* we would normally emit a wxEVT_COMMAND_LISTBOX_DOUBLECLICKED event once
164 a GDK_2BUTTON_PRESS occurs, but this has the particular problem of the
165 listbox keeping the focus until it receives a GDK_BUTTON_RELEASE event.
166 this can lead to race conditions so that we emit the dclick event
167 after the GDK_BUTTON_RELEASE event after the GDK_2BUTTON_PRESS event */
171 gtk_listbox_button_release_callback( GtkWidget
* WXUNUSED(widget
),
172 GdkEventButton
* WXUNUSED(gdk_event
),
175 if (g_isIdle
) wxapp_install_idle_handler();
177 if (g_blockEventsOnDrag
) return FALSE
;
178 if (g_blockEventsOnScroll
) return FALSE
;
180 if (!listbox
->m_hasVMT
) return FALSE
;
182 if (!g_hasDoubleClicked
) return FALSE
;
184 wxCommandEvent
event( wxEVT_COMMAND_LISTBOX_DOUBLECLICKED
, listbox
->GetId() );
185 event
.SetEventObject( listbox
);
187 wxArrayInt aSelections
;
188 int n
, count
= listbox
->GetSelections(aSelections
);
192 if ( listbox
->HasClientObjectData() )
193 event
.SetClientObject( listbox
->GetClientObject(n
) );
194 else if ( listbox
->HasClientUntypedData() )
195 event
.SetClientData( listbox
->GetClientData(n
) );
196 event
.SetString( listbox
->GetString(n
) );
205 listbox
->HandleWindowEvent( event
);
211 //-----------------------------------------------------------------------------
212 // "button_press_event"
213 //-----------------------------------------------------------------------------
217 gtk_listbox_button_press_callback( GtkWidget
*widget
,
218 GdkEventButton
*gdk_event
,
221 if (g_isIdle
) wxapp_install_idle_handler();
223 if (g_blockEventsOnDrag
) return FALSE
;
224 if (g_blockEventsOnScroll
) return FALSE
;
226 if (!listbox
->m_hasVMT
) return FALSE
;
228 int sel
= listbox
->GtkGetIndex( widget
);
230 #if wxUSE_CHECKLISTBOX
231 if ((listbox
->m_hasCheckBoxes
) && (gdk_event
->x
< 15) && (gdk_event
->type
!= GDK_2BUTTON_PRESS
))
233 wxCheckListBox
*clb
= (wxCheckListBox
*)listbox
;
235 clb
->Check( sel
, !clb
->IsChecked(sel
) );
237 wxCommandEvent
event( wxEVT_COMMAND_CHECKLISTBOX_TOGGLED
, listbox
->GetId() );
238 event
.SetEventObject( listbox
);
240 listbox
->HandleWindowEvent( event
);
242 #endif // wxUSE_CHECKLISTBOX
244 if ((gdk_event
->state
== 0) &&
245 (((listbox
->GetWindowStyleFlag() & wxLB_MULTIPLE
) != 0) ||
246 ((listbox
->GetWindowStyleFlag() & wxLB_EXTENDED
) != 0)) )
248 listbox
->m_blockEvent
= true;
251 for (i
= 0; i
< (int)listbox
->GetCount(); i
++)
253 gtk_list_unselect_item( GTK_LIST(listbox
->m_list
), i
);
255 listbox
->m_blockEvent
= false;
260 /* emit wxEVT_COMMAND_LISTBOX_DOUBLECLICKED later */
261 g_hasDoubleClicked
= (gdk_event
->type
== GDK_2BUTTON_PRESS
);
267 //-----------------------------------------------------------------------------
269 //-----------------------------------------------------------------------------
273 gtk_listbox_key_press_callback( GtkWidget
*widget
, GdkEventKey
*gdk_event
, wxListBox
*listbox
)
276 wxapp_install_idle_handler();
278 if (g_blockEventsOnDrag
)
283 if ((gdk_event
->keyval
== GDK_Tab
) || (gdk_event
->keyval
== GDK_ISO_Left_Tab
))
285 wxNavigationKeyEvent new_event
;
286 /* GDK reports GDK_ISO_Left_Tab for SHIFT-TAB */
287 new_event
.SetDirection( (gdk_event
->keyval
== GDK_Tab
) );
288 /* CTRL-TAB changes the (parent) window, i.e. switch notebook page */
289 new_event
.SetWindowChange( (gdk_event
->state
& GDK_CONTROL_MASK
) );
290 new_event
.SetCurrentFocus( listbox
);
291 ret
= listbox
->HandleWindowEvent( new_event
);
294 if ((gdk_event
->keyval
== GDK_Return
) && (!ret
))
296 // eat return in all modes
300 #if wxUSE_CHECKLISTBOX
301 if ((gdk_event
->keyval
== ' ') && (listbox
->m_hasCheckBoxes
) && (!ret
))
303 int sel
= listbox
->GtkGetIndex( widget
);
305 wxCheckListBox
*clb
= (wxCheckListBox
*)listbox
;
307 clb
->Check( sel
, !clb
->IsChecked(sel
) );
309 wxCommandEvent
new_event( wxEVT_COMMAND_CHECKLISTBOX_TOGGLED
, listbox
->GetId() );
310 new_event
.SetEventObject( listbox
);
311 new_event
.SetInt( sel
);
312 ret
= listbox
->HandleWindowEvent( new_event
);
314 #endif // wxUSE_CHECKLISTBOX
316 // Check or uncheck item with SPACE
317 if ((gdk_event
->keyval
== ' ') && (!ret
) &&
318 (((listbox
->GetWindowStyleFlag() & wxLB_MULTIPLE
) != 0) ||
319 ((listbox
->GetWindowStyleFlag() & wxLB_EXTENDED
) != 0)) )
321 int sel
= listbox
->GtkGetIndex( widget
);
327 if (listbox
->IsSelected( sel
))
328 gtk_list_unselect_item( listbox
->m_list
, sel
);
330 gtk_list_select_item( listbox
->m_list
, sel
);
332 wxCommandEvent
new_event(wxEVT_COMMAND_LISTBOX_SELECTED
, listbox
->GetId() );
333 new_event
.SetEventObject( listbox
);
334 wxArrayInt aSelections
;
335 int n
, count
= listbox
->GetSelections(aSelections
);
339 if ( listbox
->HasClientObjectData() )
340 new_event
.SetClientObject( listbox
->GetClientObject(n
) );
341 else if ( listbox
->HasClientUntypedData() )
342 new_event
.SetClientData( listbox
->GetClientData(n
) );
343 new_event
.SetString( listbox
->GetString(n
) );
350 listbox
->HandleWindowEvent( new_event
);
356 gtk_signal_emit_stop_by_name( GTK_OBJECT(widget
), "key_press_event" );
364 //-----------------------------------------------------------------------------
365 // "select" and "deselect"
366 //-----------------------------------------------------------------------------
368 static void gtk_listitem_select_cb( GtkWidget
*widget
,
372 if (g_isIdle
) wxapp_install_idle_handler();
374 if (!listbox
->m_hasVMT
) return;
375 if (g_blockEventsOnDrag
) return;
377 if (listbox
->m_blockEvent
) return;
379 wxCommandEvent
event(wxEVT_COMMAND_LISTBOX_SELECTED
, listbox
->GetId() );
380 event
.SetEventObject( listbox
);
382 // indicate whether this is a selection or a deselection
383 event
.SetExtraLong( is_selection
);
385 if ((listbox
->GetWindowStyleFlag() & wxLB_SINGLE
) != 0)
387 int sel
= listbox
->GtkGetIndex( widget
);
389 if (listbox
->m_prevSelection
!= sel
)
390 gtk_list_unselect_item( listbox
->m_list
, listbox
->m_prevSelection
);
392 listbox
->m_prevSelection
= sel
;
395 wxArrayInt aSelections
;
396 int n
, count
= listbox
->GetSelections(aSelections
);
400 if ( listbox
->HasClientObjectData() )
401 event
.SetClientObject( listbox
->GetClientObject(n
) );
402 else if ( listbox
->HasClientUntypedData() )
403 event
.SetClientData( listbox
->GetClientData(n
) );
404 event
.SetString( listbox
->GetString(n
) );
413 // No longer required with new code in wxLB_SINGLE
414 // listbox->GetEventHandler()->AddPendingEvent( event );
415 listbox
->HandleWindowEvent( event
);
419 static void gtk_listitem_select_callback( GtkWidget
*widget
, wxListBox
*listbox
)
421 gtk_listitem_select_cb( widget
, listbox
, TRUE
);
426 static void gtk_listitem_deselect_callback( GtkWidget
*widget
, wxListBox
*listbox
)
428 gtk_listitem_select_cb( widget
, listbox
, FALSE
);
432 //-----------------------------------------------------------------------------
434 //-----------------------------------------------------------------------------
438 gtk_listbox_realized_callback( GtkWidget
*WXUNUSED(widget
), wxListBox
*win
)
441 wxapp_install_idle_handler();
443 GList
*child
= win
->m_list
->children
;
444 for (child
= win
->m_list
->children
; child
!= NULL
; child
= child
->next
)
445 gtk_widget_show( GTK_WIDGET(child
->data
) );
451 //-----------------------------------------------------------------------------
453 //-----------------------------------------------------------------------------
455 IMPLEMENT_DYNAMIC_CLASS(wxListBox
, wxControlWithItems
)
457 // ----------------------------------------------------------------------------
459 // ----------------------------------------------------------------------------
461 wxListBox::wxListBox()
463 m_list
= (GtkList
*) NULL
;
464 #if wxUSE_CHECKLISTBOX
465 m_hasCheckBoxes
= false;
466 #endif // wxUSE_CHECKLISTBOX
469 bool wxListBox::Create( wxWindow
*parent
, wxWindowID id
,
470 const wxPoint
&pos
, const wxSize
&size
,
471 const wxArrayString
& choices
,
472 long style
, const wxValidator
& validator
,
473 const wxString
&name
)
475 wxCArrayString
chs(choices
);
477 return Create( parent
, id
, pos
, size
, chs
.GetCount(), chs
.GetStrings(),
478 style
, validator
, name
);
481 bool wxListBox::Create( wxWindow
*parent
, wxWindowID id
,
482 const wxPoint
&pos
, const wxSize
&size
,
483 int n
, const wxString choices
[],
484 long style
, const wxValidator
& validator
,
485 const wxString
&name
)
488 m_acceptsFocus
= true;
489 m_prevSelection
= 0; // or -1 ??
490 m_blockEvent
= false;
492 if (!PreCreation( parent
, pos
, size
) ||
493 !CreateBase( parent
, id
, pos
, size
, style
, validator
, name
))
495 wxFAIL_MSG( wxT("wxListBox creation failed") );
499 m_widget
= gtk_scrolled_window_new( (GtkAdjustment
*) NULL
, (GtkAdjustment
*) NULL
);
500 if (style
& wxLB_ALWAYS_SB
)
502 gtk_scrolled_window_set_policy( GTK_SCROLLED_WINDOW(m_widget
),
503 GTK_POLICY_AUTOMATIC
, GTK_POLICY_ALWAYS
);
507 gtk_scrolled_window_set_policy( GTK_SCROLLED_WINDOW(m_widget
),
508 GTK_POLICY_AUTOMATIC
, GTK_POLICY_AUTOMATIC
);
511 m_list
= GTK_LIST( gtk_list_new() );
513 GtkSelectionMode mode
;
514 if (style
& wxLB_MULTIPLE
)
516 mode
= GTK_SELECTION_MULTIPLE
;
518 else if (style
& wxLB_EXTENDED
)
520 mode
= GTK_SELECTION_EXTENDED
;
524 // if style was 0 set single mode
525 m_windowStyle
|= wxLB_SINGLE
;
526 mode
= GTK_SELECTION_SINGLE
;
529 gtk_list_set_selection_mode( GTK_LIST(m_list
), mode
);
531 gtk_scrolled_window_add_with_viewport( GTK_SCROLLED_WINDOW(m_widget
), GTK_WIDGET(m_list
) );
533 /* make list scroll when moving the focus down using cursor keys */
534 gtk_container_set_focus_vadjustment(
535 GTK_CONTAINER(m_list
),
536 gtk_scrolled_window_get_vadjustment(
537 GTK_SCROLLED_WINDOW(m_widget
)));
539 gtk_widget_show( GTK_WIDGET(m_list
) );
541 gtk_signal_connect( GTK_OBJECT(m_list
), "realize",
542 GTK_SIGNAL_FUNC(gtk_listbox_realized_callback
), (gpointer
) this );
544 if ( style
& wxLB_SORT
)
546 // this will change Append() behaviour
547 m_strings
= new wxSortedArrayString
;
551 m_strings
= (wxSortedArrayString
*)NULL
;
556 m_parent
->DoAddChild( this );
559 SetInitialSize(size
); // need this too because this is a wxControlWithItems
564 wxListBox::~wxListBox()
573 // ----------------------------------------------------------------------------
575 // ----------------------------------------------------------------------------
577 int wxListBox::DoInsertItems(const wxArrayStringsAdapter
& items
,
580 wxClientDataType type
)
582 wxCHECK_MSG( m_list
!= NULL
, wxNOT_FOUND
, wxT("invalid listbox") );
584 const unsigned count
= GetCount();
585 wxCHECK_MSG( pos
<= count
, wxNOT_FOUND
,
586 wxT("invalid index in wxListBox::InsertItems") );
588 // code elsewhere supposes we have as many items in m_clientList as items
590 wxASSERT_MSG( m_clientList
.GetCount() == count
,
591 wxT("bug in client data management") );
593 InvalidateBestSize();
595 const unsigned numItems
= items
.GetCount();
597 for ( unsigned int n
= 0; n
< numItems
; ++n
, ++pos
)
599 const wxString
& item
= items
[n
];
601 const unsigned idx
= m_strings
? m_strings
->Add(item
)
604 GtkAddItem(item
, idx
== GetCount() ? (unsigned) -1 : idx
);
606 m_clientList
.Insert(idx
, NULL
);
608 AssignNewItemClientData(idx
, clientData
, n
, type
);
611 wxASSERT_MSG( m_clientList
.GetCount() == GetCount(),
612 wxT("bug in client data management") );
617 void wxListBox::GtkAddItem( const wxString
&item
, int pos
)
619 wxCHECK_RET( m_list
!= NULL
, wxT("invalid listbox") );
621 GtkWidget
*list_item
;
623 wxString
label(item
);
624 #if wxUSE_CHECKLISTBOX
627 label
.Prepend(wxCHECKLBOX_STRING
);
629 #endif // wxUSE_CHECKLISTBOX
631 list_item
= gtk_list_item_new_with_label( wxGTK_CONV( label
) );
633 GList
*gitem_list
= g_list_alloc ();
634 gitem_list
->data
= list_item
;
637 gtk_list_append_items( GTK_LIST (m_list
), gitem_list
);
639 gtk_list_insert_items( GTK_LIST (m_list
), gitem_list
, pos
);
641 gtk_signal_connect_after( GTK_OBJECT(list_item
), "select",
642 GTK_SIGNAL_FUNC(gtk_listitem_select_callback
), (gpointer
)this );
644 if (HasFlag(wxLB_MULTIPLE
) || HasFlag(wxLB_EXTENDED
))
645 gtk_signal_connect_after( GTK_OBJECT(list_item
), "deselect",
646 GTK_SIGNAL_FUNC(gtk_listitem_deselect_callback
), (gpointer
)this );
648 gtk_signal_connect( GTK_OBJECT(list_item
),
649 "button_press_event",
650 (GtkSignalFunc
)gtk_listbox_button_press_callback
,
653 gtk_signal_connect_after( GTK_OBJECT(list_item
),
654 "button_release_event",
655 (GtkSignalFunc
)gtk_listbox_button_release_callback
,
658 gtk_signal_connect( GTK_OBJECT(list_item
),
660 (GtkSignalFunc
)gtk_listbox_key_press_callback
,
664 gtk_signal_connect( GTK_OBJECT(list_item
), "focus_in_event",
665 GTK_SIGNAL_FUNC(gtk_listitem_focus_in_callback
), (gpointer
)this );
667 gtk_signal_connect( GTK_OBJECT(list_item
), "focus_out_event",
668 GTK_SIGNAL_FUNC(gtk_listitem_focus_out_callback
), (gpointer
)this );
670 ConnectWidget( list_item
);
672 if (GTK_WIDGET_REALIZED(m_widget
))
674 gtk_widget_show( list_item
);
676 gtk_widget_realize( list_item
);
677 gtk_widget_realize( GTK_BIN(list_item
)->child
);
680 if (m_tooltip
) m_tooltip
->Apply( this );
684 // Apply current widget style to the new list_item
685 GtkRcStyle
*style
= CreateWidgetStyle();
688 gtk_widget_modify_style( GTK_WIDGET( list_item
), style
);
689 GtkBin
*bin
= GTK_BIN( list_item
);
690 gtk_widget_modify_style( GTK_WIDGET( bin
->child
), style
);
691 gtk_rc_style_unref( style
);
695 // ----------------------------------------------------------------------------
697 // ----------------------------------------------------------------------------
699 void wxListBox::DoClear()
701 wxCHECK_RET( m_list
!= NULL
, wxT("invalid listbox") );
703 gtk_list_clear_items( m_list
, 0, (int)GetCount() );
705 if ( GTK_LIST(m_list
)->last_focus_child
!= NULL
)
707 // This should be NULL, I think.
708 GTK_LIST(m_list
)->last_focus_child
= NULL
;
711 m_clientList
.Clear();
717 void wxListBox::DoDeleteOneItem(unsigned int n
)
719 wxCHECK_RET( m_list
!= NULL
, wxT("invalid listbox") );
721 GList
*child
= g_list_nth( m_list
->children
, n
);
723 wxCHECK_RET( child
, wxT("wrong listbox index") );
725 GList
*list
= g_list_append( (GList
*) NULL
, child
->data
);
726 gtk_list_remove_items( m_list
, list
);
729 wxList::compatibility_iterator node
= m_clientList
.Item( n
);
732 m_clientList
.Erase( node
);
736 m_strings
->RemoveAt(n
);
739 // ----------------------------------------------------------------------------
741 // ----------------------------------------------------------------------------
743 void wxListBox::DoSetItemClientData(unsigned int n
, void* clientData
)
745 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid listbox control") );
747 wxList::compatibility_iterator node
= m_clientList
.Item( n
);
748 wxCHECK_RET( node
, wxT("invalid index in wxListBox::DoSetItemClientData") );
750 node
->SetData( (wxObject
*) clientData
);
753 void* wxListBox::DoGetItemClientData(unsigned int n
) const
755 wxCHECK_MSG( m_widget
!= NULL
, NULL
, wxT("invalid listbox control") );
757 wxList::compatibility_iterator node
= m_clientList
.Item( n
);
758 wxCHECK_MSG( node
, NULL
, wxT("invalid index in wxListBox::DoGetItemClientData") );
760 return node
->GetData();
763 // ----------------------------------------------------------------------------
764 // string list access
765 // ----------------------------------------------------------------------------
767 wxString
wxListBox::GetRealLabel(GList
*item
) const
769 GtkBin
*bin
= GTK_BIN( item
->data
);
770 GtkLabel
*label
= GTK_LABEL( bin
->child
);
774 str
= wxString( label
->label
);
776 #if wxUSE_CHECKLISTBOX
777 // checklistboxes have "[±] " prepended to their lables, remove it
779 // NB: 4 below is the length of wxCHECKLBOX_STRING from wx/gtk1/checklst.h
780 if ( m_hasCheckBoxes
)
782 #endif // wxUSE_CHECKLISTBOX
787 void wxListBox::SetString(unsigned int n
, const wxString
&string
)
789 wxCHECK_RET( m_list
!= NULL
, wxT("invalid listbox") );
791 GList
*child
= g_list_nth( m_list
->children
, n
);
794 GtkBin
*bin
= GTK_BIN( child
->data
);
795 GtkLabel
*label
= GTK_LABEL( bin
->child
);
798 #if wxUSE_CHECKLISTBOX
800 str
+= wxCHECKLBOX_STRING
;
801 #endif // wxUSE_CHECKLISTBOX
804 gtk_label_set( label
, wxGTK_CONV( str
) );
808 wxFAIL_MSG(wxT("wrong listbox index"));
812 wxString
wxListBox::GetString(unsigned int n
) const
814 wxCHECK_MSG( m_list
!= NULL
, wxEmptyString
, wxT("invalid listbox") );
816 GList
*child
= g_list_nth( m_list
->children
, n
);
819 return GetRealLabel(child
);
822 wxFAIL_MSG(wxT("wrong listbox index"));
824 return wxEmptyString
;
827 unsigned int wxListBox::GetCount() const
829 wxCHECK_MSG( m_list
!= NULL
, 0, wxT("invalid listbox") );
831 GList
*children
= m_list
->children
;
832 return g_list_length(children
);
835 int wxListBox::FindString( const wxString
&item
, bool bCase
) const
837 wxCHECK_MSG( m_list
!= NULL
, wxNOT_FOUND
, wxT("invalid listbox") );
839 GList
*child
= m_list
->children
;
843 if ( item
.IsSameAs( GetRealLabel(child
), bCase
) )
850 // it's not an error if the string is not found -> no wxCHECK
855 // ----------------------------------------------------------------------------
857 // ----------------------------------------------------------------------------
859 int wxListBox::GetSelection() const
861 wxCHECK_MSG( m_list
!= NULL
, wxNOT_FOUND
, wxT("invalid listbox") );
863 GList
*child
= m_list
->children
;
867 if (GTK_WIDGET(child
->data
)->state
== GTK_STATE_SELECTED
) return count
;
874 int wxListBox::GetSelections( wxArrayInt
& aSelections
) const
876 wxCHECK_MSG( m_list
!= NULL
, wxNOT_FOUND
, wxT("invalid listbox") );
878 // get the number of selected items first
879 GList
*child
= m_list
->children
;
881 for (child
= m_list
->children
; child
!= NULL
; child
= child
->next
)
883 if (GTK_WIDGET(child
->data
)->state
== GTK_STATE_SELECTED
)
892 aSelections
.Alloc(count
); // optimization attempt
894 for (child
= m_list
->children
; child
!= NULL
; child
= child
->next
, i
++)
896 if (GTK_WIDGET(child
->data
)->state
== GTK_STATE_SELECTED
)
904 bool wxListBox::IsSelected( int n
) const
906 wxCHECK_MSG( m_list
!= NULL
, false, wxT("invalid listbox") );
908 GList
*target
= g_list_nth( m_list
->children
, n
);
910 wxCHECK_MSG( target
, false, wxT("invalid listbox index") );
912 return (GTK_WIDGET(target
->data
)->state
== GTK_STATE_SELECTED
) ;
915 void wxListBox::DoSetSelection( int n
, bool select
)
917 wxCHECK_RET( m_list
!= NULL
, wxT("invalid listbox") );
923 if ((m_windowStyle
& wxLB_SINGLE
) != 0)
924 gtk_list_unselect_item( m_list
, m_prevSelection
);
925 gtk_list_select_item( m_list
, n
);
929 gtk_list_unselect_item( m_list
, n
);
931 m_blockEvent
= false;
934 void wxListBox::DoSetFirstItem( int n
)
936 wxCHECK_RET( m_list
, wxT("invalid listbox") );
938 if (gdk_pointer_is_grabbed () && GTK_WIDGET_HAS_GRAB (m_list
))
941 // terribly efficient
942 const gchar
*vadjustment_key
= "gtk-vadjustment";
943 guint vadjustment_key_id
= g_quark_from_static_string (vadjustment_key
);
945 GtkAdjustment
*adjustment
=
946 (GtkAdjustment
*) gtk_object_get_data_by_id (GTK_OBJECT (m_list
), vadjustment_key_id
);
947 wxCHECK_RET( adjustment
, wxT("invalid listbox code") );
949 GList
*target
= g_list_nth( m_list
->children
, n
);
950 wxCHECK_RET( target
, wxT("invalid listbox index") );
952 GtkWidget
*item
= GTK_WIDGET(target
->data
);
953 wxCHECK_RET( item
, wxT("invalid listbox code") );
955 if (item
->allocation
.y
== -1)
957 wxlistbox_idle_struct
* data
= new wxlistbox_idle_struct
;
958 data
->m_listbox
= this;
960 data
->m_tag
= gtk_idle_add_priority( 800, wxlistbox_idle_callback
, (gpointer
) data
);
965 float y
= item
->allocation
.y
;
966 if (y
> adjustment
->upper
- adjustment
->page_size
)
967 y
= adjustment
->upper
- adjustment
->page_size
;
968 gtk_adjustment_set_value( adjustment
, y
);
971 // ----------------------------------------------------------------------------
973 // ----------------------------------------------------------------------------
975 int wxListBox::GtkGetIndex( GtkWidget
*item
) const
979 GList
*child
= m_list
->children
;
983 if (GTK_WIDGET(child
->data
) == item
) return count
;
992 void wxListBox::ApplyToolTip( GtkTooltips
*tips
, const wxChar
*tip
)
994 GList
*child
= m_list
->children
;
997 gtk_tooltips_set_tip( tips
, GTK_WIDGET( child
->data
), wxConvCurrent
->cWX2MB(tip
), (gchar
*) NULL
);
1001 #endif // wxUSE_TOOLTIPS
1003 GtkWidget
*wxListBox::GetConnectWidget()
1005 // return GTK_WIDGET(m_list);
1009 bool wxListBox::IsOwnGtkWindow( GdkWindow
*window
)
1011 return m_widget
->window
== window
||
1012 GTK_WIDGET(m_list
)->window
== window
;
1015 void wxListBox::DoApplyWidgetStyle(GtkRcStyle
*style
)
1017 if (m_hasBgCol
&& m_backgroundColour
.Ok())
1019 GdkWindow
*window
= GTK_WIDGET(m_list
)->window
;
1022 m_backgroundColour
.CalcPixel( gdk_window_get_colormap( window
) );
1023 gdk_window_set_background( window
, m_backgroundColour
.GetColor() );
1024 gdk_window_clear( window
);
1028 GList
*child
= m_list
->children
;
1031 gtk_widget_modify_style( GTK_WIDGET(child
->data
), style
);
1033 GtkBin
*bin
= GTK_BIN( child
->data
);
1034 GtkWidget
*label
= GTK_WIDGET( bin
->child
);
1035 gtk_widget_modify_style( label
, style
);
1037 child
= child
->next
;
1041 void wxListBox::OnInternalIdle()
1043 wxCursor cursor
= m_cursor
;
1044 if (g_globalCursor
.Ok()) cursor
= g_globalCursor
;
1046 if (GTK_WIDGET(m_list
)->window
&& cursor
.Ok())
1048 /* I now set the cursor the anew in every OnInternalIdle call
1049 as setting the cursor in a parent window also effects the
1050 windows above so that checking for the current cursor is
1053 gdk_window_set_cursor( GTK_WIDGET(m_list
)->window
, cursor
.GetCursor() );
1055 GList
*child
= m_list
->children
;
1058 GtkBin
*bin
= GTK_BIN( child
->data
);
1059 GtkWidget
*label
= GTK_WIDGET( bin
->child
);
1064 gdk_window_set_cursor( label
->window
, cursor
.GetCursor() );
1066 child
= child
->next
;
1070 if (g_delayedFocus
== this)
1072 if (GTK_WIDGET_REALIZED(m_widget
))
1074 gtk_widget_grab_focus( m_widget
);
1075 g_delayedFocus
= NULL
;
1079 if (wxUpdateUIEvent::CanUpdate(this))
1080 UpdateWindowUI(wxUPDATE_UI_FROMIDLE
);
1083 wxSize
wxListBox::DoGetBestSize() const
1085 int lbWidth
= 100; // some defaults
1089 // Find the widest line
1090 for(unsigned int i
= 0; i
< GetCount(); i
++) {
1091 wxString
str(GetString(i
));
1092 GetTextExtent(str
, &wLine
, NULL
);
1093 lbWidth
= wxMax(lbWidth
, wLine
);
1096 // Add room for the scrollbar
1097 lbWidth
+= wxSystemSettings::GetMetric(wxSYS_VSCROLL_X
);
1099 // And just a bit more
1101 GetTextExtent( wxT("X"), &cx
, &cy
);
1104 // don't make the listbox too tall (limit height to around 10 items) but don't
1105 // make it too small neither
1106 lbHeight
= (cy
+4) * wxMin(wxMax(GetCount(), 3), 10);
1108 wxSize
best(lbWidth
, lbHeight
);
1109 CacheBestSize(best
);
1113 void wxListBox::FixUpMouseEvent(GtkWidget
*widget
, wxCoord
& x
, wxCoord
& y
)
1115 // the mouse event coords are relative to the listbox items, we need to
1116 // translate them to the normal client coords
1117 x
+= widget
->allocation
.x
;
1118 y
+= widget
->allocation
.y
;
1124 wxListBox::GetClassDefaultAttributes(wxWindowVariant
WXUNUSED(variant
))
1126 return GetDefaultAttributesFromGTKWidget(gtk_list_new
, true);
1129 #endif // wxUSE_LISTBOX