compilation fixes for wxGTK1 after wxTextEntry changes (unit test still fails, Replace() generates 2 events instead of 1...)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@48950 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -94,6 +94,7 @@ public:
|
||||
|
||||
wxString GetValue() const;
|
||||
void SetValue(const wxString& value);
|
||||
void WriteText(const wxString& value);
|
||||
|
||||
void Copy();
|
||||
void Cut();
|
||||
|
@@ -618,13 +618,24 @@ void wxComboBox::SetValue( const wxString& value )
|
||||
wxCHECK_RET( m_widget != NULL, wxT("invalid combobox") );
|
||||
|
||||
GtkWidget *entry = GTK_COMBO(m_widget)->entry;
|
||||
wxString tmp;
|
||||
if (!value.IsNull()) tmp = value;
|
||||
gtk_entry_set_text( GTK_ENTRY(entry), wxGTK_CONV( tmp ) );
|
||||
gtk_entry_set_text( GTK_ENTRY(entry), wxGTK_CONV( value ) );
|
||||
|
||||
InvalidateBestSize();
|
||||
}
|
||||
|
||||
void wxComboBox::WriteText(const wxString& value)
|
||||
{
|
||||
wxCHECK_RET( m_widget != NULL, wxT("invalid combobox") );
|
||||
|
||||
GtkWidget *entry = GTK_COMBO(m_widget)->entry;
|
||||
GtkEditable * const edit = GTK_EDITABLE(entry);
|
||||
|
||||
gtk_editable_delete_selection(edit);
|
||||
gint len = gtk_editable_get_position(edit);
|
||||
gtk_editable_insert_text(edit, wxGTK_CONV(value), -1, &len);
|
||||
gtk_editable_set_position(edit, len);
|
||||
}
|
||||
|
||||
void wxComboBox::Copy()
|
||||
{
|
||||
wxCHECK_RET( m_widget != NULL, wxT("invalid combobox") );
|
||||
|
Reference in New Issue
Block a user