SetSelection(from, to) and SetEditable() implemented

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1758 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 1999-02-23 18:13:52 +00:00
parent 8a0d4cf6c5
commit 20d10ee18b
2 changed files with 12 additions and 8 deletions

View File

@ -503,14 +503,16 @@ void wxComboBox::Remove(long from, long to)
gtk_editable_delete_text( GTK_EDITABLE(entry), (gint)from, (gint)to );
}
void wxComboBox::SetSelection( long WXUNUSED(from), long WXUNUSED(to) )
void wxComboBox::SetSelection( long from, long to )
{
wxFAIL_MSG( "wxComboBox::SetSelection not implemented" );
GtkWidget *entry = GTK_COMBO(m_widget)->entry;
gtk_editable_select_region( GTK_EDITABLE(entry), (gint)from, (gint)to );
}
void wxComboBox::SetEditable( bool WXUNUSED(editable) )
void wxComboBox::SetEditable( bool editable )
{
wxFAIL_MSG( "wxComboBox::SetEditable not implemented" );
GtkWidget *entry = GTK_COMBO(m_widget)->entry;
gtk_entry_set_editable( GTK_ENTRY(entry), editable );
}
void wxComboBox::OnSize( wxSizeEvent &event )

View File

@ -503,14 +503,16 @@ void wxComboBox::Remove(long from, long to)
gtk_editable_delete_text( GTK_EDITABLE(entry), (gint)from, (gint)to );
}
void wxComboBox::SetSelection( long WXUNUSED(from), long WXUNUSED(to) )
void wxComboBox::SetSelection( long from, long to )
{
wxFAIL_MSG( "wxComboBox::SetSelection not implemented" );
GtkWidget *entry = GTK_COMBO(m_widget)->entry;
gtk_editable_select_region( GTK_EDITABLE(entry), (gint)from, (gint)to );
}
void wxComboBox::SetEditable( bool WXUNUSED(editable) )
void wxComboBox::SetEditable( bool editable )
{
wxFAIL_MSG( "wxComboBox::SetEditable not implemented" );
GtkWidget *entry = GTK_COMBO(m_widget)->entry;
gtk_entry_set_editable( GTK_ENTRY(entry), editable );
}
void wxComboBox::OnSize( wxSizeEvent &event )