-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmy_validators.h
91 lines (68 loc) · 2.33 KB
/
my_validators.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
/////////////////////////////////////////////////////////////////////////////
// Name: my_validators.h
// Purpose: My wxWidgets app
// Author: Imie Nazwisko <[email protected]>
// Created: 2018-01-01
// Copyright: (c) 2018 by Imie Nazwisko
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
#ifndef _MY_VALIDATORS_H_
#define _MY_VALIDATORS_H_
#include <wx/valtext.h>
#include <wx/regex.h>
#include <wx/textctrl.h>
// ----------------------------------------------------------------------------
// MyRegExValidator
// ----------------------------------------------------------------------------
class MyRegExValidator : public wxTextValidator
{
public:
MyRegExValidator(wxString format, wxString* ptr = NULL) : reg_ex_format(format), reg_ex(format, wxRE_EXTENDED | wxRE_ADVANCED)
{
m_stringValue = ptr;
}
MyRegExValidator(const MyRegExValidator& val): reg_ex(val.reg_ex_format)
{
wxValidator::Copy(val);
m_stringValue = val.m_stringValue;
}
virtual ~MyRegExValidator() {}
virtual wxObject* Clone() const wxOVERRIDE { return new MyRegExValidator(*this); }
virtual bool TransferToWindow() wxOVERRIDE;
virtual bool TransferFromWindow() wxOVERRIDE;
void OnChar(wxKeyEvent& event);
private:
bool IsValid(int key);
wxRegEx reg_ex;
wxString reg_ex_format;
DECLARE_EVENT_TABLE()
};
// ----------------------------------------------------------------------------
// MyCustomValidator
// ----------------------------------------------------------------------------
class MyCustomValidator : public wxTextValidator
{
public:
MyCustomValidator(bool(*cfn)(const wxString& str), bool(*ffn)(const wxString& str) = NULL, wxString* ptr = NULL): check_fn(cfn), filter_fn(ffn)
{
m_stringValue = ptr;
}
MyCustomValidator(const MyCustomValidator& val)
{
wxValidator::Copy(val);
m_stringValue = val.m_stringValue;
check_fn = val.check_fn;
filter_fn = val.filter_fn;
}
virtual ~MyCustomValidator() {}
virtual wxObject* Clone() const wxOVERRIDE { return new MyCustomValidator(*this); }
virtual bool TransferToWindow() wxOVERRIDE;
virtual bool TransferFromWindow() wxOVERRIDE;
void OnChar(wxKeyEvent& event);
private:
bool IsValid(int key);
bool(*check_fn)(const wxString& str);
bool(*filter_fn)(const wxString& str);
DECLARE_EVENT_TABLE()
};
#endif