// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
#pragma implementation "textctrl.h"
#endif
#include "wx/textctrl.h"
+
#include "wx/utils.h"
#include "wx/intl.h"
#include "wx/log.h"
EVT_ERASE_BACKGROUND(wxTextCtrl::OnEraseBackground)
EVT_CHAR(wxTextCtrl::OnChar)
EVT_MOUSE_EVENTS(wxTextCtrl::OnMouse)
- EVT_IDLE(wxTextCtrl::OnIdle)
EVT_KILL_FOCUS(wxTextCtrl::OnKillFocus)
EVT_SET_FOCUS(wxTextCtrl::OnSetFocus)
m_editable = TRUE;
m_modified = FALSE;
- m_undos.DeleteContents( TRUE );
-
m_lang = wxSOURCE_LANG_NONE;
m_capturing = FALSE;
Create( parent, id, value, pos, size, style, validator, name );
}
+wxTextCtrl::~wxTextCtrl()
+{
+ WX_CLEAR_LIST(wxList, m_undos);
+}
+
bool wxTextCtrl::Create( wxWindow *parent,
wxWindowID id,
const wxString &value,
style |= wxALWAYS_SHOW_SB;
wxTextCtrlBase::Create( parent, id, pos /* wxDefaultPosition */, size,
- style|wxVSCROLL|wxHSCROLL|wxNO_FULL_REPAINT_ON_RESIZE );
+ style | wxVSCROLL | wxHSCROLL);
SetBackgroundColour( *wxWHITE );
SetScrollbars( m_charWidth, m_lineHeight, 0, 0, 0, 0 );
Refresh();
- m_undos.Clear();
+ WX_CLEAR_LIST(wxList, m_undos);
}
void wxTextCtrl::Replace(long from, long to, const wxString& value)
{
if (m_undos.GetCount() == 0) return;
- wxNode *node = m_undos.Nth( m_undos.GetCount()-1 );
- wxSourceUndoStep *undo = (wxSourceUndoStep*) node->Data();
+ wxList::compatibility_iterator node = m_undos.Item( m_undos.GetCount()-1 );
+ wxSourceUndoStep *undo = (wxSourceUndoStep*) node->GetData();
undo->Undo();
-
- delete node;
+
+ delete undo;
+ m_undos.Erase( node );
m_modified = TRUE;
}
}
default:
{
- if ( (event.KeyCode() >= 'a') &&
- (event.KeyCode() <= 'z') &&
+ if ( (event.GetKeyCode() >= 'a') &&
+ (event.GetKeyCode() <= 'z') &&
(event.AltDown()) )
{
// Alt-F etc.
return;
}
- if ( (event.KeyCode() >= 32) &&
- (event.KeyCode() <= 255) &&
+ if ( (event.GetKeyCode() >= 32) &&
+ (event.GetKeyCode() <= 255) &&
!(event.ControlDown() && !event.AltDown()) ) // filters out Ctrl-X but leaves Alt-Gr
{
if (HasSelection())
Delete();
- DoChar( (char) event.KeyCode() );
+ DoChar( (char) event.GetKeyCode() );
return;
}
}
event.Skip();
}
-void wxTextCtrl::OnIdle( wxIdleEvent &event )
+void wxTextCtrl::OnInternalIdle()
{
+ wxControl::OnInternalIdle();
+
m_ignoreInput = FALSE;
if (m_lang != wxSOURCE_LANG_NONE)
SearchForBrackets();
-
- event.Skip( TRUE );
}
void wxTextCtrl::Indent()