#endif
#include "wx/scrolwin.h"
-#include "wx/dynarray.h"
+#include "wx/arrstr.h"
#include "wx/datetime.h"
//-----------------------------------------------------------------------------
long style = 0,
const wxValidator& validator = wxDefaultValidator,
const wxString &name = wxTextCtrlNameStr);
+ virtual ~wxTextCtrl();
bool Create(wxWindow *parent,
wxWindowID id,
// more readable flag testing methods
// ----------------------------------
+#if 0
+ // it seems now in wxTextCtrlBase
bool IsSingleLine() const { return !(GetWindowStyle() & wxTE_MULTILINE); }
+#endif
bool IsPassword() const { return (GetWindowStyle() & wxTE_PASSWORD) != 0; }
- bool WrapLines() const { return FALSE; }
+ bool WrapLines() const { return false; }
// If the return values from and to are the same, there is no selection.
virtual void GetSelection(long* from, long* to) const;