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 if ((gdk_event
->state
== 0) &&
237 (((listbox
->GetWindowStyleFlag() & wxLB_MULTIPLE
) != 0) ||
238 ((listbox
->GetWindowStyleFlag() & wxLB_EXTENDED
) != 0)) )
240 listbox
->m_blockEvent
= TRUE
;
243 for (i
= 0; i
< (int)listbox
->GetCount(); i
++)
245 gtk_list_unselect_item( GTK_LIST(listbox
->m_list
), i
);
247 listbox
->m_blockEvent
= FALSE
;
252 /* emit wxEVT_COMMAND_LISTBOX_DOUBLECLICKED later */
253 g_hasDoubleClicked
= (gdk_event
->type
== GDK_2BUTTON_PRESS
);
258 //-----------------------------------------------------------------------------
260 //-----------------------------------------------------------------------------
263 gtk_listbox_key_press_callback( GtkWidget
*widget
, GdkEventKey
*gdk_event
, wxListBox
*listbox
)
266 wxapp_install_idle_handler();
268 if (g_blockEventsOnDrag
)
273 if ((gdk_event
->keyval
== GDK_Tab
) || (gdk_event
->keyval
== GDK_ISO_Left_Tab
))
275 wxNavigationKeyEvent new_event
;
276 /* GDK reports GDK_ISO_Left_Tab for SHIFT-TAB */
277 new_event
.SetDirection( (gdk_event
->keyval
== GDK_Tab
) );
278 /* CTRL-TAB changes the (parent) window, i.e. switch notebook page */
279 new_event
.SetWindowChange( (gdk_event
->state
& GDK_CONTROL_MASK
) );
280 new_event
.SetCurrentFocus( listbox
);
281 ret
= listbox
->GetEventHandler()->ProcessEvent( new_event
);
284 if ((gdk_event
->keyval
== GDK_Return
) && (!ret
))
286 // eat return in all modes
290 #if wxUSE_CHECKLISTBOX
291 if ((gdk_event
->keyval
== ' ') && (listbox
->m_hasCheckBoxes
) && (!ret
))
293 int sel
= listbox
->GtkGetIndex( widget
);
295 wxCheckListBox
*clb
= (wxCheckListBox
*)listbox
;
297 clb
->Check( sel
, !clb
->IsChecked(sel
) );
299 wxCommandEvent
new_event( wxEVT_COMMAND_CHECKLISTBOX_TOGGLED
, listbox
->GetId() );
300 new_event
.SetEventObject( listbox
);
301 new_event
.SetInt( sel
);
302 ret
= listbox
->GetEventHandler()->ProcessEvent( new_event
);
304 #endif // wxUSE_CHECKLISTBOX
306 // Check or uncheck item with SPACE
307 if ((gdk_event
->keyval
== ' ') && (!ret
) &&
308 (((listbox
->GetWindowStyleFlag() & wxLB_MULTIPLE
) != 0) ||
309 ((listbox
->GetWindowStyleFlag() & wxLB_EXTENDED
) != 0)) )
311 int sel
= listbox
->GtkGetIndex( widget
);
317 if (listbox
->IsSelected( sel
))
318 gtk_list_unselect_item( listbox
->m_list
, sel
);
320 gtk_list_select_item( listbox
->m_list
, sel
);
322 wxCommandEvent
new_event(wxEVT_COMMAND_LISTBOX_SELECTED
, listbox
->GetId() );
323 new_event
.SetEventObject( listbox
);
324 wxArrayInt aSelections
;
325 int n
, count
= listbox
->GetSelections(aSelections
);
329 if ( listbox
->HasClientObjectData() )
330 new_event
.SetClientObject( listbox
->GetClientObject(n
) );
331 else if ( listbox
->HasClientUntypedData() )
332 new_event
.SetClientData( listbox
->GetClientData(n
) );
333 new_event
.SetString( listbox
->GetString(n
) );
340 listbox
->GetEventHandler()->ProcessEvent( new_event
);
346 gtk_signal_emit_stop_by_name( GTK_OBJECT(widget
), "key_press_event" );
353 //-----------------------------------------------------------------------------
354 // "select" and "deselect"
355 //-----------------------------------------------------------------------------
357 static void gtk_listitem_select_cb( GtkWidget
*widget
, wxListBox
*listbox
, bool is_selection
);
359 static void gtk_listitem_select_callback( GtkWidget
*widget
, wxListBox
*listbox
)
361 gtk_listitem_select_cb( widget
, listbox
, TRUE
);
364 static void gtk_listitem_deselect_callback( GtkWidget
*widget
, wxListBox
*listbox
)
366 gtk_listitem_select_cb( widget
, listbox
, FALSE
);
369 static void gtk_listitem_select_cb( GtkWidget
*widget
,
373 if (g_isIdle
) wxapp_install_idle_handler();
375 if (!listbox
->m_hasVMT
) return;
376 if (g_blockEventsOnDrag
) return;
378 if (listbox
->m_blockEvent
) return;
380 wxCommandEvent
event(wxEVT_COMMAND_LISTBOX_SELECTED
, listbox
->GetId() );
381 event
.SetEventObject( listbox
);
383 // indicate whether this is a selection or a deselection
384 event
.SetExtraLong( is_selection
);
386 if ((listbox
->GetWindowStyleFlag() & wxLB_SINGLE
) != 0)
388 int sel
= listbox
->GtkGetIndex( widget
);
390 if (listbox
->m_prevSelection
!= sel
)
391 gtk_list_unselect_item( listbox
->m_list
, listbox
->m_prevSelection
);
393 listbox
->m_prevSelection
= sel
;
396 wxArrayInt aSelections
;
397 int n
, count
= listbox
->GetSelections(aSelections
);
401 if ( listbox
->HasClientObjectData() )
402 event
.SetClientObject( listbox
->GetClientObject(n
) );
403 else if ( listbox
->HasClientUntypedData() )
404 event
.SetClientData( listbox
->GetClientData(n
) );
405 event
.SetString( listbox
->GetString(n
) );
414 // No longer required with new code in wxLB_SINGLE
415 // listbox->GetEventHandler()->AddPendingEvent( event );
416 listbox
->GetEventHandler()->ProcessEvent( event
);
419 //-----------------------------------------------------------------------------
421 //-----------------------------------------------------------------------------
424 gtk_listbox_realized_callback( GtkWidget
*m_widget
, wxListBox
*win
)
427 wxapp_install_idle_handler();
429 GList
*child
= win
->m_list
->children
;
430 for (child
= win
->m_list
->children
; child
!= NULL
; child
= child
->next
)
431 gtk_widget_show( GTK_WIDGET(child
->data
) );
436 //-----------------------------------------------------------------------------
438 //-----------------------------------------------------------------------------
440 IMPLEMENT_DYNAMIC_CLASS(wxListBox
,wxControl
)
442 // ----------------------------------------------------------------------------
444 // ----------------------------------------------------------------------------
446 wxListBox::wxListBox()
448 m_list
= (GtkList
*) NULL
;
449 #if wxUSE_CHECKLISTBOX
450 m_hasCheckBoxes
= FALSE
;
451 #endif // wxUSE_CHECKLISTBOX
454 bool wxListBox::Create( wxWindow
*parent
, wxWindowID id
,
455 const wxPoint
&pos
, const wxSize
&size
,
456 const wxArrayString
& choices
,
457 long style
, const wxValidator
& validator
,
458 const wxString
&name
)
460 wxCArrayString
chs(choices
);
462 return Create( parent
, id
, pos
, size
, chs
.GetCount(), chs
.GetStrings(),
463 style
, validator
, name
);
466 bool wxListBox::Create( wxWindow
*parent
, wxWindowID id
,
467 const wxPoint
&pos
, const wxSize
&size
,
468 int n
, const wxString choices
[],
469 long style
, const wxValidator
& validator
,
470 const wxString
&name
)
473 m_acceptsFocus
= TRUE
;
474 m_prevSelection
= 0; // or -1 ??
475 m_blockEvent
= FALSE
;
477 if (!PreCreation( parent
, pos
, size
) ||
478 !CreateBase( parent
, id
, pos
, size
, style
, validator
, name
))
480 wxFAIL_MSG( wxT("wxListBox creation failed") );
484 m_widget
= gtk_scrolled_window_new( (GtkAdjustment
*) NULL
, (GtkAdjustment
*) NULL
);
485 if (style
& wxLB_ALWAYS_SB
)
487 gtk_scrolled_window_set_policy( GTK_SCROLLED_WINDOW(m_widget
),
488 GTK_POLICY_AUTOMATIC
, GTK_POLICY_ALWAYS
);
492 gtk_scrolled_window_set_policy( GTK_SCROLLED_WINDOW(m_widget
),
493 GTK_POLICY_AUTOMATIC
, GTK_POLICY_AUTOMATIC
);
496 m_list
= GTK_LIST( gtk_list_new() );
498 GtkSelectionMode mode
;
499 if (style
& wxLB_MULTIPLE
)
501 mode
= GTK_SELECTION_MULTIPLE
;
503 else if (style
& wxLB_EXTENDED
)
505 mode
= GTK_SELECTION_EXTENDED
;
509 // if style was 0 set single mode
510 m_windowStyle
|= wxLB_SINGLE
;
511 mode
= GTK_SELECTION_SINGLE
;
514 gtk_list_set_selection_mode( GTK_LIST(m_list
), mode
);
516 gtk_scrolled_window_add_with_viewport( GTK_SCROLLED_WINDOW(m_widget
), GTK_WIDGET(m_list
) );
518 /* make list scroll when moving the focus down using cursor keys */
519 gtk_container_set_focus_vadjustment(
520 GTK_CONTAINER(m_list
),
521 gtk_scrolled_window_get_vadjustment(
522 GTK_SCROLLED_WINDOW(m_widget
)));
524 gtk_widget_show( GTK_WIDGET(m_list
) );
526 gtk_signal_connect( GTK_OBJECT(m_list
), "realize",
527 GTK_SIGNAL_FUNC(gtk_listbox_realized_callback
), (gpointer
) this );
529 if ( style
& wxLB_SORT
)
531 // this will change DoAppend() behaviour
532 m_strings
= new wxSortedArrayString
;
536 m_strings
= (wxSortedArrayString
*)NULL
;
539 for (int i
= 0; i
< n
; i
++)
542 DoAppend(choices
[i
]);
545 m_parent
->DoAddChild( this );
548 SetBestSize(size
); // need this too because this is a wxControlWithItems
553 wxListBox::~wxListBox()
563 // ----------------------------------------------------------------------------
565 // ----------------------------------------------------------------------------
567 void wxListBox::DoInsertItems(const wxArrayString
& items
, int pos
)
569 wxCHECK_RET( m_list
!= NULL
, wxT("invalid listbox") );
571 // VZ: notice that InsertItems knows nothing about sorting, so calling it
572 // from outside (and not from our own Append) is likely to break
575 // code elsewhere supposes we have as many items in m_clientList as items
577 wxASSERT_MSG( m_clientList
.GetCount() == (size_t)GetCount(),
578 wxT("bug in client data management") );
580 InvalidateBestSize();
582 GList
*children
= m_list
->children
;
583 int length
= g_list_length(children
);
585 wxCHECK_RET( pos
<= length
, wxT("invalid index in wxListBox::InsertItems") );
587 size_t nItems
= items
.GetCount();
592 for (size_t n
= 0; n
< nItems
; n
++)
594 index
= m_strings
->Add( items
[n
] );
596 if (index
!= GetCount())
598 GtkAddItem( items
[n
], index
);
599 wxList::compatibility_iterator node
= m_clientList
.Item( index
);
600 m_clientList
.Insert( node
, (wxObject
*) NULL
);
604 GtkAddItem( items
[n
] );
605 m_clientList
.Append( (wxObject
*) NULL
);
613 for ( size_t n
= 0; n
< nItems
; n
++ )
615 GtkAddItem( items
[n
] );
617 m_clientList
.Append((wxObject
*)NULL
);
622 wxList::compatibility_iterator node
= m_clientList
.Item( pos
);
623 for ( size_t n
= 0; n
< nItems
; n
++ )
625 GtkAddItem( items
[n
], pos
+n
);
627 m_clientList
.Insert( node
, (wxObject
*)NULL
);
632 wxASSERT_MSG( m_clientList
.GetCount() == (size_t)GetCount(),
633 wxT("bug in client data management") );
636 int wxListBox::DoAppend( const wxString
& item
)
638 InvalidateBestSize();
642 // need to determine the index
643 int index
= m_strings
->Add( item
);
645 // only if not at the end anyway
646 if (index
!= GetCount())
648 GtkAddItem( item
, index
);
650 wxList::compatibility_iterator node
= m_clientList
.Item( index
);
651 m_clientList
.Insert( node
, (wxObject
*)NULL
);
659 m_clientList
.Append((wxObject
*)NULL
);
661 return GetCount() - 1;
664 void wxListBox::GtkAddItem( const wxString
&item
, int pos
)
666 wxCHECK_RET( m_list
!= NULL
, wxT("invalid listbox") );
668 GtkWidget
*list_item
;
670 wxString
label(item
);
671 #if wxUSE_CHECKLISTBOX
674 label
.Prepend(wxCHECKLBOX_STRING
);
676 #endif // wxUSE_CHECKLISTBOX
678 list_item
= gtk_list_item_new_with_label( wxGTK_CONV( label
) );
680 GList
*gitem_list
= g_list_alloc ();
681 gitem_list
->data
= list_item
;
684 gtk_list_append_items( GTK_LIST (m_list
), gitem_list
);
686 gtk_list_insert_items( GTK_LIST (m_list
), gitem_list
, pos
);
688 gtk_signal_connect_after( GTK_OBJECT(list_item
), "select",
689 GTK_SIGNAL_FUNC(gtk_listitem_select_callback
), (gpointer
)this );
691 if (HasFlag(wxLB_MULTIPLE
) || HasFlag(wxLB_EXTENDED
))
692 gtk_signal_connect_after( GTK_OBJECT(list_item
), "deselect",
693 GTK_SIGNAL_FUNC(gtk_listitem_deselect_callback
), (gpointer
)this );
695 gtk_signal_connect( GTK_OBJECT(list_item
),
696 "button_press_event",
697 (GtkSignalFunc
)gtk_listbox_button_press_callback
,
700 gtk_signal_connect_after( GTK_OBJECT(list_item
),
701 "button_release_event",
702 (GtkSignalFunc
)gtk_listbox_button_release_callback
,
705 gtk_signal_connect( GTK_OBJECT(list_item
),
707 (GtkSignalFunc
)gtk_listbox_key_press_callback
,
711 gtk_signal_connect( GTK_OBJECT(list_item
), "focus_in_event",
712 GTK_SIGNAL_FUNC(gtk_listitem_focus_in_callback
), (gpointer
)this );
714 gtk_signal_connect( GTK_OBJECT(list_item
), "focus_out_event",
715 GTK_SIGNAL_FUNC(gtk_listitem_focus_out_callback
), (gpointer
)this );
717 ConnectWidget( list_item
);
719 if (GTK_WIDGET_REALIZED(m_widget
))
721 gtk_widget_show( list_item
);
723 gtk_widget_realize( list_item
);
724 gtk_widget_realize( GTK_BIN(list_item
)->child
);
727 if (m_tooltip
) m_tooltip
->Apply( this );
731 // Apply current widget style to the new list_item
732 GtkRcStyle
*style
= CreateWidgetStyle();
735 gtk_widget_modify_style( GTK_WIDGET( list_item
), style
);
736 GtkBin
*bin
= GTK_BIN( list_item
);
737 GtkWidget
*label
= GTK_WIDGET( bin
->child
);
738 gtk_widget_modify_style( label
, style
);
739 gtk_rc_style_unref( style
);
743 void wxListBox::DoSetItems( const wxArrayString
& items
,
748 DoInsertItems(items
, 0);
752 size_t count
= items
.GetCount();
753 for ( size_t n
= 0; n
< count
; n
++ )
755 SetClientData(n
, clientData
[n
]);
760 // ----------------------------------------------------------------------------
762 // ----------------------------------------------------------------------------
764 void wxListBox::Clear()
766 wxCHECK_RET( m_list
!= NULL
, wxT("invalid listbox") );
768 gtk_list_clear_items( m_list
, 0, GetCount() );
770 if ( GTK_LIST(m_list
)->last_focus_child
!= NULL
)
772 // This should be NULL, I think.
773 GTK_LIST(m_list
)->last_focus_child
= NULL
;
776 if ( HasClientObjectData() )
778 // destroy the data (due to Robert's idea of using wxList<wxObject>
779 // and not wxList<wxClientData> we can't just say
780 // m_clientList.DeleteContents(TRUE) - this would crash!
781 wxList::compatibility_iterator node
= m_clientList
.GetFirst();
784 delete (wxClientData
*)node
->GetData();
785 node
= node
->GetNext();
788 m_clientList
.Clear();
794 void wxListBox::Delete( int n
)
796 wxCHECK_RET( m_list
!= NULL
, wxT("invalid listbox") );
798 GList
*child
= g_list_nth( m_list
->children
, n
);
800 wxCHECK_RET( child
, wxT("wrong listbox index") );
802 GList
*list
= g_list_append( (GList
*) NULL
, child
->data
);
803 gtk_list_remove_items( m_list
, list
);
806 wxList::compatibility_iterator node
= m_clientList
.Item( n
);
809 if ( m_clientDataItemsType
== wxClientData_Object
)
811 wxClientData
*cd
= (wxClientData
*)node
->GetData();
815 m_clientList
.Erase( node
);
819 m_strings
->RemoveAt(n
);
822 // ----------------------------------------------------------------------------
824 // ----------------------------------------------------------------------------
826 void wxListBox::DoSetItemClientData( int n
, void* clientData
)
828 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid listbox control") );
830 wxList::compatibility_iterator node
= m_clientList
.Item( n
);
831 wxCHECK_RET( node
, wxT("invalid index in wxListBox::DoSetItemClientData") );
833 node
->SetData( (wxObject
*) clientData
);
836 void* wxListBox::DoGetItemClientData( int n
) const
838 wxCHECK_MSG( m_widget
!= NULL
, NULL
, wxT("invalid listbox control") );
840 wxList::compatibility_iterator node
= m_clientList
.Item( n
);
841 wxCHECK_MSG( node
, NULL
, wxT("invalid index in wxListBox::DoGetItemClientData") );
843 return node
->GetData();
846 void wxListBox::DoSetItemClientObject( int n
, wxClientData
* clientData
)
848 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid listbox control") );
850 wxList::compatibility_iterator node
= m_clientList
.Item( n
);
851 wxCHECK_RET( node
, wxT("invalid index in wxListBox::DoSetItemClientObject") );
853 // wxItemContainer already deletes data for us
855 node
->SetData( (wxObject
*) clientData
);
858 wxClientData
* wxListBox::DoGetItemClientObject( int n
) const
860 wxCHECK_MSG( m_widget
!= NULL
, (wxClientData
*) NULL
, wxT("invalid listbox control") );
862 wxList::compatibility_iterator node
= m_clientList
.Item( n
);
863 wxCHECK_MSG( node
, (wxClientData
*)NULL
,
864 wxT("invalid index in wxListBox::DoGetItemClientObject") );
866 return (wxClientData
*) node
->GetData();
869 // ----------------------------------------------------------------------------
870 // string list access
871 // ----------------------------------------------------------------------------
873 wxString
wxListBox::GetRealLabel(GList
*item
) const
875 GtkBin
*bin
= GTK_BIN( item
->data
);
876 GtkLabel
*label
= GTK_LABEL( bin
->child
);
881 str
= wxGTK_CONV_BACK( gtk_label_get_text( label
) );
883 str
= wxString( label
->label
);
886 #if wxUSE_CHECKLISTBOX
887 // checklistboxes have "[±] " prepended to their lables, remove it
889 // NB: 4 below is the length of wxCHECKLBOX_STRING from wx/gtk/checklst.h
890 if ( m_hasCheckBoxes
)
892 #endif // wxUSE_CHECKLISTBOX
897 void wxListBox::SetString( int n
, const wxString
&string
)
899 wxCHECK_RET( m_list
!= NULL
, wxT("invalid listbox") );
901 GList
*child
= g_list_nth( m_list
->children
, n
);
904 GtkBin
*bin
= GTK_BIN( child
->data
);
905 GtkLabel
*label
= GTK_LABEL( bin
->child
);
908 #if wxUSE_CHECKLISTBOX
910 str
+= wxCHECKLBOX_STRING
;
911 #endif // wxUSE_CHECKLISTBOX
914 gtk_label_set( label
, wxGTK_CONV( str
) );
918 wxFAIL_MSG(wxT("wrong listbox index"));
922 wxString
wxListBox::GetString( int n
) const
924 wxCHECK_MSG( m_list
!= NULL
, wxT(""), wxT("invalid listbox") );
926 GList
*child
= g_list_nth( m_list
->children
, n
);
929 return GetRealLabel(child
);
932 wxFAIL_MSG(wxT("wrong listbox index"));
937 int wxListBox::GetCount() const
939 wxCHECK_MSG( m_list
!= NULL
, -1, wxT("invalid listbox") );
941 GList
*children
= m_list
->children
;
942 return g_list_length(children
);
945 int wxListBox::FindString( const wxString
&item
) const
947 wxCHECK_MSG( m_list
!= NULL
, -1, wxT("invalid listbox") );
949 GList
*child
= m_list
->children
;
953 if ( GetRealLabel(child
) == item
)
960 // it's not an error if the string is not found -> no wxCHECK
965 // ----------------------------------------------------------------------------
967 // ----------------------------------------------------------------------------
969 int wxListBox::GetSelection() const
971 wxCHECK_MSG( m_list
!= NULL
, -1, wxT("invalid listbox") );
973 GList
*child
= m_list
->children
;
977 if (GTK_WIDGET(child
->data
)->state
== GTK_STATE_SELECTED
) return count
;
984 int wxListBox::GetSelections( wxArrayInt
& aSelections
) const
986 wxCHECK_MSG( m_list
!= NULL
, -1, wxT("invalid listbox") );
988 // get the number of selected items first
989 GList
*child
= m_list
->children
;
991 for (child
= m_list
->children
; child
!= NULL
; child
= child
->next
)
993 if (GTK_WIDGET(child
->data
)->state
== GTK_STATE_SELECTED
)
1001 // now fill the list
1002 aSelections
.Alloc(count
); // optimization attempt
1004 for (child
= m_list
->children
; child
!= NULL
; child
= child
->next
, i
++)
1006 if (GTK_WIDGET(child
->data
)->state
== GTK_STATE_SELECTED
)
1014 bool wxListBox::IsSelected( int n
) const
1016 wxCHECK_MSG( m_list
!= NULL
, FALSE
, wxT("invalid listbox") );
1018 GList
*target
= g_list_nth( m_list
->children
, n
);
1020 wxCHECK_MSG( target
, FALSE
, wxT("invalid listbox index") );
1022 return (GTK_WIDGET(target
->data
)->state
== GTK_STATE_SELECTED
) ;
1025 void wxListBox::DoSetSelection( int n
, bool select
)
1027 wxCHECK_RET( m_list
!= NULL
, wxT("invalid listbox") );
1029 m_blockEvent
= TRUE
;
1033 if ((m_windowStyle
& wxLB_SINGLE
) != 0)
1034 gtk_list_unselect_item( m_list
, m_prevSelection
);
1035 gtk_list_select_item( m_list
, n
);
1036 m_prevSelection
= n
;
1039 gtk_list_unselect_item( m_list
, n
);
1041 m_blockEvent
= FALSE
;
1044 void wxListBox::DoSetFirstItem( int n
)
1046 wxCHECK_RET( m_list
, wxT("invalid listbox") );
1048 if (gdk_pointer_is_grabbed () && GTK_WIDGET_HAS_GRAB (m_list
))
1051 // terribly efficient
1052 const gchar
*vadjustment_key
= "gtk-vadjustment";
1053 guint vadjustment_key_id
= g_quark_from_static_string (vadjustment_key
);
1055 GtkAdjustment
*adjustment
=
1056 (GtkAdjustment
*) gtk_object_get_data_by_id (GTK_OBJECT (m_list
), vadjustment_key_id
);
1057 wxCHECK_RET( adjustment
, wxT("invalid listbox code") );
1059 GList
*target
= g_list_nth( m_list
->children
, n
);
1060 wxCHECK_RET( target
, wxT("invalid listbox index") );
1062 GtkWidget
*item
= GTK_WIDGET(target
->data
);
1063 wxCHECK_RET( item
, wxT("invalid listbox code") );
1065 if (item
->allocation
.y
== -1)
1067 wxlistbox_idle_struct
* data
= new wxlistbox_idle_struct
;
1068 data
->m_listbox
= this;
1070 data
->m_tag
= gtk_idle_add_priority( 800, wxlistbox_idle_callback
, (gpointer
) data
);
1075 float y
= item
->allocation
.y
;
1076 if (y
> adjustment
->upper
- adjustment
->page_size
)
1077 y
= adjustment
->upper
- adjustment
->page_size
;
1078 gtk_adjustment_set_value( adjustment
, y
);
1081 // ----------------------------------------------------------------------------
1083 // ----------------------------------------------------------------------------
1085 int wxListBox::GtkGetIndex( GtkWidget
*item
) const
1089 GList
*child
= m_list
->children
;
1093 if (GTK_WIDGET(child
->data
) == item
) return count
;
1095 child
= child
->next
;
1102 void wxListBox::ApplyToolTip( GtkTooltips
*tips
, const wxChar
*tip
)
1104 GList
*child
= m_list
->children
;
1107 gtk_tooltips_set_tip( tips
, GTK_WIDGET( child
->data
), wxConvCurrent
->cWX2MB(tip
), (gchar
*) NULL
);
1108 child
= child
->next
;
1111 #endif // wxUSE_TOOLTIPS
1113 GtkWidget
*wxListBox::GetConnectWidget()
1115 // return GTK_WIDGET(m_list);
1119 bool wxListBox::IsOwnGtkWindow( GdkWindow
*window
)
1124 if (m_widget
->window
== window
) return TRUE
;
1126 if (GTK_WIDGET(m_list
)->window
== window
) return TRUE
;
1128 GList
*child
= m_list
->children
;
1131 GtkWidget
*bin
= GTK_WIDGET( child
->data
);
1132 if (bin
->window
== window
) return TRUE
;
1133 child
= child
->next
;
1140 void wxListBox::DoApplyWidgetStyle(GtkRcStyle
*style
)
1142 if (m_hasBgCol
&& m_backgroundColour
.Ok())
1144 GdkWindow
*window
= GTK_WIDGET(m_list
)->window
;
1147 m_backgroundColour
.CalcPixel( gdk_window_get_colormap( window
) );
1148 gdk_window_set_background( window
, m_backgroundColour
.GetColor() );
1149 gdk_window_clear( window
);
1153 GList
*child
= m_list
->children
;
1156 gtk_widget_modify_style( GTK_WIDGET(child
->data
), style
);
1158 GtkBin
*bin
= GTK_BIN( child
->data
);
1159 GtkWidget
*label
= GTK_WIDGET( bin
->child
);
1160 gtk_widget_modify_style( label
, style
);
1162 child
= child
->next
;
1166 void wxListBox::OnInternalIdle()
1168 wxCursor cursor
= m_cursor
;
1169 if (g_globalCursor
.Ok()) cursor
= g_globalCursor
;
1171 if (GTK_WIDGET(m_list
)->window
&& cursor
.Ok())
1173 /* I now set the cursor the anew in every OnInternalIdle call
1174 as setting the cursor in a parent window also effects the
1175 windows above so that checking for the current cursor is
1178 gdk_window_set_cursor( GTK_WIDGET(m_list
)->window
, cursor
.GetCursor() );
1180 GList
*child
= m_list
->children
;
1183 GtkBin
*bin
= GTK_BIN( child
->data
);
1184 GtkWidget
*label
= GTK_WIDGET( bin
->child
);
1189 gdk_window_set_cursor( label
->window
, cursor
.GetCursor() );
1191 child
= child
->next
;
1195 if (g_delayedFocus
== this)
1197 if (GTK_WIDGET_REALIZED(m_widget
))
1199 gtk_widget_grab_focus( m_widget
);
1200 g_delayedFocus
= NULL
;
1204 if (wxUpdateUIEvent::CanUpdate(this))
1205 UpdateWindowUI(wxUPDATE_UI_FROMIDLE
);
1208 wxSize
wxListBox::DoGetBestSize() const
1210 int lbWidth
= 100; // some defaults
1214 // Find the widest line
1215 for(int i
= 0; i
< GetCount(); i
++) {
1216 wxString
str(GetString(i
));
1217 GetTextExtent(str
, &wLine
, NULL
);
1218 lbWidth
= wxMax(lbWidth
, wLine
);
1221 // Add room for the scrollbar
1222 lbWidth
+= wxSystemSettings::GetMetric(wxSYS_VSCROLL_X
);
1224 // And just a bit more
1226 GetTextExtent( wxT("X"), &cx
, &cy
);
1229 // don't make the listbox too tall (limit height to around 10 items) but don't
1230 // make it too small neither
1231 lbHeight
= (cy
+4) * wxMin(wxMax(GetCount(), 3), 10);
1233 wxSize
best(lbWidth
, lbHeight
);
1234 CacheBestSize(best
);
1238 void wxListBox::FixUpMouseEvent(GtkWidget
*widget
, wxCoord
& x
, wxCoord
& y
)
1240 // the mouse event coords are relative to the listbox items, we need to
1241 // translate them to the normal client coords
1242 x
+= widget
->allocation
.x
;
1243 y
+= widget
->allocation
.y
;
1249 wxListBox::GetClassDefaultAttributes(wxWindowVariant
WXUNUSED(variant
))
1251 return GetDefaultAttributesFromGTKWidget(gtk_list_new
, true);
1254 #endif // wxUSE_LISTBOX