]>
Commit | Line | Data |
---|---|---|
c801d85f KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: valtext.h | |
3 | // Purpose: wxTextValidator class | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 29/01/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) 1998 Julian Smart | |
371a5b4e | 9 | // Licence: wxWindows licence |
c801d85f KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
34138703 JS |
12 | #ifndef _WX_VALTEXTH__ |
13 | #define _WX_VALTEXTH__ | |
c801d85f | 14 | |
12028905 | 15 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
c801d85f KB |
16 | #pragma interface "valtext.h" |
17 | #endif | |
18 | ||
ce4169a4 RR |
19 | #include "wx/defs.h" |
20 | ||
d7260478 | 21 | #if wxUSE_VALIDATORS && wxUSE_TEXTCTRL |
88ac883a | 22 | |
0078f87f | 23 | #include "wx/textctrl.h" |
c801d85f KB |
24 | #include "wx/validate.h" |
25 | ||
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 | |
aaae8296 JS |
33 | #define wxFILTER_INCLUDE_CHAR_LIST 0x0040 |
34 | #define wxFILTER_EXCLUDE_CHAR_LIST 0x0080 | |
c801d85f KB |
35 | |
36 | class WXDLLEXPORT wxTextValidator: public wxValidator | |
37 | { | |
38 | DECLARE_DYNAMIC_CLASS(wxTextValidator) | |
39 | public: | |
c801d85f | 40 | |
33c5b54b RL |
41 | wxTextValidator(long style = wxFILTER_NONE, wxString *val = 0); |
42 | wxTextValidator(const wxTextValidator& val); | |
c801d85f | 43 | |
33c5b54b | 44 | ~wxTextValidator(); |
c801d85f | 45 | |
33c5b54b RL |
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); | |
c801d85f | 52 | |
33c5b54b RL |
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); | |
c801d85f | 56 | |
33c5b54b RL |
57 | // Called to transfer data to the window |
58 | virtual bool TransferToWindow(); | |
c801d85f | 59 | |
33c5b54b RL |
60 | // Called to transfer data to the window |
61 | virtual bool TransferFromWindow(); | |
c801d85f | 62 | |
33c5b54b RL |
63 | // ACCESSORS |
64 | inline long GetStyle() const { return m_validatorStyle; } | |
65 | inline void SetStyle(long style) { m_validatorStyle = style; } | |
c801d85f | 66 | |
33c5b54b RL |
67 | void SetIncludeList(const wxStringList& list); |
68 | inline wxStringList& GetIncludeList() { return m_includeList; } | |
c801d85f | 69 | |
33c5b54b RL |
70 | void SetExcludeList(const wxStringList& list); |
71 | inline wxStringList& GetExcludeList() { return m_excludeList; } | |
72 | ||
73 | // Filter keystrokes | |
74 | void OnChar(wxKeyEvent& event); | |
c801d85f | 75 | |
aaae8296 JS |
76 | bool IsInCharIncludeList(const wxString& val); |
77 | bool IsNotInCharExcludeList(const wxString& val); | |
78 | ||
c801d85f KB |
79 | DECLARE_EVENT_TABLE() |
80 | ||
81 | protected: | |
82 | long m_validatorStyle; | |
83 | wxString * m_stringValue; | |
84 | wxStringList m_includeList; | |
85 | wxStringList m_excludeList; | |
33c5b54b RL |
86 | |
87 | bool CheckValidator() const | |
88 | { | |
89 | wxCHECK_MSG( m_validatorWindow, FALSE, | |
90 | _T("No window associated with validator") ); | |
91 | wxCHECK_MSG( m_validatorWindow->IsKindOf(CLASSINFO(wxTextCtrl)), FALSE, | |
92 | _T("wxTextValidator is only for wxTextCtrl's") ); | |
93 | wxCHECK_MSG( m_stringValue, FALSE, | |
94 | _T("No variable storage for validator") ); | |
95 | ||
96 | return TRUE; | |
97 | } | |
22f3361e VZ |
98 | |
99 | private: | |
100 | // Cannot use | |
101 | // DECLARE_NO_COPY_CLASS(wxTextValidator) | |
102 | // because copy constructor is explicitly declared above; | |
103 | // but no copy assignment operator is defined, so declare | |
104 | // it private to prevent the compiler from defining it: | |
105 | wxTextValidator& operator=(const wxTextValidator&); | |
c801d85f KB |
106 | }; |
107 | ||
108 | #endif | |
d7260478 | 109 | // wxUSE_VALIDATORS && wxUSE_TEXTCTRL |
ce4169a4 RR |
110 | |
111 | #endif | |
112 | // _WX_VALTEXTH__ |