X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e072113323f06e5c71f8d02789c17df541751eaf..9b95e87cb00a02e8373d25f525910d689c176ce4:/src/gtk/textentry.cpp diff --git a/src/gtk/textentry.cpp b/src/gtk/textentry.cpp index a84c0e691e..1e0bd52389 100644 --- a/src/gtk/textentry.cpp +++ b/src/gtk/textentry.cpp @@ -52,7 +52,7 @@ wx_gtk_insert_text_callback(GtkEditable *editable, // we should only be called if we have a max len limit at all GtkEntry *entry = GTK_ENTRY (editable); - wxCHECK_RET( entry->text_max_length, _T("shouldn't be called") ); + wxCHECK_RET( entry->text_max_length, wxT("shouldn't be called") ); // check that we don't overflow the max length limit // @@ -103,11 +103,12 @@ void wxTextEntry::WriteText(const wxString& value) gtk_editable_set_position(edit, len); } -wxString wxTextEntry::GetValue() const +wxString wxTextEntry::DoGetValue() const { const wxGtkString value(gtk_editable_get_chars(GetEditable(), 0, -1)); - return wxGTK_CONV_BACK_FONT(value, GetEditableWindow()->GetFont()); + return wxGTK_CONV_BACK_FONT(value, + const_cast(this)->GetEditableWindow()->GetFont()); } void wxTextEntry::Remove(long from, long to) @@ -193,7 +194,10 @@ void wxTextEntry::SetSelection(long from, long to) if ( from == -1 && to == -1 ) from = 0; - gtk_editable_select_region(GetEditable(), from, to); + // for compatibility with MSW, exchange from and to parameters so that the + // insertion point is set to the start of the selection and not its end as + // GTK+ does by default + gtk_editable_select_region(GetEditable(), to, from); } void wxTextEntry::GetSelection(long *from, long *to) const @@ -315,7 +319,7 @@ void wxTextEntry::SendMaxLenEvent() // generating a dummy wxEVT_COMMAND_TEXT_UPDATED event //IgnoreNextTextUpdate(); - wxWindow * const win = const_cast(GetEditableWindow()); + wxWindow * const win = GetEditableWindow(); wxCommandEvent event(wxEVT_COMMAND_TEXT_MAXLEN, win->GetId()); event.SetEventObject(win); event.SetString(GetValue());