-void wxComboBox::SetClientObject( int n, wxClientData* clientData )
-{
- wxCHECK_RET( m_widget != NULL, _T("invalid combobox") );
-
- wxNode *node = m_clientObjectList.Nth( n );
- if (!node) return;
-
- wxClientData *cd = (wxClientData*) node->Data();
- if (cd) delete cd;
-
- node->SetData( (wxObject*) clientData );
-}
-
-wxClientData* wxComboBox::GetClientObject( int n )
-{
- wxCHECK_MSG( m_widget != NULL, (wxClientData*)NULL, _T("invalid combobox") );
-
- wxNode *node = m_clientDataList.Nth( n );
- if (!node) return (wxClientData*) NULL;
-
- return (wxClientData*) node->Data();
-}
-
-void wxComboBox::Clear()
-{
- wxCHECK_RET( m_widget != NULL, _T("invalid combobox") );
-
- GtkWidget *list = GTK_COMBO(m_widget)->list;
- gtk_list_clear_items( GTK_LIST(list), 0, Number() );
-
- wxNode *node = m_clientObjectList.First();
- while (node)
- {
- wxClientData *cd = (wxClientData*)node->Data();
- if (cd) delete cd;
- node = node->Next();
- }
- m_clientObjectList.Clear();
-
- m_clientDataList.Clear();
-}
-
-void wxComboBox::Delete( int n )
-{
- wxCHECK_RET( m_widget != NULL, _T("invalid combobox") );
-
- GtkList *listbox = GTK_LIST( GTK_COMBO(m_widget)->list );
-
- GList *child = g_list_nth( listbox->children, n );
-
- if (!child)
- {
- wxFAIL_MSG(_T("wrong index"));
- return;
- }
-
- GList *list = g_list_append( (GList*) NULL, child->data );
- gtk_list_remove_items( listbox, list );
- g_list_free( list );
-
- wxNode *node = m_clientObjectList.Nth( n );
- if (node)
- {
- wxClientData *cd = (wxClientData*)node->Data();
- if (cd) delete cd;
- m_clientObjectList.DeleteNode( node );
- }
-
- node = m_clientDataList.Nth( n );
- if (node)
- {
- m_clientDataList.DeleteNode( node );
- }
-}
-
-int wxComboBox::FindString( const wxString &item )
-{
- wxCHECK_MSG( m_widget != NULL, -1, _T("invalid combobox") );
-
- GtkWidget *list = GTK_COMBO(m_widget)->list;
-
- GList *child = GTK_LIST(list)->children;
- int count = 0;
- while (child)
- {
- GtkBin *bin = GTK_BIN( child->data );
- GtkLabel *label = GTK_LABEL( bin->child );
- if (item == wxString(label->label,*wxConvCurrent))
- return count;
- count++;
- child = child->next;
- }
-
- return wxNOT_FOUND;
-}
-
-int wxComboBox::GetSelection() const
-{
- wxCHECK_MSG( m_widget != NULL, -1, _T("invalid combobox") );
-
- GtkWidget *list = GTK_COMBO(m_widget)->list;
-
- GList *selection = GTK_LIST(list)->selection;
- if (selection)
- {
- GList *child = GTK_LIST(list)->children;
- int count = 0;
- while (child)
- {
- if (child->data == selection->data) return count;
- count++;
- child = child->next;
- }
- }
-
- return -1;
-}
-
-wxString wxComboBox::GetString( int n ) const
-{
- wxCHECK_MSG( m_widget != NULL, _T(""), _T("invalid combobox") );
-
- GtkWidget *list = GTK_COMBO(m_widget)->list;
-
- wxString str;
- GList *child = g_list_nth( GTK_LIST(list)->children, n );
- if (child)
- {
- GtkBin *bin = GTK_BIN( child->data );
- GtkLabel *label = GTK_LABEL( bin->child );
- str = wxString(label->label,*wxConvCurrent);
- }
- else
- {
- wxFAIL_MSG( _T("wxComboBox: wrong index") );
- }
-
- return str;
-}
-
-wxString wxComboBox::GetStringSelection() const