+bool wxComboBox::Create( wxWindow *parent, wxWindowID id, const wxString& value,
+ const wxPoint& pos, const wxSize& size,
+ int n, const wxString choices[],
+ long style, const wxValidator& validator,
+ const wxString& name )
+{
+ m_strings = NULL;
+ m_ignoreNextUpdate = false;
+ m_prevSelection = 0;
+
+ if (!PreCreation( parent, pos, size ) ||
+ !CreateBase( parent, id, pos, size, style, validator, name ))
+ {
+ wxFAIL_MSG( wxT("wxComboBox creation failed") );
+ return false;
+ }
+
+ if (HasFlag(wxCB_SORT))
+ m_strings = new wxSortedArrayString();
+
+ m_widget = gtk_combo_box_entry_new_text();
+
+ if (HasFlag(wxBORDER_NONE))
+ {
+ // Doesn't seem to work
+ // g_object_set (m_widget, "has-frame", FALSE, NULL);
+ }
+
+ GtkEntry * const entry = GetEntry();
+
+ gtk_entry_set_editable( entry, TRUE );
+
+ Append(n, choices);
+
+ m_parent->DoAddChild( this );
+
+ m_focusWidget = GTK_WIDGET( entry );
+
+ PostCreation(size);
+
+ ConnectWidget( m_widget );
+
+ gtk_entry_set_text( entry, wxGTK_CONV(value) );
+
+ if (style & wxCB_READONLY)
+ gtk_entry_set_editable( entry, FALSE );
+
+ g_signal_connect_after (entry, "changed",
+ G_CALLBACK (gtkcombobox_text_changed_callback), this);
+
+ g_signal_connect_after (m_widget, "changed",
+ G_CALLBACK (gtkcombobox_changed_callback), this);
+
+
+ SetInitialSize(size); // need this too because this is a wxControlWithItems
+
+ return true;
+}
+
+GtkEntry *wxComboBox::GetEntry() const
+{
+ return GTK_ENTRY(GTK_BIN(m_widget)->child);
+}
+
+GtkEditable *wxComboBox::GetEditable() const
+{
+ return GTK_EDITABLE( GTK_BIN(m_widget)->child );
+}
+
+wxComboBox::~wxComboBox()
+{
+ Clear();
+
+ delete m_strings;
+}
+
+void wxComboBox::SetFocus()
+{
+ if ( m_hasFocus )
+ {
+ // don't do anything if we already have focus
+ return;
+ }
+
+ gtk_widget_grab_focus( m_focusWidget );
+}
+
+int wxComboBox::DoInsertItems(const wxArrayStringsAdapter & items,
+ unsigned int pos,
+ void **clientData, wxClientDataType type)
+{
+ wxCHECK_MSG( m_widget != NULL, -1, wxT("invalid combobox") );
+
+ wxASSERT_MSG( !IsSorted() || (pos == GetCount()),
+ _T("In a sorted combobox data could only be appended"));
+
+ const int count = items.GetCount();
+
+ int n = wxNOT_FOUND;
+
+ GtkComboBox* combobox = GTK_COMBO_BOX( m_widget );
+ for( int i = 0; i < count; ++i )
+ {
+ n = pos + i;
+ // If sorted, use this wxSortedArrayStrings to determine
+ // the right insertion point
+ if(m_strings)
+ n = m_strings->Add(items[i]);
+
+ gtk_combo_box_insert_text( combobox, n, wxGTK_CONV( items[i] ) );
+
+ m_clientData.Insert( NULL, n );
+ AssignNewItemClientData(n, clientData, i, type);
+ }
+
+ InvalidateBestSize();
+
+ return n;
+}
+
+void wxComboBox::DoSetItemClientData(unsigned int n, void* clientData)
+{
+ m_clientData[n] = clientData;
+}
+
+void* wxComboBox::DoGetItemClientData(unsigned int n) const
+{
+ return m_clientData[n];
+}
+
+void wxComboBox::DoClear()
+{
+ wxCHECK_RET( m_widget != NULL, wxT("invalid combobox") );
+
+ DisableEvents();
+
+ GtkComboBox* combobox = GTK_COMBO_BOX( m_widget );
+ const unsigned int count = GetCount();
+ for (unsigned int i = 0; i < count; i++)
+ gtk_combo_box_remove_text( combobox, 0 );
+
+ m_clientData.Clear();
+
+ if(m_strings)
+ m_strings->Clear();
+
+ EnableEvents();
+
+ InvalidateBestSize();
+}
+
+void wxComboBox::DoDeleteOneItem(unsigned int n)
+{
+ wxCHECK_RET( m_widget != NULL, wxT("invalid combobox") );
+
+ wxCHECK_RET( IsValid(n), wxT("invalid index") );
+
+ GtkComboBox* combobox = GTK_COMBO_BOX( m_widget );
+ gtk_combo_box_remove_text( combobox, n );
+
+ m_clientData.RemoveAt( n );
+ if(m_strings)
+ m_strings->RemoveAt( n );