1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxTextValidator class
4 // Author: Julian Smart
8 // Copyright: (c) 1998 Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_VALTEXTH__
13 #define _WX_VALTEXTH__
15 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
16 #pragma interface "valtext.h"
21 #if wxUSE_VALIDATORS && wxUSE_TEXTCTRL
23 #include "wx/textctrl.h"
24 #include "wx/validate.h"
26 #define wxFILTER_NONE 0x0000
27 #define wxFILTER_ASCII 0x0001
28 #define wxFILTER_ALPHA 0x0002
29 #define wxFILTER_ALPHANUMERIC 0x0004
30 #define wxFILTER_NUMERIC 0x0008
31 #define wxFILTER_INCLUDE_LIST 0x0010
32 #define wxFILTER_EXCLUDE_LIST 0x0020
33 #define wxFILTER_INCLUDE_CHAR_LIST 0x0040
34 #define wxFILTER_EXCLUDE_CHAR_LIST 0x0080
36 class WXDLLEXPORT wxTextValidator
: public wxValidator
38 DECLARE_DYNAMIC_CLASS(wxTextValidator
)
41 wxTextValidator(long style
= wxFILTER_NONE
, wxString
*val
= 0);
42 wxTextValidator(const wxTextValidator
& val
);
46 // Make a clone of this validator (or return NULL) - currently necessary
47 // if you're passing a reference to a validator.
48 // Another possibility is to always pass a pointer to a new validator
49 // (so the calling code can use a copy constructor of the relevant class).
50 virtual wxObject
*Clone() const { return new wxTextValidator(*this); }
51 bool Copy(const wxTextValidator
& val
);
53 // Called when the value in the window must be validated.
54 // This function can pop up an error message.
55 virtual bool Validate(wxWindow
*parent
);
57 // Called to transfer data to the window
58 virtual bool TransferToWindow();
60 // Called to transfer data to the window
61 virtual bool TransferFromWindow();
64 inline long GetStyle() const { return m_validatorStyle
; }
65 inline void SetStyle(long style
) { m_validatorStyle
= style
; }
67 #if WXWIN_COMPATIBILITY_2_4
68 wxDEPRECATED( void SetIncludeList(const wxStringList
& list
) );
69 wxDEPRECATED( wxStringList
& GetIncludeList() );
71 wxDEPRECATED( void SetExcludeList(const wxStringList
& list
) );
72 wxDEPRECATED( wxStringList
& GetExcludeList() );
74 wxDEPRECATED( bool IsInCharIncludeList(const wxString
& val
) );
75 wxDEPRECATED( bool IsNotInCharExcludeList(const wxString
& val
) );
78 void SetIncludes(const wxArrayString
& includes
) { m_includes
= includes
; }
79 inline wxArrayString
& GetIncludes() { return m_includes
; }
81 void SetExcludes(const wxArrayString
& excludes
) { m_excludes
= excludes
; }
82 inline wxArrayString
& GetExcludes() { return m_excludes
; }
84 bool IsInCharIncludes(const wxString
& val
);
85 bool IsNotInCharExcludes(const wxString
& val
);
88 void OnChar(wxKeyEvent
& event
);
94 long m_validatorStyle
;
95 wxString
* m_stringValue
;
96 #if WXWIN_COMPATIBILITY_2_4
97 wxStringList m_includeList
;
98 wxStringList m_excludeList
;
100 wxArrayString m_includes
;
101 wxArrayString m_excludes
;
103 bool CheckValidator() const
105 wxCHECK_MSG( m_validatorWindow
, false,
106 _T("No window associated with validator") );
107 wxCHECK_MSG( m_validatorWindow
->IsKindOf(CLASSINFO(wxTextCtrl
)), false,
108 _T("wxTextValidator is only for wxTextCtrl's") );
109 wxCHECK_MSG( m_stringValue
, false,
110 _T("No variable storage for validator") );
117 // DECLARE_NO_COPY_CLASS(wxTextValidator)
118 // because copy constructor is explicitly declared above;
119 // but no copy assignment operator is defined, so declare
120 // it private to prevent the compiler from defining it:
121 wxTextValidator
& operator=(const wxTextValidator
&);
125 // wxUSE_VALIDATORS && wxUSE_TEXTCTRL