1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/gtk/combobox.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/combobox.h"
21 #include "wx/settings.h"
22 #include "wx/arrstr.h"
24 #include "wx/textctrl.h" // for wxEVT_COMMAND_TEXT_UPDATED
26 // We use GtkCombo which has been deprecated since GTK+ 2.3.0
27 // in favour of GtkComboBox for <GTK2.4 runtime
28 // We also use GtkList
29 #ifdef GTK_DISABLE_DEPRECATED
30 #undef GTK_DISABLE_DEPRECATED
32 #include "wx/gtk/private.h"
34 //-----------------------------------------------------------------------------
36 //-----------------------------------------------------------------------------
38 extern bool g_blockEventsOnDrag
;
39 static int g_SelectionBeforePopup
= wxID_NONE
; // this means the popup is hidden
41 //-----------------------------------------------------------------------------
42 // "changed" - typing and list item matches get changed, select-child
43 // if it doesn't match an item then just get a single changed
44 //-----------------------------------------------------------------------------
48 gtkcombo_text_changed_callback( GtkWidget
*WXUNUSED(widget
), wxComboBox
*combo
)
50 if (g_isIdle
) wxapp_install_idle_handler();
52 if (combo
->m_ignoreNextUpdate
)
54 combo
->m_ignoreNextUpdate
= false;
58 if (!combo
->m_hasVMT
) return;
60 wxCommandEvent
event( wxEVT_COMMAND_TEXT_UPDATED
, combo
->GetId() );
61 event
.SetString( combo
->GetValue() );
62 event
.SetEventObject( combo
);
63 combo
->GetEventHandler()->ProcessEvent( event
);
69 gtkcombo_dummy_callback(GtkEntry
*WXUNUSED(entry
), GtkCombo
*WXUNUSED(combo
))
76 gtkcombo_popup_hide_callback(GtkCombo
*WXUNUSED(gtk_combo
), wxComboBox
*combo
)
78 // when the popup is hidden, throw a SELECTED event only if the combobox
80 const int curSelection
= combo
->GetCurrentSelection();
82 const bool hasChanged
= curSelection
!= g_SelectionBeforePopup
;
84 // reset the selection flag to value meaning that it is hidden and do it
85 // now, before generating the events, so that GetSelection() returns the
86 // new value from the event handler
87 g_SelectionBeforePopup
= wxID_NONE
;
91 wxCommandEvent
event( wxEVT_COMMAND_COMBOBOX_SELECTED
, combo
->GetId() );
92 event
.SetInt( curSelection
);
93 event
.SetString( combo
->GetStringSelection() );
94 event
.SetEventObject( combo
);
95 combo
->GetEventHandler()->ProcessEvent( event
);
97 // for consistency with the other ports, send TEXT event
98 wxCommandEvent
event2( wxEVT_COMMAND_TEXT_UPDATED
, combo
->GetId() );
99 event2
.SetString( combo
->GetStringSelection() );
100 event2
.SetEventObject( combo
);
101 combo
->GetEventHandler()->ProcessEvent( event2
);
108 gtkcombo_popup_show_callback(GtkCombo
*WXUNUSED(gtk_combo
), wxComboBox
*combo
)
110 // store the combobox selection value before the popup is shown
111 g_SelectionBeforePopup
= combo
->GetCurrentSelection();
115 //-----------------------------------------------------------------------------
116 // "select-child" - click/cursor get select-child, changed, select-child
117 //-----------------------------------------------------------------------------
121 gtkcombo_combo_select_child_callback( GtkList
*WXUNUSED(list
), GtkWidget
*WXUNUSED(widget
), wxComboBox
*combo
)
123 if (g_isIdle
) wxapp_install_idle_handler();
125 if (!combo
->m_hasVMT
) return;
127 if (g_blockEventsOnDrag
) return;
129 int curSelection
= combo
->GetCurrentSelection();
131 if (combo
->m_prevSelection
== curSelection
) return;
133 GtkWidget
*list
= GTK_COMBO(combo
->m_widget
)->list
;
134 gtk_list_unselect_item( GTK_LIST(list
), combo
->m_prevSelection
);
136 combo
->m_prevSelection
= curSelection
;
138 // Quickly set the value of the combo box
139 // as GTK+ does that only AFTER the event
141 g_signal_handlers_disconnect_by_func (GTK_COMBO (combo
->GetHandle())->entry
,
142 (gpointer
) gtkcombo_text_changed_callback
,
144 combo
->SetValue( combo
->GetStringSelection() );
145 g_signal_connect_after (GTK_COMBO (combo
->GetHandle())->entry
, "changed",
146 G_CALLBACK (gtkcombo_text_changed_callback
), combo
);
148 // throw a SELECTED event only if the combobox popup is hidden (wxID_NONE)
149 // because when combobox popup is shown, gtkcombo_combo_select_child_callback is
150 // called each times the mouse is over an item with a pressed button so a lot
151 // of SELECTED event could be generated if the user keep the mouse button down
152 // and select other items ...
153 if (g_SelectionBeforePopup
== wxID_NONE
)
155 wxCommandEvent
event( wxEVT_COMMAND_COMBOBOX_SELECTED
, combo
->GetId() );
156 event
.SetInt( curSelection
);
157 event
.SetString( combo
->GetStringSelection() );
158 event
.SetEventObject( combo
);
159 combo
->GetEventHandler()->ProcessEvent( event
);
161 // for consistency with the other ports, don't generate text update
162 // events while the user is browsing the combobox neither
163 wxCommandEvent
event2( wxEVT_COMMAND_TEXT_UPDATED
, combo
->GetId() );
164 event2
.SetString( combo
->GetValue() );
165 event2
.SetEventObject( combo
);
166 combo
->GetEventHandler()->ProcessEvent( event2
);
174 gtkcombobox_text_changed_callback( GtkWidget
*WXUNUSED(widget
), wxComboBox
*combo
)
176 if (g_isIdle
) wxapp_install_idle_handler();
178 if (!combo
->m_hasVMT
) return;
180 wxCommandEvent
event( wxEVT_COMMAND_TEXT_UPDATED
, combo
->GetId() );
181 event
.SetString( combo
->GetValue() );
182 event
.SetEventObject( combo
);
183 combo
->GetEventHandler()->ProcessEvent( event
);
189 gtkcombobox_changed_callback( GtkWidget
*WXUNUSED(widget
), wxComboBox
*combo
)
191 if (g_isIdle
) wxapp_install_idle_handler();
193 if (!combo
->m_hasVMT
) return;
195 wxCommandEvent
event( wxEVT_COMMAND_COMBOBOX_SELECTED
, combo
->GetId() );
196 event
.SetInt( combo
->GetSelection() );
197 event
.SetString( combo
->GetStringSelection() );
198 event
.SetEventObject( combo
);
199 combo
->GetEventHandler()->ProcessEvent( event
);
204 //-----------------------------------------------------------------------------
206 //-----------------------------------------------------------------------------
208 IMPLEMENT_DYNAMIC_CLASS(wxComboBox
,wxControl
)
210 BEGIN_EVENT_TABLE(wxComboBox
, wxControl
)
211 EVT_SIZE(wxComboBox::OnSize
)
212 EVT_CHAR(wxComboBox::OnChar
)
214 EVT_MENU(wxID_CUT
, wxComboBox::OnCut
)
215 EVT_MENU(wxID_COPY
, wxComboBox::OnCopy
)
216 EVT_MENU(wxID_PASTE
, wxComboBox::OnPaste
)
217 EVT_MENU(wxID_UNDO
, wxComboBox::OnUndo
)
218 EVT_MENU(wxID_REDO
, wxComboBox::OnRedo
)
219 EVT_MENU(wxID_CLEAR
, wxComboBox::OnDelete
)
220 EVT_MENU(wxID_SELECTALL
, wxComboBox::OnSelectAll
)
222 EVT_UPDATE_UI(wxID_CUT
, wxComboBox::OnUpdateCut
)
223 EVT_UPDATE_UI(wxID_COPY
, wxComboBox::OnUpdateCopy
)
224 EVT_UPDATE_UI(wxID_PASTE
, wxComboBox::OnUpdatePaste
)
225 EVT_UPDATE_UI(wxID_UNDO
, wxComboBox::OnUpdateUndo
)
226 EVT_UPDATE_UI(wxID_REDO
, wxComboBox::OnUpdateRedo
)
227 EVT_UPDATE_UI(wxID_CLEAR
, wxComboBox::OnUpdateDelete
)
228 EVT_UPDATE_UI(wxID_SELECTALL
, wxComboBox::OnUpdateSelectAll
)
231 bool wxComboBox::Create( wxWindow
*parent
, wxWindowID id
,
232 const wxString
& value
,
233 const wxPoint
& pos
, const wxSize
& size
,
234 const wxArrayString
& choices
,
235 long style
, const wxValidator
& validator
,
236 const wxString
& name
)
238 wxCArrayString
chs(choices
);
240 return Create( parent
, id
, value
, pos
, size
, chs
.GetCount(),
241 chs
.GetStrings(), style
, validator
, name
);
244 bool wxComboBox::Create( wxWindow
*parent
, wxWindowID id
, const wxString
& value
,
245 const wxPoint
& pos
, const wxSize
& size
,
246 int n
, const wxString choices
[],
247 long style
, const wxValidator
& validator
,
248 const wxString
& name
)
250 m_ignoreNextUpdate
= false;
252 m_acceptsFocus
= true;
255 if (!PreCreation( parent
, pos
, size
) ||
256 !CreateBase( parent
, id
, pos
, size
, style
, validator
, name
))
258 wxFAIL_MSG( wxT("wxComboBox creation failed") );
263 if (!gtk_check_version(2,4,0))
265 m_widget
= gtk_combo_box_entry_new_text();
266 GtkComboBox
* combobox
= GTK_COMBO_BOX( m_widget
);
268 gtk_entry_set_editable( GTK_ENTRY( GTK_BIN(m_widget
)->child
), TRUE
);
270 for (int i
= 0; i
< n
; i
++)
272 gtk_combo_box_append_text( combobox
, wxGTK_CONV( choices
[i
] ) );
274 m_clientDataList
.Append( (wxObject
*)NULL
);
275 m_clientObjectList
.Append( (wxObject
*)NULL
);
281 m_widget
= gtk_combo_new();
282 GtkCombo
* combo
= GTK_COMBO(m_widget
);
284 // Disable GTK's broken events ...
285 g_signal_handler_disconnect (combo
->entry
, combo
->entry_change_id
);
286 // ... and add surrogate handler.
287 combo
->entry_change_id
= g_signal_connect (combo
->entry
, "changed",
288 G_CALLBACK (gtkcombo_dummy_callback
),
291 // make it more useable
292 gtk_combo_set_use_arrows_always( GTK_COMBO(m_widget
), TRUE
);
294 // and case-sensitive
295 gtk_combo_set_case_sensitive( GTK_COMBO(m_widget
), TRUE
);
297 if (style
& wxNO_BORDER
)
298 g_object_set( GTK_ENTRY( combo
->entry
), "has-frame", FALSE
, NULL
);
300 GtkWidget
*list
= combo
->list
;
302 for (int i
= 0; i
< n
; i
++)
304 GtkWidget
*list_item
= gtk_list_item_new_with_label( wxGTK_CONV( choices
[i
] ) );
306 m_clientDataList
.Append( (wxObject
*)NULL
);
307 m_clientObjectList
.Append( (wxObject
*)NULL
);
309 gtk_container_add( GTK_CONTAINER(list
), list_item
);
311 gtk_widget_show( list_item
);
316 m_parent
->DoAddChild( this );
318 GtkEntry
*entry
= NULL
;
320 if (!gtk_check_version(2,4,0))
321 entry
= GTK_ENTRY( GTK_BIN(m_widget
)->child
);
324 entry
= GTK_ENTRY( GTK_COMBO(m_widget
)->entry
);
326 m_focusWidget
= GTK_WIDGET( entry
);
331 if (!gtk_check_version(2,4,0))
332 ConnectWidget( m_widget
);
335 ConnectWidget( GTK_COMBO(m_widget
)->button
);
338 if (!gtk_check_version(2,4,0))
340 gtk_entry_set_text( entry
, wxGTK_CONV(value
) );
342 if (style
& wxCB_READONLY
)
343 gtk_entry_set_editable( entry
, FALSE
);
345 g_signal_connect_after (entry
, "changed",
346 G_CALLBACK (gtkcombobox_text_changed_callback
), this);
348 g_signal_connect_after (m_widget
, "changed",
349 G_CALLBACK (gtkcombobox_changed_callback
), this);
354 GtkCombo
*combo
= GTK_COMBO(m_widget
);
355 // MSW's combo box shows the value and the selection is -1
356 gtk_entry_set_text( entry
, wxGTK_CONV(value
) );
357 gtk_list_unselect_all( GTK_LIST(combo
->list
) );
359 if (style
& wxCB_READONLY
)
360 gtk_entry_set_editable( entry
, FALSE
);
362 // "show" and "hide" events are generated when user click on the combobox button which popups a list
363 // this list is the "popwin" gtk widget
364 g_signal_connect (GTK_COMBO(combo
)->popwin
, "hide",
365 G_CALLBACK (gtkcombo_popup_hide_callback
), this);
366 g_signal_connect (GTK_COMBO(combo
)->popwin
, "show",
367 G_CALLBACK (gtkcombo_popup_show_callback
), this);
368 g_signal_connect_after (combo
->list
, "select-child",
369 G_CALLBACK (gtkcombo_combo_select_child_callback
),
371 g_signal_connect_after (entry
, "changed",
372 G_CALLBACK (gtkcombo_text_changed_callback
), this);
374 // This is required for tool bar support
375 // Doesn't currently work
376 // wxSize setsize = GetSize();
377 // gtk_widget_set_size_request( m_widget, setsize.x, setsize.y );
380 SetBestSize(size
); // need this too because this is a wxControlWithItems
386 wxComboBox::~wxComboBox()
388 wxList::compatibility_iterator node
= m_clientObjectList
.GetFirst();
391 wxClientData
*cd
= (wxClientData
*)node
->GetData();
393 node
= node
->GetNext();
395 m_clientObjectList
.Clear();
397 m_clientDataList
.Clear();
400 void wxComboBox::SetFocus()
404 // don't do anything if we already have focus
408 gtk_widget_grab_focus( m_focusWidget
);
411 int wxComboBox::DoAppend( const wxString
&item
)
413 wxCHECK_MSG( m_widget
!= NULL
, -1, wxT("invalid combobox") );
416 if (!gtk_check_version(2,4,0))
418 GtkComboBox
* combobox
= GTK_COMBO_BOX( m_widget
);
419 gtk_combo_box_append_text( combobox
, wxGTK_CONV( item
) );
426 GtkWidget
*list
= GTK_COMBO(m_widget
)->list
;
427 GtkWidget
*list_item
= gtk_list_item_new_with_label( wxGTK_CONV( item
) );
429 gtk_container_add( GTK_CONTAINER(list
), list_item
);
431 if (GTK_WIDGET_REALIZED(m_widget
))
433 gtk_widget_realize( list_item
);
434 gtk_widget_realize( GTK_BIN(list_item
)->child
);
437 // Apply current widget style to the new list_item
438 GtkRcStyle
*style
= CreateWidgetStyle();
441 gtk_widget_modify_style( GTK_WIDGET( list_item
), style
);
442 GtkBin
*bin
= GTK_BIN( list_item
);
443 GtkWidget
*label
= GTK_WIDGET( bin
->child
);
444 gtk_widget_modify_style( label
, style
);
445 gtk_rc_style_unref( style
);
448 gtk_widget_show( list_item
);
453 const unsigned int count
= GetCount();
455 if ( m_clientDataList
.GetCount() < count
)
456 m_clientDataList
.Append( (wxObject
*) NULL
);
457 if ( m_clientObjectList
.GetCount() < count
)
458 m_clientObjectList
.Append( (wxObject
*) NULL
);
460 InvalidateBestSize();
465 int wxComboBox::DoInsert(const wxString
&item
, unsigned int pos
)
467 wxCHECK_MSG( !(GetWindowStyle() & wxCB_SORT
), -1,
468 wxT("can't insert into sorted list"));
470 wxCHECK_MSG( m_widget
!= NULL
, -1, wxT("invalid combobox") );
471 wxCHECK_MSG( IsValidInsert(pos
), -1, wxT("invalid index") );
473 unsigned int count
= GetCount();
479 if (!gtk_check_version(2,4,0))
481 GtkComboBox
* combobox
= GTK_COMBO_BOX( m_widget
);
482 gtk_combo_box_insert_text( combobox
, pos
, wxGTK_CONV( item
) );
489 GtkWidget
*list
= GTK_COMBO(m_widget
)->list
;
490 GtkWidget
*list_item
= gtk_list_item_new_with_label( wxGTK_CONV( item
) );
492 GList
*gitem_list
= g_list_alloc ();
493 gitem_list
->data
= list_item
;
494 gtk_list_insert_items( GTK_LIST (list
), gitem_list
, pos
);
496 if (GTK_WIDGET_REALIZED(m_widget
))
498 gtk_widget_realize( list_item
);
499 gtk_widget_realize( GTK_BIN(list_item
)->child
);
504 gtk_widget_show( list_item
);
511 if ( m_clientDataList
.GetCount() < count
)
512 m_clientDataList
.Insert( pos
, (wxObject
*) NULL
);
513 if ( m_clientObjectList
.GetCount() < count
)
514 m_clientObjectList
.Insert( pos
, (wxObject
*) NULL
);
516 InvalidateBestSize();
521 void wxComboBox::DoSetItemClientData(unsigned int n
, void* clientData
)
523 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid combobox") );
525 wxList::compatibility_iterator node
= m_clientDataList
.Item( n
);
528 node
->SetData( (wxObject
*) clientData
);
531 void* wxComboBox::DoGetItemClientData(unsigned int n
) const
533 wxCHECK_MSG( m_widget
!= NULL
, NULL
, wxT("invalid combobox") );
535 wxList::compatibility_iterator node
= m_clientDataList
.Item( n
);
537 return node
? node
->GetData() : NULL
;
540 void wxComboBox::DoSetItemClientObject(unsigned int n
, wxClientData
* clientData
)
542 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid combobox") );
544 wxList::compatibility_iterator node
= m_clientObjectList
.Item( n
);
547 // wxItemContainer already deletes data for us
549 node
->SetData( (wxObject
*) clientData
);
552 wxClientData
* wxComboBox::DoGetItemClientObject(unsigned int n
) const
554 wxCHECK_MSG( m_widget
!= NULL
, (wxClientData
*)NULL
, wxT("invalid combobox") );
556 wxList::compatibility_iterator node
= m_clientObjectList
.Item( n
);
558 return node
? (wxClientData
*) node
->GetData() : NULL
;
561 void wxComboBox::Clear()
563 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid combobox") );
568 if (!gtk_check_version(2,4,0))
570 GtkComboBox
* combobox
= GTK_COMBO_BOX( m_widget
);
571 const unsigned int count
= GetCount();
572 for (unsigned int i
= 0; i
< count
; i
++)
573 gtk_combo_box_remove_text( combobox
, 0 );
576 #endif // __WXGTK24__
578 GtkWidget
*list
= GTK_COMBO(m_widget
)->list
;
579 gtk_list_clear_items( GTK_LIST(list
), 0, GetCount() );
582 wxList::compatibility_iterator node
= m_clientObjectList
.GetFirst();
585 wxClientData
*cd
= (wxClientData
*)node
->GetData();
587 node
= node
->GetNext();
589 m_clientObjectList
.Clear();
591 m_clientDataList
.Clear();
595 InvalidateBestSize();
598 void wxComboBox::Delete(unsigned int n
)
600 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid combobox") );
603 if (!gtk_check_version(2,4,0))
605 wxCHECK_RET( IsValid(n
), wxT("invalid index") );
607 GtkComboBox
* combobox
= GTK_COMBO_BOX( m_widget
);
608 gtk_combo_box_remove_text( combobox
, n
);
613 GtkList
*listbox
= GTK_LIST( GTK_COMBO(m_widget
)->list
);
615 GList
*child
= g_list_nth( listbox
->children
, n
);
619 wxFAIL_MSG(wxT("wrong index"));
625 GList
*list
= g_list_append( (GList
*) NULL
, child
->data
);
626 gtk_list_remove_items( listbox
, list
);
632 wxList::compatibility_iterator node
= m_clientObjectList
.Item( n
);
635 wxClientData
*cd
= (wxClientData
*)node
->GetData();
637 m_clientObjectList
.Erase( node
);
640 node
= m_clientDataList
.Item( n
);
642 m_clientDataList
.Erase( node
);
644 InvalidateBestSize();
647 void wxComboBox::SetString(unsigned int n
, const wxString
&text
)
649 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid combobox") );
652 if (!gtk_check_version(2,4,0))
654 GtkComboBox
* combobox
= GTK_COMBO_BOX( m_widget
);
655 wxCHECK_RET( IsValid(n
), wxT("invalid index") );
657 GtkTreeModel
*model
= gtk_combo_box_get_model( combobox
);
659 if (gtk_tree_model_iter_nth_child (model
, &iter
, NULL
, n
))
661 GValue value
= { 0, };
662 g_value_init( &value
, G_TYPE_STRING
);
663 g_value_set_string( &value
, wxGTK_CONV( text
) );
664 gtk_list_store_set_value( GTK_LIST_STORE(model
), &iter
, 0, &value
);
665 g_value_unset( &value
);
671 GtkWidget
*list
= GTK_COMBO(m_widget
)->list
;
673 GList
*child
= g_list_nth( GTK_LIST(list
)->children
, n
);
676 GtkBin
*bin
= GTK_BIN( child
->data
);
677 GtkLabel
*label
= GTK_LABEL( bin
->child
);
678 gtk_label_set_text(label
, wxGTK_CONV(text
));
682 wxFAIL_MSG( wxT("wxComboBox: wrong index") );
686 InvalidateBestSize();
689 int wxComboBox::FindString( const wxString
&item
, bool bCase
) const
691 wxCHECK_MSG( m_widget
!= NULL
, wxNOT_FOUND
, wxT("invalid combobox") );
694 if (!gtk_check_version(2,4,0))
696 GtkComboBox
* combobox
= GTK_COMBO_BOX( m_widget
);
697 GtkTreeModel
* model
= gtk_combo_box_get_model( combobox
);
699 gtk_tree_model_get_iter_first( model
, &iter
);
700 if (!gtk_list_store_iter_is_valid(GTK_LIST_STORE(model
), &iter
))
705 GValue value
= { 0, };
706 gtk_tree_model_get_value( model
, &iter
, 0, &value
);
707 wxString str
= wxGTK_CONV_BACK( g_value_get_string( &value
) );
708 g_value_unset( &value
);
710 if (item
.IsSameAs( str
, bCase
) )
715 } while (gtk_tree_model_iter_next( model
, &iter
));
720 GtkWidget
*list
= GTK_COMBO(m_widget
)->list
;
722 GList
*child
= GTK_LIST(list
)->children
;
726 GtkBin
*bin
= GTK_BIN( child
->data
);
727 GtkLabel
*label
= GTK_LABEL( bin
->child
);
728 wxString
str( wxGTK_CONV_BACK( gtk_label_get_text(label
) ) );
730 if (item
.IsSameAs( str
, bCase
) )
741 int wxComboBox::GetSelection() const
744 if (!gtk_check_version(2,4,0))
746 GtkComboBox
* combobox
= GTK_COMBO_BOX( m_widget
);
747 return gtk_combo_box_get_active( combobox
);
751 // if the popup is currently opened, use the selection as it had been
752 // before it dropped down
753 return g_SelectionBeforePopup
== wxID_NONE
? GetCurrentSelection()
754 : g_SelectionBeforePopup
;
757 int wxComboBox::GetCurrentSelection() const
759 wxCHECK_MSG( m_widget
!= NULL
, -1, wxT("invalid combobox") );
762 if (!gtk_check_version(2,4,0))
764 GtkComboBox
* combobox
= GTK_COMBO_BOX( m_widget
);
765 return gtk_combo_box_get_active( combobox
);
770 GtkWidget
*list
= GTK_COMBO(m_widget
)->list
;
772 GList
*selection
= GTK_LIST(list
)->selection
;
775 GList
*child
= GTK_LIST(list
)->children
;
779 if (child
->data
== selection
->data
) return count
;
789 wxString
wxComboBox::GetString(unsigned int n
) const
791 wxCHECK_MSG( m_widget
!= NULL
, wxEmptyString
, wxT("invalid combobox") );
796 if (!gtk_check_version(2,4,0))
798 GtkComboBox
* combobox
= GTK_COMBO_BOX( m_widget
);
799 GtkTreeModel
*model
= gtk_combo_box_get_model( combobox
);
801 if (gtk_tree_model_iter_nth_child (model
, &iter
, NULL
, n
))
803 GValue value
= { 0, };
804 gtk_tree_model_get_value( model
, &iter
, 0, &value
);
805 wxString tmp
= wxGTK_CONV_BACK( g_value_get_string( &value
) );
806 g_value_unset( &value
);
813 GtkWidget
*list
= GTK_COMBO(m_widget
)->list
;
815 GList
*child
= g_list_nth( GTK_LIST(list
)->children
, n
);
818 GtkBin
*bin
= GTK_BIN( child
->data
);
819 GtkLabel
*label
= GTK_LABEL( bin
->child
);
820 str
= wxGTK_CONV_BACK( gtk_label_get_text(label
) );
824 wxFAIL_MSG( wxT("wxComboBox: wrong index") );
831 wxString
wxComboBox::GetStringSelection() const
833 wxCHECK_MSG( m_widget
!= NULL
, wxEmptyString
, wxT("invalid combobox") );
836 if (!gtk_check_version(2,4,0))
838 GtkComboBox
* combobox
= GTK_COMBO_BOX( m_widget
);
839 int sel
= gtk_combo_box_get_active( combobox
);
841 return wxEmptyString
;
842 return GetString(sel
);
847 GtkWidget
*list
= GTK_COMBO(m_widget
)->list
;
849 GList
*selection
= GTK_LIST(list
)->selection
;
852 GtkBin
*bin
= GTK_BIN( selection
->data
);
853 GtkLabel
*label
= GTK_LABEL( bin
->child
);
854 wxString
tmp( wxGTK_CONV_BACK( gtk_label_get_text(label
) ) );
858 wxFAIL_MSG( wxT("wxComboBox: no selection") );
861 return wxEmptyString
;
864 unsigned int wxComboBox::GetCount() const
866 wxCHECK_MSG( m_widget
!= NULL
, 0, wxT("invalid combobox") );
869 if (!gtk_check_version(2,4,0))
871 GtkComboBox
* combobox
= GTK_COMBO_BOX( m_widget
);
872 GtkTreeModel
* model
= gtk_combo_box_get_model( combobox
);
874 gtk_tree_model_get_iter_first( model
, &iter
);
875 if (!gtk_list_store_iter_is_valid(GTK_LIST_STORE(model
), &iter
))
877 unsigned int ret
= 1;
878 while (gtk_tree_model_iter_next( model
, &iter
))
885 GtkWidget
*list
= GTK_COMBO(m_widget
)->list
;
887 GList
*child
= GTK_LIST(list
)->children
;
888 unsigned int count
= 0;
900 void wxComboBox::SetSelection( int n
)
902 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid combobox") );
907 if (!gtk_check_version(2,4,0))
909 GtkComboBox
* combobox
= GTK_COMBO_BOX( m_widget
);
910 gtk_combo_box_set_active( combobox
, n
);
915 GtkWidget
*list
= GTK_COMBO(m_widget
)->list
;
916 gtk_list_unselect_item( GTK_LIST(list
), m_prevSelection
);
917 gtk_list_select_item( GTK_LIST(list
), n
);
924 wxString
wxComboBox::GetValue() const
926 GtkEntry
*entry
= NULL
;
928 if (!gtk_check_version(2,4,0))
929 entry
= GTK_ENTRY( GTK_BIN(m_widget
)->child
);
932 entry
= GTK_ENTRY( GTK_COMBO(m_widget
)->entry
);
934 wxString
tmp( wxGTK_CONV_BACK( gtk_entry_get_text( entry
) ) );
937 for (int i
= 0; i
< wxStrlen(tmp
.c_str()) +1; i
++)
940 printf( "%d ", (int) (c
) );
948 void wxComboBox::SetValue( const wxString
& value
)
950 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid combobox") );
952 GtkEntry
*entry
= NULL
;
954 if (!gtk_check_version(2,4,0))
955 entry
= GTK_ENTRY( GTK_BIN(m_widget
)->child
);
958 entry
= GTK_ENTRY( GTK_COMBO(m_widget
)->entry
);
961 if (!value
.IsNull()) tmp
= value
;
962 gtk_entry_set_text( entry
, wxGTK_CONV( tmp
) );
964 InvalidateBestSize();
967 void wxComboBox::Copy()
969 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid combobox") );
971 GtkEntry
*entry
= NULL
;
973 if (!gtk_check_version(2,4,0))
974 entry
= GTK_ENTRY( GTK_BIN(m_widget
)->child
);
977 entry
= GTK_ENTRY( GTK_COMBO(m_widget
)->entry
);
979 gtk_editable_copy_clipboard(GTK_EDITABLE(entry
));
982 void wxComboBox::Cut()
984 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid combobox") );
986 GtkEntry
*entry
= NULL
;
988 if (!gtk_check_version(2,4,0))
989 entry
= GTK_ENTRY( GTK_BIN(m_widget
)->child
);
992 entry
= GTK_ENTRY( GTK_COMBO(m_widget
)->entry
);
994 gtk_editable_cut_clipboard(GTK_EDITABLE(entry
));
997 void wxComboBox::Paste()
999 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid combobox") );
1001 GtkEntry
*entry
= NULL
;
1003 if (!gtk_check_version(2,4,0))
1004 entry
= GTK_ENTRY( GTK_BIN(m_widget
)->child
);
1007 entry
= GTK_ENTRY( GTK_COMBO(m_widget
)->entry
);
1009 gtk_editable_paste_clipboard(GTK_EDITABLE(entry
));
1012 void wxComboBox::Undo()
1017 void wxComboBox::Redo()
1022 void wxComboBox::SelectAll()
1024 SetSelection(0, GetLastPosition());
1027 bool wxComboBox::CanUndo() const
1033 bool wxComboBox::CanRedo() const
1039 bool wxComboBox::HasSelection() const
1042 GetSelection(&from
, &to
);
1046 bool wxComboBox::CanCopy() const
1048 // Can copy if there's a selection
1049 return HasSelection();
1052 bool wxComboBox::CanCut() const
1054 return CanCopy() && IsEditable();
1057 bool wxComboBox::CanPaste() const
1059 // TODO: check for text on the clipboard
1060 return IsEditable() ;
1063 bool wxComboBox::IsEditable() const
1065 return !HasFlag(wxCB_READONLY
);
1069 void wxComboBox::SetInsertionPoint( long pos
)
1071 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid combobox") );
1073 if ( pos
== GetLastPosition() )
1076 GtkEntry
*entry
= NULL
;
1078 if (!gtk_check_version(2,4,0))
1079 entry
= GTK_ENTRY( GTK_BIN(m_widget
)->child
);
1082 entry
= GTK_ENTRY( GTK_COMBO(m_widget
)->entry
);
1084 gtk_entry_set_position( entry
, (int)pos
);
1087 long wxComboBox::GetInsertionPoint() const
1089 GtkEntry
*entry
= NULL
;
1091 if (!gtk_check_version(2,4,0))
1092 entry
= GTK_ENTRY( GTK_BIN(m_widget
)->child
);
1095 entry
= GTK_ENTRY( GTK_COMBO(m_widget
)->entry
);
1097 return (long) gtk_editable_get_position(GTK_EDITABLE(entry
));
1100 wxTextPos
wxComboBox::GetLastPosition() const
1102 GtkEntry
*entry
= NULL
;
1104 if (!gtk_check_version(2,4,0))
1105 entry
= GTK_ENTRY( GTK_BIN(m_widget
)->child
);
1108 entry
= GTK_ENTRY( GTK_COMBO(m_widget
)->entry
);
1110 int pos
= entry
->text_length
;
1111 return (long) pos
-1;
1114 void wxComboBox::Replace( long from
, long to
, const wxString
& value
)
1116 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid combobox") );
1118 GtkEntry
*entry
= NULL
;
1120 if (!gtk_check_version(2,4,0))
1121 entry
= GTK_ENTRY( GTK_BIN(m_widget
)->child
);
1124 entry
= GTK_ENTRY( GTK_COMBO(m_widget
)->entry
);
1126 gtk_editable_delete_text( GTK_EDITABLE(entry
), (gint
)from
, (gint
)to
);
1127 if (value
.IsNull()) return;
1128 gint pos
= (gint
)to
;
1131 wxCharBuffer buffer
= wxConvUTF8
.cWX2MB( value
);
1132 gtk_editable_insert_text( GTK_EDITABLE(entry
), (const char*) buffer
, strlen( (const char*) buffer
), &pos
);
1134 gtk_editable_insert_text( GTK_EDITABLE(entry
), value
.c_str(), value
.length(), &pos
);
1138 void wxComboBox::SetSelection( long from
, long to
)
1140 GtkEntry
*entry
= NULL
;
1142 if (!gtk_check_version(2,4,0))
1143 entry
= GTK_ENTRY( GTK_BIN(m_widget
)->child
);
1146 entry
= GTK_ENTRY( GTK_COMBO(m_widget
)->entry
);
1148 gtk_editable_select_region( GTK_EDITABLE(entry
), (gint
)from
, (gint
)to
);
1151 void wxComboBox::GetSelection( long* from
, long* to
) const
1153 GtkEntry
*entry
= NULL
;
1155 if (!gtk_check_version(2,4,0))
1156 entry
= GTK_ENTRY( GTK_BIN(m_widget
)->child
);
1159 entry
= GTK_ENTRY( GTK_COMBO(m_widget
)->entry
);
1163 GtkEditable
*editable
= GTK_EDITABLE(entry
);
1165 gtk_editable_get_selection_bounds(editable
, & start
, & end
);
1171 void wxComboBox::SetEditable( bool editable
)
1173 GtkEntry
*entry
= NULL
;
1175 if (!gtk_check_version(2,4,0))
1176 entry
= GTK_ENTRY( GTK_BIN(m_widget
)->child
);
1179 entry
= GTK_ENTRY( GTK_COMBO(m_widget
)->entry
);
1181 gtk_entry_set_editable( GTK_ENTRY(entry
), editable
);
1184 void wxComboBox::OnChar( wxKeyEvent
&event
)
1186 if ( event
.GetKeyCode() == WXK_RETURN
)
1188 // GTK automatically selects an item if its in the list
1189 wxCommandEvent
eventEnter(wxEVT_COMMAND_TEXT_ENTER
, GetId());
1190 eventEnter
.SetString( GetValue() );
1191 eventEnter
.SetInt( GetSelection() );
1192 eventEnter
.SetEventObject( this );
1194 if (!GetEventHandler()->ProcessEvent( eventEnter
))
1196 // This will invoke the dialog default action, such
1197 // as the clicking the default button.
1199 wxWindow
*top_frame
= m_parent
;
1200 while (top_frame
->GetParent() && !(top_frame
->IsTopLevel()))
1201 top_frame
= top_frame
->GetParent();
1203 if (top_frame
&& GTK_IS_WINDOW(top_frame
->m_widget
))
1205 GtkWindow
*window
= GTK_WINDOW(top_frame
->m_widget
);
1207 if (window
->default_widget
)
1208 gtk_widget_activate (window
->default_widget
);
1212 // Catch GTK event so that GTK doesn't open the drop
1213 // down list upon RETURN.
1220 void wxComboBox::DisableEvents()
1223 if (!gtk_check_version(2,4,0))
1225 g_signal_handlers_disconnect_by_func (GTK_BIN(m_widget
)->child
,
1226 (gpointer
)gtkcombobox_text_changed_callback
, this);
1228 g_signal_handlers_disconnect_by_func (m_widget
,
1229 (gpointer
)gtkcombobox_changed_callback
, this);
1234 g_signal_handlers_disconnect_by_func (GTK_COMBO(m_widget
)->list
,
1235 (gpointer
) gtkcombo_combo_select_child_callback
, this);
1237 g_signal_handlers_disconnect_by_func (GTK_COMBO(m_widget
)->entry
,
1238 (gpointer
) gtkcombo_text_changed_callback
, this);
1242 void wxComboBox::EnableEvents()
1245 if (!gtk_check_version(2,4,0))
1247 g_signal_connect_after (GTK_BIN(m_widget
)->child
, "changed",
1248 G_CALLBACK (gtkcombobox_text_changed_callback
), this);
1250 g_signal_connect_after (m_widget
, "changed",
1251 G_CALLBACK (gtkcombobox_changed_callback
), this);
1256 g_signal_connect_after (GTK_COMBO(m_widget
)->list
, "select-child",
1257 G_CALLBACK (gtkcombo_combo_select_child_callback
),
1259 g_signal_connect_after (GTK_COMBO(m_widget
)->entry
, "changed",
1260 G_CALLBACK (gtkcombo_text_changed_callback
),
1265 void wxComboBox::OnSize( wxSizeEvent
&event
)
1268 if (!gtk_check_version(2,4,0))
1275 // NB: In some situations (e.g. on non-first page of a wizard, if the
1276 // size used is default size), GtkCombo widget is resized correctly,
1277 // but it's look is not updated, it's rendered as if it was much wider.
1278 // No other widgets are affected, so it looks like a bug in GTK+.
1279 // Manually requesting resize calculation (as gtk_pizza_set_size does)
1281 if (GTK_WIDGET_VISIBLE(m_widget
))
1282 gtk_widget_queue_resize(m_widget
);
1288 void wxComboBox::DoApplyWidgetStyle(GtkRcStyle
*style
)
1291 if (!gtk_check_version(2,4,0))
1298 // gtk_widget_modify_style( GTK_COMBO(m_widget)->button, syle );
1300 gtk_widget_modify_style( GTK_COMBO(m_widget
)->entry
, style
);
1301 gtk_widget_modify_style( GTK_COMBO(m_widget
)->list
, style
);
1303 GtkList
*list
= GTK_LIST( GTK_COMBO(m_widget
)->list
);
1304 GList
*child
= list
->children
;
1307 gtk_widget_modify_style( GTK_WIDGET(child
->data
), style
);
1309 GtkBin
*bin
= GTK_BIN(child
->data
);
1310 gtk_widget_modify_style( bin
->child
, style
);
1312 child
= child
->next
;
1317 GtkWidget
* wxComboBox::GetConnectWidget()
1319 GtkEntry
*entry
= NULL
;
1321 if (!gtk_check_version(2,4,0))
1322 entry
= GTK_ENTRY( GTK_BIN(m_widget
)->child
);
1325 entry
= GTK_ENTRY( GTK_COMBO(m_widget
)->entry
);
1327 return GTK_WIDGET( entry
);
1330 bool wxComboBox::IsOwnGtkWindow( GdkWindow
*window
)
1332 GtkEntry
*entry
= NULL
;
1334 if (!gtk_check_version(2,4,0))
1336 entry
= GTK_ENTRY( GTK_BIN(m_widget
)->child
);
1337 return (window
== entry
->text_area
);
1342 entry
= GTK_ENTRY( GTK_COMBO(m_widget
)->entry
);
1343 return ( (window
== entry
->text_area
) ||
1344 (window
== GTK_COMBO(m_widget
)->button
->window
) );
1348 wxSize
wxComboBox::DoGetBestSize() const
1350 wxSize
ret( wxControl::DoGetBestSize() );
1352 // we know better our horizontal extent: it depends on the longest string
1357 unsigned int count
= GetCount();
1358 for ( unsigned int n
= 0; n
< count
; n
++ )
1360 GetTextExtent(GetString(n
), &width
, NULL
, NULL
, NULL
);
1361 if ( width
> ret
.x
)
1366 // empty combobox should have some reasonable default size too
1376 wxComboBox::GetClassDefaultAttributes(wxWindowVariant
WXUNUSED(variant
))
1379 if (!gtk_check_version(2,4,0))
1380 return GetDefaultAttributesFromGTKWidget(gtk_combo_box_entry_new
, true);
1383 return GetDefaultAttributesFromGTKWidget(gtk_combo_new
, true);
1386 // ----------------------------------------------------------------------------
1387 // standard event handling
1388 // ----------------------------------------------------------------------------
1390 void wxComboBox::OnCut(wxCommandEvent
& WXUNUSED(event
))
1395 void wxComboBox::OnCopy(wxCommandEvent
& WXUNUSED(event
))
1400 void wxComboBox::OnPaste(wxCommandEvent
& WXUNUSED(event
))
1405 void wxComboBox::OnUndo(wxCommandEvent
& WXUNUSED(event
))
1410 void wxComboBox::OnRedo(wxCommandEvent
& WXUNUSED(event
))
1415 void wxComboBox::OnDelete(wxCommandEvent
& WXUNUSED(event
))
1418 GetSelection(& from
, & to
);
1419 if (from
!= -1 && to
!= -1)
1423 void wxComboBox::OnSelectAll(wxCommandEvent
& WXUNUSED(event
))
1425 SetSelection(-1, -1);
1428 void wxComboBox::OnUpdateCut(wxUpdateUIEvent
& event
)
1430 event
.Enable( CanCut() );
1433 void wxComboBox::OnUpdateCopy(wxUpdateUIEvent
& event
)
1435 event
.Enable( CanCopy() );
1438 void wxComboBox::OnUpdatePaste(wxUpdateUIEvent
& event
)
1440 event
.Enable( CanPaste() );
1443 void wxComboBox::OnUpdateUndo(wxUpdateUIEvent
& event
)
1445 event
.Enable( CanUndo() );
1448 void wxComboBox::OnUpdateRedo(wxUpdateUIEvent
& event
)
1450 event
.Enable( CanRedo() );
1453 void wxComboBox::OnUpdateDelete(wxUpdateUIEvent
& event
)
1455 event
.Enable(HasSelection() && IsEditable()) ;
1458 void wxComboBox::OnUpdateSelectAll(wxUpdateUIEvent
& event
)
1460 event
.Enable(GetLastPosition() > 0);