1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
12 #pragma implementation "listbox.h"
15 #include "wx/listbox.h"
19 #include "wx/dynarray.h"
22 #include "wx/checklst.h"
23 #include "wx/settings.h"
26 #include "wx/tooltip.h"
31 #include <gdk/gdkkeysyms.h>
33 //-----------------------------------------------------------------------------
35 //-----------------------------------------------------------------------------
37 extern void wxapp_install_idle_handler();
40 //-----------------------------------------------------------------------------
42 //-----------------------------------------------------------------------------
44 #if wxUSE_CHECKLISTBOX
46 // checklistboxes have "[±] " prepended to their lables, this macro removes it
47 // (NB: 4 below is the length of wxCHECKLBOX_STRING above)
49 // the argument to it is a "const char *" pointer
50 #define GET_REAL_LABEL(label) ((m_hasCheckBoxes)?(label)+4 : (label))
52 #else // !wxUSE_CHECKLISTBOX
54 #define GET_REAL_LABEL(label) (label)
56 #endif // wxUSE_CHECKLISTBOX
58 //-----------------------------------------------------------------------------
60 //-----------------------------------------------------------------------------
62 extern bool g_blockEventsOnDrag
;
63 extern bool g_blockEventsOnScroll
;
64 extern wxCursor g_globalCursor
;
65 extern wxWindowGTK
*g_delayedFocus
;
67 static bool g_hasDoubleClicked
= FALSE
;
69 //-----------------------------------------------------------------------------
70 // idle callback for SetFirstItem
71 //-----------------------------------------------------------------------------
73 struct wxlistbox_idle_struct
80 extern "C" gint
wxlistbox_idle_callback( gpointer gdata
)
82 wxlistbox_idle_struct
* data
= (wxlistbox_idle_struct
*) gdata
;
85 gtk_idle_remove( data
->m_tag
);
87 // check that the items haven't been deleted from the listbox since we had
88 // installed this callback
89 wxListBox
*lbox
= data
->m_listbox
;
90 if ( data
->m_item
< lbox
->GetCount() )
92 lbox
->SetFirstItem( data
->m_item
);
102 //-----------------------------------------------------------------------------
103 // "button_release_event"
104 //-----------------------------------------------------------------------------
106 /* we would normally emit a wxEVT_COMMAND_LISTBOX_DOUBLECLICKED event once
107 a GDK_2BUTTON_PRESS occurs, but this has the particular problem of the
108 listbox keeping the focus until it receives a GDK_BUTTON_RELEASE event.
109 this can lead to race conditions so that we emit the dclick event
110 after the GDK_BUTTON_RELEASE event after the GDK_2BUTTON_PRESS event */
113 gtk_listbox_button_release_callback( GtkWidget
* WXUNUSED(widget
),
114 GdkEventButton
* WXUNUSED(gdk_event
),
117 if (g_isIdle
) wxapp_install_idle_handler();
119 if (g_blockEventsOnDrag
) return FALSE
;
120 if (g_blockEventsOnScroll
) return FALSE
;
122 if (!listbox
->m_hasVMT
) return FALSE
;
124 if (!g_hasDoubleClicked
) return FALSE
;
126 wxCommandEvent
event( wxEVT_COMMAND_LISTBOX_DOUBLECLICKED
, listbox
->GetId() );
127 event
.SetEventObject( listbox
);
129 wxArrayInt aSelections
;
130 int n
, count
= listbox
->GetSelections(aSelections
);
134 if ( listbox
->HasClientObjectData() )
135 event
.SetClientObject( listbox
->GetClientObject(n
) );
136 else if ( listbox
->HasClientUntypedData() )
137 event
.SetClientData( listbox
->GetClientData(n
) );
138 event
.SetString( listbox
->GetString(n
) );
145 event
.m_commandInt
= n
;
147 listbox
->GetEventHandler()->ProcessEvent( event
);
152 //-----------------------------------------------------------------------------
153 // "button_press_event"
154 //-----------------------------------------------------------------------------
157 gtk_listbox_button_press_callback( GtkWidget
*widget
,
158 GdkEventButton
*gdk_event
,
161 if (g_isIdle
) wxapp_install_idle_handler();
163 if (g_blockEventsOnDrag
) return FALSE
;
164 if (g_blockEventsOnScroll
) return FALSE
;
166 if (!listbox
->m_hasVMT
) return FALSE
;
168 int sel
= listbox
->GtkGetIndex( widget
);
170 #if wxUSE_CHECKLISTBOX
171 if ((listbox
->m_hasCheckBoxes
) && (gdk_event
->x
< 15) && (gdk_event
->type
!= GDK_2BUTTON_PRESS
))
173 wxCheckListBox
*clb
= (wxCheckListBox
*)listbox
;
175 clb
->Check( sel
, !clb
->IsChecked(sel
) );
177 wxCommandEvent
event( wxEVT_COMMAND_CHECKLISTBOX_TOGGLED
, listbox
->GetId() );
178 event
.SetEventObject( listbox
);
180 listbox
->GetEventHandler()->ProcessEvent( event
);
182 #endif // wxUSE_CHECKLISTBOX
184 /* emit wxEVT_COMMAND_LISTBOX_DOUBLECLICKED later */
185 g_hasDoubleClicked
= (gdk_event
->type
== GDK_2BUTTON_PRESS
);
190 //-----------------------------------------------------------------------------
192 //-----------------------------------------------------------------------------
195 gtk_listbox_key_press_callback( GtkWidget
*widget
, GdkEventKey
*gdk_event
, wxListBox
*listbox
)
198 wxapp_install_idle_handler();
200 if (g_blockEventsOnDrag
)
205 if ((gdk_event
->keyval
== GDK_Tab
) || (gdk_event
->keyval
== GDK_ISO_Left_Tab
))
207 wxNavigationKeyEvent new_event
;
208 /* GDK reports GDK_ISO_Left_Tab for SHIFT-TAB */
209 new_event
.SetDirection( (gdk_event
->keyval
== GDK_Tab
) );
210 /* CTRL-TAB changes the (parent) window, i.e. switch notebook page */
211 new_event
.SetWindowChange( (gdk_event
->state
& GDK_CONTROL_MASK
) );
212 new_event
.SetCurrentFocus( listbox
);
213 ret
= listbox
->GetEventHandler()->ProcessEvent( new_event
);
216 if ((gdk_event
->keyval
== GDK_Return
) && (!ret
))
218 // eat return in all modes
222 #if wxUSE_CHECKLISTBOX
223 if ((gdk_event
->keyval
== ' ') && (listbox
->m_hasCheckBoxes
) && (!ret
))
225 int sel
= listbox
->GtkGetIndex( widget
);
227 wxCheckListBox
*clb
= (wxCheckListBox
*)listbox
;
229 clb
->Check( sel
, !clb
->IsChecked(sel
) );
231 wxCommandEvent
new_event( wxEVT_COMMAND_CHECKLISTBOX_TOGGLED
, listbox
->GetId() );
232 new_event
.SetEventObject( listbox
);
233 new_event
.SetInt( sel
);
234 ret
= listbox
->GetEventHandler()->ProcessEvent( new_event
);
236 #endif // wxUSE_CHECKLISTBOX
240 gtk_signal_emit_stop_by_name( GTK_OBJECT(widget
), "key_press_event" );
247 //-----------------------------------------------------------------------------
248 // "select" and "deselect"
249 //-----------------------------------------------------------------------------
251 static void gtk_listitem_select_cb( GtkWidget
*widget
, wxListBox
*listbox
, bool is_selection
);
253 static void gtk_listitem_select_callback( GtkWidget
*widget
, wxListBox
*listbox
)
255 gtk_listitem_select_cb( widget
, listbox
, TRUE
);
258 static void gtk_listitem_deselect_callback( GtkWidget
*widget
, wxListBox
*listbox
)
260 gtk_listitem_select_cb( widget
, listbox
, FALSE
);
263 static void gtk_listitem_select_cb( GtkWidget
*widget
, wxListBox
*listbox
, bool is_selection
)
265 if (g_isIdle
) wxapp_install_idle_handler();
267 if (!listbox
->m_hasVMT
) return;
268 if (g_blockEventsOnDrag
) return;
270 if (listbox
->m_blockEvent
) return;
272 wxCommandEvent
event(wxEVT_COMMAND_LISTBOX_SELECTED
, listbox
->GetId() );
273 event
.SetEventObject( listbox
);
275 // MSW doesn't do that either
276 // event.SetExtraLong( (long) is_selection );
279 if ((listbox
->GetWindowStyleFlag() & wxLB_SINGLE
) != 0)
281 int sel
= listbox
->GtkGetIndex( widget
);
283 if (listbox
->m_prevSelection
!= sel
)
284 gtk_list_unselect_item( listbox
->m_list
, listbox
->m_prevSelection
);
286 listbox
->m_prevSelection
= sel
;
289 wxArrayInt aSelections
;
290 int n
, count
= listbox
->GetSelections(aSelections
);
294 if ( listbox
->HasClientObjectData() )
295 event
.SetClientObject( listbox
->GetClientObject(n
) );
296 else if ( listbox
->HasClientUntypedData() )
297 event
.SetClientData( listbox
->GetClientData(n
) );
298 event
.SetString( listbox
->GetString(n
) );
305 event
.m_commandInt
= n
;
307 // No longer required with new code in wxLB_SINGLE
308 // listbox->GetEventHandler()->AddPendingEvent( event );
309 listbox
->GetEventHandler()->ProcessEvent( event
);
312 //-----------------------------------------------------------------------------
314 //-----------------------------------------------------------------------------
316 IMPLEMENT_DYNAMIC_CLASS(wxListBox
,wxControl
)
318 // ----------------------------------------------------------------------------
320 // ----------------------------------------------------------------------------
322 wxListBox::wxListBox()
324 m_list
= (GtkList
*) NULL
;
325 #if wxUSE_CHECKLISTBOX
326 m_hasCheckBoxes
= FALSE
;
327 #endif // wxUSE_CHECKLISTBOX
330 bool wxListBox::Create( wxWindow
*parent
, wxWindowID id
,
331 const wxPoint
&pos
, const wxSize
&size
,
332 int n
, const wxString choices
[],
333 long style
, const wxValidator
& validator
,
334 const wxString
&name
)
337 m_acceptsFocus
= TRUE
;
339 m_prevSelection
= 0; // or -1 ??
340 m_blockEvent
= FALSE
;
342 if (!PreCreation( parent
, pos
, size
) ||
343 !CreateBase( parent
, id
, pos
, size
, style
, validator
, name
))
345 wxFAIL_MSG( wxT("wxListBox creation failed") );
349 m_widget
= gtk_scrolled_window_new( (GtkAdjustment
*) NULL
, (GtkAdjustment
*) NULL
);
350 if (style
& wxLB_ALWAYS_SB
)
352 gtk_scrolled_window_set_policy( GTK_SCROLLED_WINDOW(m_widget
),
353 GTK_POLICY_AUTOMATIC
, GTK_POLICY_ALWAYS
);
357 gtk_scrolled_window_set_policy( GTK_SCROLLED_WINDOW(m_widget
),
358 GTK_POLICY_AUTOMATIC
, GTK_POLICY_AUTOMATIC
);
361 m_list
= GTK_LIST( gtk_list_new() );
363 GtkSelectionMode mode
;
364 if (style
& wxLB_MULTIPLE
)
366 mode
= GTK_SELECTION_MULTIPLE
;
368 else if (style
& wxLB_EXTENDED
)
370 mode
= GTK_SELECTION_EXTENDED
;
374 // if style was 0 set single mode
375 m_windowStyle
|= wxLB_SINGLE
;
376 mode
= GTK_SELECTION_MULTIPLE
;
379 gtk_list_set_selection_mode( GTK_LIST(m_list
), mode
);
381 gtk_scrolled_window_add_with_viewport( GTK_SCROLLED_WINDOW(m_widget
), GTK_WIDGET(m_list
) );
383 /* make list scroll when moving the focus down using cursor keys */
384 gtk_container_set_focus_vadjustment(
385 GTK_CONTAINER(m_list
),
386 gtk_scrolled_window_get_vadjustment(
387 GTK_SCROLLED_WINDOW(m_widget
)));
389 gtk_widget_show( GTK_WIDGET(m_list
) );
391 if ( style
& wxLB_SORT
)
393 // this will change DoAppend() behaviour
394 m_strings
= new wxSortedArrayString
;
398 m_strings
= (wxSortedArrayString
*)NULL
;
401 for (int i
= 0; i
< n
; i
++)
404 DoAppend(choices
[i
]);
407 // call it after appending the strings to the listbox, otherwise it doesn't
411 m_parent
->DoAddChild( this );
415 SetBackgroundColour( wxSystemSettings::GetColour( wxSYS_COLOUR_LISTBOX
) );
416 SetForegroundColour( parent
->GetForegroundColour() );
417 SetFont( parent
->GetFont() );
424 wxListBox::~wxListBox()
434 void wxListBox::DoInsertItems(const wxArrayString
& items
, int pos
)
436 wxCHECK_RET( m_list
!= NULL
, wxT("invalid listbox") );
438 // VZ: notice that InsertItems knows nothing about sorting, so calling it
439 // from outside (and not from our own Append) is likely to break
442 // code elsewhere supposes we have as many items in m_clientList as items
444 wxASSERT_MSG( m_clientList
.GetCount() == (size_t)GetCount(),
445 wxT("bug in client data management") );
447 GList
*children
= m_list
->children
;
448 int length
= g_list_length(children
);
450 wxCHECK_RET( pos
<= length
, wxT("invalid index in wxListBox::InsertItems") );
452 size_t nItems
= items
.GetCount();
457 for (size_t n
= 0; n
< nItems
; n
++)
459 index
= m_strings
->Add( items
[n
] );
461 if (index
!= GetCount())
463 GtkAddItem( items
[n
], index
);
464 wxNode
*node
= m_clientList
.Nth( index
);
465 m_clientList
.Insert( node
, (wxObject
*) NULL
);
469 GtkAddItem( items
[n
] );
470 m_clientList
.Append( (wxObject
*) NULL
);
478 for ( size_t n
= 0; n
< nItems
; n
++ )
480 GtkAddItem( items
[n
] );
482 m_clientList
.Append((wxObject
*)NULL
);
487 wxNode
*node
= m_clientList
.Nth( pos
);
488 for ( size_t n
= 0; n
< nItems
; n
++ )
490 GtkAddItem( items
[n
], pos
+n
);
492 m_clientList
.Insert( node
, (wxObject
*)NULL
);
497 wxASSERT_MSG( m_clientList
.GetCount() == (size_t)GetCount(),
498 wxT("bug in client data management") );
501 int wxListBox::DoAppend( const wxString
& item
)
505 // need to determine the index
506 int index
= m_strings
->Add( item
);
508 // only if not at the end anyway
509 if (index
!= GetCount())
511 GtkAddItem( item
, index
);
513 wxNode
*node
= m_clientList
.Nth( index
);
514 m_clientList
.Insert( node
, (wxObject
*)NULL
);
522 m_clientList
.Append((wxObject
*)NULL
);
524 return GetCount() - 1;
527 void wxListBox::GtkAddItem( const wxString
&item
, int pos
)
529 wxCHECK_RET( m_list
!= NULL
, wxT("invalid listbox") );
531 GtkWidget
*list_item
;
533 wxString
label(item
);
534 #if wxUSE_CHECKLISTBOX
537 label
.Prepend(wxCHECKLBOX_STRING
);
539 #endif // wxUSE_CHECKLISTBOX
541 list_item
= gtk_list_item_new_with_label( label
.mbc_str() );
543 GList
*gitem_list
= g_list_alloc ();
544 gitem_list
->data
= list_item
;
547 gtk_list_append_items( GTK_LIST (m_list
), gitem_list
);
549 gtk_list_insert_items( GTK_LIST (m_list
), gitem_list
, pos
);
551 gtk_signal_connect( GTK_OBJECT(list_item
), "select",
552 GTK_SIGNAL_FUNC(gtk_listitem_select_callback
), (gpointer
)this );
554 if (HasFlag(wxLB_MULTIPLE
) || HasFlag(wxLB_EXTENDED
))
555 gtk_signal_connect( GTK_OBJECT(list_item
), "deselect",
556 GTK_SIGNAL_FUNC(gtk_listitem_deselect_callback
), (gpointer
)this );
558 gtk_signal_connect( GTK_OBJECT(list_item
),
559 "button_press_event",
560 (GtkSignalFunc
)gtk_listbox_button_press_callback
,
563 gtk_signal_connect_after( GTK_OBJECT(list_item
),
564 "button_release_event",
565 (GtkSignalFunc
)gtk_listbox_button_release_callback
,
568 gtk_signal_connect( GTK_OBJECT(list_item
),
570 (GtkSignalFunc
)gtk_listbox_key_press_callback
,
573 ConnectWidget( list_item
);
575 gtk_widget_show( list_item
);
577 if (GTK_WIDGET_REALIZED(m_widget
))
579 gtk_widget_realize( list_item
);
580 gtk_widget_realize( GTK_BIN(list_item
)->child
);
582 // Apply current widget style to the new list_item
585 gtk_widget_set_style( GTK_WIDGET( list_item
), m_widgetStyle
);
586 GtkBin
*bin
= GTK_BIN( list_item
);
587 GtkWidget
*label
= GTK_WIDGET( bin
->child
);
588 gtk_widget_set_style( label
, m_widgetStyle
);
592 if (m_tooltip
) m_tooltip
->Apply( this );
597 void wxListBox::DoSetItems( const wxArrayString
& items
,
602 DoInsertItems(items
, 0);
606 size_t count
= items
.GetCount();
607 for ( size_t n
= 0; n
< count
; n
++ )
609 SetClientData(n
, clientData
[n
]);
614 // ----------------------------------------------------------------------------
616 // ----------------------------------------------------------------------------
618 void wxListBox::DoSetItemClientData( int n
, void* clientData
)
620 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid listbox control") );
622 wxNode
*node
= m_clientList
.Nth( n
);
623 wxCHECK_RET( node
, wxT("invalid index in wxListBox::DoSetItemClientData") );
625 node
->SetData( (wxObject
*) clientData
);
628 void* wxListBox::DoGetItemClientData( int n
) const
630 wxCHECK_MSG( m_widget
!= NULL
, NULL
, wxT("invalid listbox control") );
632 wxNode
*node
= m_clientList
.Nth( n
);
633 wxCHECK_MSG( node
, NULL
, wxT("invalid index in wxListBox::DoGetItemClientData") );
638 void wxListBox::DoSetItemClientObject( int n
, wxClientData
* clientData
)
640 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid listbox control") );
642 wxNode
*node
= m_clientList
.Nth( n
);
643 wxCHECK_RET( node
, wxT("invalid index in wxListBox::DoSetItemClientObject") );
645 wxClientData
*cd
= (wxClientData
*) node
->Data();
648 node
->SetData( (wxObject
*) clientData
);
651 wxClientData
* wxListBox::DoGetItemClientObject( int n
) const
653 wxCHECK_MSG( m_widget
!= NULL
, (wxClientData
*) NULL
, wxT("invalid listbox control") );
655 wxNode
*node
= m_clientList
.Nth( n
);
656 wxCHECK_MSG( node
, (wxClientData
*)NULL
,
657 wxT("invalid index in wxListBox::DoGetItemClientObject") );
659 return (wxClientData
*) node
->Data();
662 void wxListBox::Clear()
664 wxCHECK_RET( m_list
!= NULL
, wxT("invalid listbox") );
666 gtk_list_clear_items( m_list
, 0, GetCount() );
668 if ( GTK_LIST(m_list
)->last_focus_child
!= NULL
)
670 // This should be NULL, I think.
671 GTK_LIST(m_list
)->last_focus_child
= NULL
;
674 if ( HasClientObjectData() )
676 // destroy the data (due to Robert's idea of using wxList<wxObject>
677 // and not wxList<wxClientData> we can't just say
678 // m_clientList.DeleteContents(TRUE) - this would crash!
679 wxNode
*node
= m_clientList
.First();
682 delete (wxClientData
*)node
->Data();
686 m_clientList
.Clear();
692 void wxListBox::Delete( int n
)
694 wxCHECK_RET( m_list
!= NULL
, wxT("invalid listbox") );
696 GList
*child
= g_list_nth( m_list
->children
, n
);
698 wxCHECK_RET( child
, wxT("wrong listbox index") );
700 GList
*list
= g_list_append( (GList
*) NULL
, child
->data
);
701 gtk_list_remove_items( m_list
, list
);
704 wxNode
*node
= m_clientList
.Nth( n
);
707 if ( m_clientDataItemsType
== wxClientData_Object
)
709 wxClientData
*cd
= (wxClientData
*)node
->Data();
713 m_clientList
.DeleteNode( node
);
717 m_strings
->Remove(n
);
720 // ----------------------------------------------------------------------------
721 // string list access
722 // ----------------------------------------------------------------------------
724 void wxListBox::SetString( int n
, const wxString
&string
)
726 wxCHECK_RET( m_list
!= NULL
, wxT("invalid listbox") );
728 GList
*child
= g_list_nth( m_list
->children
, n
);
731 GtkBin
*bin
= GTK_BIN( child
->data
);
732 GtkLabel
*label
= GTK_LABEL( bin
->child
);
735 #if wxUSE_CHECKLISTBOX
737 str
+= wxCHECKLBOX_STRING
;
738 #endif // wxUSE_CHECKLISTBOX
741 gtk_label_set( label
, str
.mbc_str() );
745 wxFAIL_MSG(wxT("wrong listbox index"));
749 wxString
wxListBox::GetString( int n
) const
751 wxCHECK_MSG( m_list
!= NULL
, wxT(""), wxT("invalid listbox") );
753 GList
*child
= g_list_nth( m_list
->children
, n
);
756 GtkBin
*bin
= GTK_BIN( child
->data
);
757 GtkLabel
*label
= GTK_LABEL( bin
->child
);
759 wxString str
= wxString(GET_REAL_LABEL(label
->label
),*wxConvCurrent
);
764 wxFAIL_MSG(wxT("wrong listbox index"));
769 int wxListBox::GetCount() const
771 wxCHECK_MSG( m_list
!= NULL
, -1, wxT("invalid listbox") );
773 GList
*children
= m_list
->children
;
774 return g_list_length(children
);
777 int wxListBox::FindString( const wxString
&item
) const
779 wxCHECK_MSG( m_list
!= NULL
, -1, wxT("invalid listbox") );
781 GList
*child
= m_list
->children
;
785 GtkBin
*bin
= GTK_BIN( child
->data
);
786 GtkLabel
*label
= GTK_LABEL( bin
->child
);
788 wxString str
= wxString(GET_REAL_LABEL(label
->label
),*wxConvCurrent
);
797 // it's not an error if the string is not found -> no wxCHECK
802 // ----------------------------------------------------------------------------
804 // ----------------------------------------------------------------------------
806 int wxListBox::GetSelection() const
808 wxCHECK_MSG( m_list
!= NULL
, -1, wxT("invalid listbox") );
810 GList
*child
= m_list
->children
;
814 if (GTK_WIDGET(child
->data
)->state
== GTK_STATE_SELECTED
) return count
;
821 int wxListBox::GetSelections( wxArrayInt
& aSelections
) const
823 wxCHECK_MSG( m_list
!= NULL
, -1, wxT("invalid listbox") );
825 // get the number of selected items first
826 GList
*child
= m_list
->children
;
828 for (child
= m_list
->children
; child
!= NULL
; child
= child
->next
)
830 if (GTK_WIDGET(child
->data
)->state
== GTK_STATE_SELECTED
)
839 aSelections
.Alloc(count
); // optimization attempt
841 for (child
= m_list
->children
; child
!= NULL
; child
= child
->next
, i
++)
843 if (GTK_WIDGET(child
->data
)->state
== GTK_STATE_SELECTED
)
851 bool wxListBox::IsSelected( int n
) const
853 wxCHECK_MSG( m_list
!= NULL
, FALSE
, wxT("invalid listbox") );
855 GList
*target
= g_list_nth( m_list
->children
, n
);
857 wxCHECK_MSG( target
, FALSE
, wxT("invalid listbox index") );
859 return (GTK_WIDGET(target
->data
)->state
== GTK_STATE_SELECTED
) ;
862 void wxListBox::SetSelection( int n
, bool select
)
864 wxCHECK_RET( m_list
!= NULL
, wxT("invalid listbox") );
870 if ((m_windowStyle
& wxLB_SINGLE
) != 0)
871 gtk_list_unselect_item( m_list
, m_prevSelection
);
872 gtk_list_select_item( m_list
, n
);
876 gtk_list_unselect_item( m_list
, n
);
878 m_blockEvent
= FALSE
;
881 void wxListBox::DoSetFirstItem( int n
)
883 wxCHECK_RET( m_list
, wxT("invalid listbox") );
885 if (gdk_pointer_is_grabbed () && GTK_WIDGET_HAS_GRAB (m_list
))
888 // terribly efficient
889 const gchar
*vadjustment_key
= "gtk-vadjustment";
890 guint vadjustment_key_id
= g_quark_from_static_string (vadjustment_key
);
892 GtkAdjustment
*adjustment
=
893 (GtkAdjustment
*) gtk_object_get_data_by_id (GTK_OBJECT (m_list
), vadjustment_key_id
);
894 wxCHECK_RET( adjustment
, wxT("invalid listbox code") );
896 GList
*target
= g_list_nth( m_list
->children
, n
);
897 wxCHECK_RET( target
, wxT("invalid listbox index") );
899 GtkWidget
*item
= GTK_WIDGET(target
->data
);
900 wxCHECK_RET( item
, wxT("invalid listbox code") );
902 if (item
->allocation
.y
== -1)
904 wxlistbox_idle_struct
* data
= new wxlistbox_idle_struct
;
905 data
->m_listbox
= this;
907 data
->m_tag
= gtk_idle_add_priority( 800, wxlistbox_idle_callback
, (gpointer
) data
);
912 float y
= item
->allocation
.y
;
913 if (y
> adjustment
->upper
- adjustment
->page_size
)
914 y
= adjustment
->upper
- adjustment
->page_size
;
915 gtk_adjustment_set_value( adjustment
, y
);
918 // ----------------------------------------------------------------------------
920 // ----------------------------------------------------------------------------
922 int wxListBox::GtkGetIndex( GtkWidget
*item
) const
926 GList
*child
= m_list
->children
;
930 if (GTK_WIDGET(child
->data
) == item
) return count
;
939 void wxListBox::ApplyToolTip( GtkTooltips
*tips
, const wxChar
*tip
)
941 GList
*child
= m_list
->children
;
944 gtk_tooltips_set_tip( tips
, GTK_WIDGET( child
->data
), wxConvCurrent
->cWX2MB(tip
), (gchar
*) NULL
);
948 #endif // wxUSE_TOOLTIPS
950 GtkWidget
*wxListBox::GetConnectWidget()
952 return GTK_WIDGET(m_list
);
955 bool wxListBox::IsOwnGtkWindow( GdkWindow
*window
)
957 if (GTK_WIDGET(m_list
)->window
== window
) return TRUE
;
959 GList
*child
= m_list
->children
;
962 GtkWidget
*bin
= GTK_WIDGET( child
->data
);
963 if (bin
->window
== window
) return TRUE
;
970 void wxListBox::ApplyWidgetStyle()
974 if (m_backgroundColour
.Ok())
976 GdkWindow
*window
= GTK_WIDGET(m_list
)->window
;
979 m_backgroundColour
.CalcPixel( gdk_window_get_colormap( window
) );
980 gdk_window_set_background( window
, m_backgroundColour
.GetColor() );
981 gdk_window_clear( window
);
985 GList
*child
= m_list
->children
;
988 gtk_widget_set_style( GTK_WIDGET(child
->data
), m_widgetStyle
);
990 GtkBin
*bin
= GTK_BIN( child
->data
);
991 GtkWidget
*label
= GTK_WIDGET( bin
->child
);
992 gtk_widget_set_style( label
, m_widgetStyle
);
998 void wxListBox::OnInternalIdle()
1000 wxCursor cursor
= m_cursor
;
1001 if (g_globalCursor
.Ok()) cursor
= g_globalCursor
;
1003 if (GTK_WIDGET(m_list
)->window
&& cursor
.Ok())
1005 /* I now set the cursor the anew in every OnInternalIdle call
1006 as setting the cursor in a parent window also effects the
1007 windows above so that checking for the current cursor is
1010 gdk_window_set_cursor( GTK_WIDGET(m_list
)->window
, cursor
.GetCursor() );
1012 GList
*child
= m_list
->children
;
1015 GtkBin
*bin
= GTK_BIN( child
->data
);
1016 GtkWidget
*label
= GTK_WIDGET( bin
->child
);
1021 gdk_window_set_cursor( label
->window
, cursor
.GetCursor() );
1023 child
= child
->next
;
1027 if (g_delayedFocus
== this)
1029 if (GTK_WIDGET_REALIZED(m_widget
))
1031 gtk_widget_grab_focus( m_widget
);
1032 g_delayedFocus
= NULL
;
1039 wxSize
wxListBox::DoGetBestSize() const
1041 int lbWidth
= 100; // some defaults
1045 // Find the widest line
1046 for(int i
= 0; i
< GetCount(); i
++) {
1047 wxString
str(GetString(i
));
1048 GetTextExtent(str
, &wLine
, NULL
);
1049 lbWidth
= wxMax(lbWidth
, wLine
);
1052 // Add room for the scrollbar
1053 lbWidth
+= wxSystemSettings::GetMetric(wxSYS_VSCROLL_X
);
1055 // And just a bit more
1057 GetTextExtent("X", &cx
, &cy
);
1060 // don't make the listbox too tall (limit height to around 10 items) but don't
1061 // make it too small neither
1062 lbHeight
= (cy
+4) * wxMin(wxMax(GetCount(), 3), 10);
1064 return wxSize(lbWidth
, lbHeight
);