- wxString value = GetValue();
- int selection = GetSelection();
-
- // note that gtk automatically selects an item if its in the list
- // so you don't have to call FindString
- if ((selection >= 0) && (GetString(selection) == value))
- {
- // make Enter generate "selected" event if it equals an item
- wxCommandEvent event( wxEVT_COMMAND_COMBOBOX_SELECTED, GetId() );
- event.SetInt( selection );
- event.SetString( value );
- event.SetEventObject( this );
- GetEventHandler()->ProcessEvent( event );
- }
- else
- {
- wxCommandEvent event(wxEVT_COMMAND_TEXT_ENTER, GetId());
- event.SetString(value);
- event.SetInt(selection);
- event.SetEventObject( this );
- GetEventHandler()->ProcessEvent( event );
- }
+ // GTK automatically selects an item if its in the list
+ wxCommandEvent event(wxEVT_COMMAND_TEXT_ENTER, GetId());
+ event.SetString( GetValue() );
+ event.SetInt( GetSelection() );
+ event.SetEventObject( this );
+ GetEventHandler()->ProcessEvent( event );
+
+ // Catch GTK event so that GTK doesn't open the drop
+ // down list upon RETURN.