///////////////////////////////////////////////////////////////////////////////
-// Name: common/textcmn.cpp
+// Name: src/common/textcmn.cpp
// Purpose: implementation of platform-independent functions of wxTextCtrl
// Author: Julian Smart
// Modified by:
#pragma hdrstop
#endif
+#ifndef WX_PRECOMP
+ #include "wx/event.h"
+#endif // WX_PRECOMP
+
#if wxUSE_TEXTCTRL
+#include "wx/textctrl.h"
+
#ifndef WX_PRECOMP
#include "wx/intl.h"
#include "wx/log.h"
- #include "wx/textctrl.h"
#endif // WX_PRECOMP
#include "wx/ffile.h"
DEFINE_EVENT_TYPE(wxEVT_COMMAND_TEXT_URL)
DEFINE_EVENT_TYPE(wxEVT_COMMAND_TEXT_MAXLEN)
+IMPLEMENT_ABSTRACT_CLASS(wxTextCtrlBase, wxControl)
+
// ----------------------------------------------------------------------------
// style functions - not implemented here
// ----------------------------------------------------------------------------
// define this one even if !wxUSE_TEXTCTRL because it is also used by other
// controls (wxComboBox and wxSpinCtrl)
-#include "wx/event.h"
DEFINE_EVENT_TYPE(wxEVT_COMMAND_TEXT_UPDATED)