if ( win->MarkDirtyOnChange() )
win->MarkDirty();
- wxCommandEvent event( wxEVT_COMMAND_TEXT_UPDATED, win->GetId() );
- event.SetEventObject( win );
- win->GetEventHandler()->ProcessEvent( event );
+ win->SendTextUpdatedEvent();
}
}
void wxTextCtrl::Init()
{
m_dontMarkDirty =
- m_ignoreNextUpdate =
m_modified = false;
+ m_countUpdatesToIgnore = 0;
+
SetUpdateFont(false);
m_text = NULL;
return enc;
}
-void wxTextCtrl::SetValue( const wxString &value )
+bool wxTextCtrl::IsEmpty() const
+{
+ if ( IsMultiLine() )
+ return gtk_text_buffer_get_char_count(m_buffer) != 0;
+
+ return wxTextCtrlBase::IsEmpty();
+}
+
+void wxTextCtrl::DoSetValue( const wxString &value, int flags )
{
wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
m_modified = false;
DontMarkDirtyOnNextChange();
- if ( IsMultiLine() )
+ const wxCharBuffer buffer(wxGTK_CONV_ENC(value, GetTextEncoding()));
+ if ( !buffer )
{
- const wxCharBuffer buffer(wxGTK_CONV_ENC(value, GetTextEncoding()));
- if ( !buffer )
- {
- // see comment in WriteText() as to why we must warn the user about
- // this
- wxLogWarning(_("Failed to set text in the text control."));
- return;
- }
+ // see comment in WriteText() as to why we must warn the user about
+ // this
+ wxLogWarning(_("Failed to set text in the text control."));
+ return;
+ }
- if (gtk_text_buffer_get_char_count(m_buffer) != 0)
- IgnoreNextTextUpdate();
+ // if the control is not empty, two "changed" signals are emitted,
+ // otherwise only one and we need to ignore either both or one of them
+ int ignore = flags & SetValue_SendEvent ? 0 : 1;
+ if ( !IsEmpty() )
+ ignore++;
+ if ( ignore )
+ IgnoreNextTextUpdate(ignore);
+
+ if ( IsMultiLine() )
+ {
gtk_text_buffer_set_text( m_buffer, buffer, strlen(buffer) );
}
else // single line
{
- // gtk_entry_set_text() emits two "changed" signals if the control is
- // not empty because internally it calls gtk_editable_delete_text() and
- // gtk_editable_insert_text() but we want to have only one event
- if ( !GetValue().empty() )
- IgnoreNextTextUpdate();
-
- gtk_entry_set_text( GTK_ENTRY(m_text), wxGTK_CONV(value) );
+ gtk_entry_set_text( GTK_ENTRY(m_text), buffer );
}
// GRG, Jun/2000: Changed this after a lot of discussion in
bool wxTextCtrl::IgnoreTextUpdate()
{
- if ( m_ignoreNextUpdate )
+ if ( m_countUpdatesToIgnore > 0 )
{
- m_ignoreNextUpdate = false;
+ m_countUpdatesToIgnore--;
return true;
}